| """Tests for distutils.command.build.""" |
| import unittest |
| import os |
| import sys |
|
|
| from distutils.command.build import build |
| from distutils.tests import support |
| from sysconfig import get_platform |
|
|
| class BuildTestCase(support.TempdirManager, |
| support.LoggingSilencer, |
| unittest.TestCase): |
|
|
| @unittest.skipUnless(sys.executable, "test requires sys.executable") |
| def test_finalize_options(self): |
| pkg_dir, dist = self.create_dist() |
| cmd = build(dist) |
| cmd.finalize_options() |
|
|
| |
| self.assertEqual(cmd.plat_name, get_platform()) |
|
|
| |
| wanted = os.path.join(cmd.build_base, 'lib') |
| self.assertEqual(cmd.build_purelib, wanted) |
|
|
| |
| |
| |
| plat_spec = '.%s-%d.%d' % (cmd.plat_name, *sys.version_info[:2]) |
| if hasattr(sys, 'gettotalrefcount'): |
| self.assertTrue(cmd.build_platlib.endswith('-pydebug')) |
| plat_spec += '-pydebug' |
| wanted = os.path.join(cmd.build_base, 'lib' + plat_spec) |
| self.assertEqual(cmd.build_platlib, wanted) |
|
|
| |
| self.assertEqual(cmd.build_lib, cmd.build_purelib) |
|
|
| |
| wanted = os.path.join(cmd.build_base, 'temp' + plat_spec) |
| self.assertEqual(cmd.build_temp, wanted) |
|
|
| |
| wanted = os.path.join(cmd.build_base, |
| 'scripts-%d.%d' % sys.version_info[:2]) |
| self.assertEqual(cmd.build_scripts, wanted) |
|
|
| |
| self.assertEqual(cmd.executable, os.path.normpath(sys.executable)) |
|
|
| if __name__ == "__main__": |
| unittest.main() |
|
|