Files
cibuildwheel/test/test_testing.py
T

147 lines
4.3 KiB
Python
Raw Normal View History

2020-05-02 22:50:52 +01:00
import os
import subprocess
import textwrap
import pytest
2021-01-06 13:50:58 -05:00
from . import test_projects, utils
2020-05-02 16:54:19 +01:00
project_with_a_test = test_projects.new_c_project(
2021-04-30 17:56:34 -04:00
setup_cfg_add=textwrap.dedent(
2021-05-03 11:45:43 -04:00
r"""
[options.extras_require]
test = pytest
2021-05-03 11:45:43 -04:00
"""
2021-04-30 17:56:34 -04:00
)
)
2020-05-02 16:54:19 +01:00
2021-04-30 17:56:34 -04:00
project_with_a_test.files[
2021-05-03 11:45:43 -04:00
"test/spam_test.py"
2021-04-30 17:56:34 -04:00
] = r'''
import os
import platform
import sys
import struct
2020-05-02 16:54:19 +01:00
from unittest import TestCase
2020-05-02 16:54:19 +01:00
import spam
def path_contains(parent, child):
""" returns True if `child` is inside `parent`.
Works around path-comparison bugs caused by short-paths on Windows e.g.
vssadm~1 instead of vssadministrator
"""
parent = os.path.abspath(parent)
child = os.path.abspath(child)
while child != os.path.dirname(child):
child = os.path.dirname(child)
if os.stat(parent) == os.stat(child):
# parent and child refer to the same directory on the filesystem
return True
return False
2020-05-02 16:54:19 +01:00
class TestSpam(TestCase):
def test_system(self):
self.assertEqual(0, spam.system('python -c "exit(0)"'))
self.assertNotEqual(0, spam.system('python -c "exit(1)"'))
def test_virtualenv(self):
2020-06-14 00:37:34 +02:00
# sys.prefix is different from sys.base_prefix when running a virtualenv
# See https://docs.python.org/3/library/venv.html, which virtualenv seems
# to honor in recent releases
2021-02-14 20:44:20 +01:00
if sys.prefix == sys.base_prefix:
2020-06-14 00:37:34 +02:00
self.fail("Not running in a virtualenv")
2020-06-14 00:37:34 +02:00
self.assertTrue(path_contains(sys.prefix, sys.executable))
self.assertTrue(path_contains(sys.prefix, spam.__file__))
def test_uname(self):
if platform.system() == "Windows":
return
# if we're running in 32-bit Python, check that the machine is i686.
# See #336 for more info.
bits = struct.calcsize("P") * 8
if bits == 32:
self.assertEqual(platform.machine(), "i686")
2020-05-02 16:54:19 +01:00
'''
2020-05-03 14:08:57 +01:00
def test(tmp_path):
2021-05-03 11:45:43 -04:00
project_dir = tmp_path / "project"
2020-05-02 16:54:19 +01:00
project_with_a_test.generate(project_dir)
# build and test the wheels
2021-04-30 17:56:34 -04:00
actual_wheels = utils.cibuildwheel_run(
project_dir,
add_env={
"CIBW_TEST_REQUIRES": "pytest",
2021-04-30 17:56:34 -04:00
# the 'false ||' bit is to ensure this command runs in a shell on
# mac/linux.
"CIBW_TEST_COMMAND": "false || pytest {project}/test",
"CIBW_TEST_COMMAND_WINDOWS": "COLOR 00 || pytest {project}/test",
2021-04-30 17:56:34 -04:00
},
)
2020-05-02 16:54:19 +01:00
# also check that we got the right wheels
2021-05-03 11:45:43 -04:00
expected_wheels = utils.expected_wheels("spam", "0.1.0")
2020-05-02 16:54:19 +01:00
assert set(actual_wheels) == set(expected_wheels)
2020-05-03 14:08:57 +01:00
def test_extras_require(tmp_path):
2021-05-03 11:45:43 -04:00
project_dir = tmp_path / "project"
2020-05-02 16:54:19 +01:00
project_with_a_test.generate(project_dir)
# build and test the wheels
2021-04-30 17:56:34 -04:00
actual_wheels = utils.cibuildwheel_run(
project_dir,
add_env={
2021-05-03 11:45:43 -04:00
"CIBW_TEST_EXTRAS": "test",
2021-04-30 17:56:34 -04:00
# the 'false ||' bit is to ensure this command runs in a shell on
# mac/linux.
"CIBW_TEST_COMMAND": "false || pytest {project}/test",
"CIBW_TEST_COMMAND_WINDOWS": "COLOR 00 || pytest {project}/test",
2021-04-30 17:56:34 -04:00
},
)
2020-05-02 16:54:19 +01:00
# also check that we got the right wheels
2021-05-03 11:45:43 -04:00
expected_wheels = utils.expected_wheels("spam", "0.1.0")
2020-05-02 16:54:19 +01:00
assert set(actual_wheels) == set(expected_wheels)
project_with_a_failing_test = test_projects.new_c_project()
2021-04-30 17:56:34 -04:00
project_with_a_failing_test.files[
2021-05-03 11:45:43 -04:00
"test/spam_test.py"
] = r"""
from unittest import TestCase
class TestSpam(TestCase):
def test_something(self):
self.fail('this test is supposed to fail')
2021-05-03 11:45:43 -04:00
"""
2020-05-02 22:42:35 +01:00
def test_failing_test(tmp_path):
2020-05-02 16:54:19 +01:00
"""Ensure a failing test causes cibuildwheel to error out and exit"""
2021-05-03 11:45:43 -04:00
project_dir = tmp_path / "project"
output_dir = tmp_path / "output"
project_with_a_failing_test.generate(project_dir)
2020-05-02 16:54:19 +01:00
with pytest.raises(subprocess.CalledProcessError):
2021-04-30 17:56:34 -04:00
utils.cibuildwheel_run(
project_dir,
output_dir=output_dir,
add_env={
2021-05-03 11:45:43 -04:00
"CIBW_TEST_REQUIRES": "nose",
"CIBW_TEST_COMMAND": "nosetests {project}/test",
2021-04-30 17:56:34 -04:00
# manylinux1 has a version of bash that's been shown to have
# problems with this, so let's check that.
2021-05-03 11:45:43 -04:00
"CIBW_MANYLINUX_I686_IMAGE": "manylinux1",
"CIBW_MANYLINUX_X86_64_IMAGE": "manylinux1",
2021-04-30 17:56:34 -04:00
},
)
2020-05-02 22:42:35 +01:00
assert len(os.listdir(output_dir)) == 0