-import os
+import os.path
+from os.path import abspath
import re
import sys
import types
def restore_isdir():
os.path.isdir = original_isdir
self.addCleanup(restore_isdir)
- self.addCleanup(sys.path.remove, '/foo')
+ self.addCleanup(sys.path.remove, abspath('/foo'))
# Test data: we expect the following:
# a listdir to find our package, and a isfile and isdir check on it.
# the module load tests for both package and plain module called,
# and the plain module result nested by the package module load_tests
# indicating that it was processed and could have been mutated.
- vfs = {'/foo': ['my_package'],
- '/foo/my_package': ['__init__.py', 'test_module.py']}
+ vfs = {abspath('/foo'): ['my_package'],
+ abspath('/foo/my_package'): ['__init__.py', 'test_module.py']}
def list_dir(path):
return list(vfs[path])
os.listdir = list_dir
loader._get_module_from_name = lambda name: Module(name)
loader.suiteClass = lambda thing: thing
- loader._top_level_dir = '/foo'
+ loader._top_level_dir = abspath('/foo')
# this time no '.py' on the pattern so that it can match
# a test package
- suite = list(loader._find_tests('/foo', 'test*.py'))
+ suite = list(loader._find_tests(abspath('/foo'), 'test*.py'))
# We should have loaded tests from both my_package and
# my_pacakge.test_module, and also run the load_tests hook in both.
test.test_this_does_not_exist()
def test_discover_with_init_modules_that_fail_to_import(self):
- vfs = {'/foo': ['my_package'],
- '/foo/my_package': ['__init__.py', 'test_module.py']}
+ vfs = {abspath('/foo'): ['my_package'],
+ abspath('/foo/my_package'): ['__init__.py', 'test_module.py']}
self.setup_import_issue_package_tests(vfs)
import_calls = []
def _get_module_from_name(name):
raise ImportError("Cannot import Name")
loader = unittest.TestLoader()
loader._get_module_from_name = _get_module_from_name
- suite = loader.discover('/foo')
+ suite = loader.discover(abspath('/foo'))
- self.assertIn('/foo', sys.path)
+ self.assertIn(abspath('/foo'), sys.path)
self.assertEqual(suite.countTestCases(), 1)
test = list(list(suite)[0])[0] # extract test from suite
with self.assertRaises(ImportError):
self.assertEqual(len(result.skipped), 1)
def test_discover_with_init_module_that_raises_SkipTest_on_import(self):
- vfs = {'/foo': ['my_package'],
- '/foo/my_package': ['__init__.py', 'test_module.py']}
+ vfs = {abspath('/foo'): ['my_package'],
+ abspath('/foo/my_package'): ['__init__.py', 'test_module.py']}
self.setup_import_issue_package_tests(vfs)
import_calls = []
def _get_module_from_name(name):
raise unittest.SkipTest('skipperoo')
loader = unittest.TestLoader()
loader._get_module_from_name = _get_module_from_name
- suite = loader.discover('/foo')
+ suite = loader.discover(abspath('/foo'))
- self.assertIn('/foo', sys.path)
+ self.assertIn(abspath('/foo'), sys.path)
self.assertEqual(suite.countTestCases(), 1)
result = unittest.TestResult()
suite.run(result)