diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-03 15:11:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-03 15:11:32 -0400 |
| commit | 5f151cbbcd6c65f7f48082bfaf36db3a55df936e (patch) | |
| tree | eb721c8957ee48c5149af6742a27a449fb618027 /setuptools/_distutils/tests/test_extension.py | |
| parent | a9eb9e73def8ca6c469e59f1b008746e368ad4c1 (diff) | |
| parent | a877dab0bddaeb5503d871794ca06f1c81d805b8 (diff) | |
| download | python-setuptools-git-5f151cbbcd6c65f7f48082bfaf36db3a55df936e.tar.gz | |
Merge branch 'master' into 2020-06-11-raise-from
Diffstat (limited to 'setuptools/_distutils/tests/test_extension.py')
| -rw-r--r-- | setuptools/_distutils/tests/test_extension.py | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/setuptools/_distutils/tests/test_extension.py b/setuptools/_distutils/tests/test_extension.py new file mode 100644 index 00000000..e35f2738 --- /dev/null +++ b/setuptools/_distutils/tests/test_extension.py @@ -0,0 +1,69 @@ +"""Tests for distutils.extension.""" +import unittest +import os +import warnings + +from test.support import check_warnings, run_unittest +from distutils.extension import read_setup_file, Extension + +class ExtensionTestCase(unittest.TestCase): + + def test_read_setup_file(self): + # trying to read a Setup file + # (sample extracted from the PyGame project) + setup = os.path.join(os.path.dirname(__file__), 'Setup.sample') + + exts = read_setup_file(setup) + names = [ext.name for ext in exts] + names.sort() + + # here are the extensions read_setup_file should have created + # out of the file + wanted = ['_arraysurfarray', '_camera', '_numericsndarray', + '_numericsurfarray', 'base', 'bufferproxy', 'cdrom', + 'color', 'constants', 'display', 'draw', 'event', + 'fastevent', 'font', 'gfxdraw', 'image', 'imageext', + 'joystick', 'key', 'mask', 'mixer', 'mixer_music', + 'mouse', 'movie', 'overlay', 'pixelarray', 'pypm', + 'rect', 'rwobject', 'scrap', 'surface', 'surflock', + 'time', 'transform'] + + self.assertEqual(names, wanted) + + def test_extension_init(self): + # the first argument, which is the name, must be a string + self.assertRaises(AssertionError, Extension, 1, []) + ext = Extension('name', []) + self.assertEqual(ext.name, 'name') + + # the second argument, which is the list of files, must + # be a list of strings + self.assertRaises(AssertionError, Extension, 'name', 'file') + self.assertRaises(AssertionError, Extension, 'name', ['file', 1]) + ext = Extension('name', ['file1', 'file2']) + self.assertEqual(ext.sources, ['file1', 'file2']) + + # others arguments have defaults + for attr in ('include_dirs', 'define_macros', 'undef_macros', + 'library_dirs', 'libraries', 'runtime_library_dirs', + 'extra_objects', 'extra_compile_args', 'extra_link_args', + 'export_symbols', 'swig_opts', 'depends'): + self.assertEqual(getattr(ext, attr), []) + + self.assertEqual(ext.language, None) + self.assertEqual(ext.optional, None) + + # if there are unknown keyword options, warn about them + with check_warnings() as w: + warnings.simplefilter('always') + ext = Extension('name', ['file1', 'file2'], chic=True) + + self.assertEqual(len(w.warnings), 1) + self.assertEqual(str(w.warnings[0].message), + "Unknown Extension options: 'chic'") + +def test_suite(): + return unittest.makeSuite(ExtensionTestCase) + +if __name__ == "__main__": + run_unittest(test_suite()) |
