Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4ab46953
Commit
4ab46953
authored
Jun 10, 2018
by
Tal Einat
Committed by
GitHub
Jun 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-33748: fix tests altering sys.path and sys.modules (GH-7433)
parent
1b85c71a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
19 deletions
+20
-19
Lib/unittest/test/test_discovery.py
Lib/unittest/test/test_discovery.py
+20
-19
No files found.
Lib/unittest/test/test_discovery.py
View file @
4ab46953
...
...
@@ -4,10 +4,11 @@ import re
import
sys
import
types
import
pickle
import
builtins
from
test
import
support
import
test.test_importlib.util
import
unittest
import
unittest.mock
import
unittest.test
...
...
@@ -820,7 +821,6 @@ class TestDiscovery(unittest.TestCase):
def
test_discovery_from_dotted_namespace_packages
(
self
):
loader
=
unittest
.
TestLoader
()
orig_import
=
__import__
package
=
types
.
ModuleType
(
'package'
)
package
.
__path__
=
[
'/a'
,
'/b'
]
package
.
__spec__
=
types
.
SimpleNamespace
(
...
...
@@ -832,11 +832,6 @@ class TestDiscovery(unittest.TestCase):
sys
.
modules
[
packagename
]
=
package
return
package
def
cleanup
():
builtins
.
__import__
=
orig_import
self
.
addCleanup
(
cleanup
)
builtins
.
__import__
=
_import
_find_tests_args
=
[]
def
_find_tests
(
start_dir
,
pattern
,
namespace
=
None
):
_find_tests_args
.
append
((
start_dir
,
pattern
))
...
...
@@ -844,28 +839,34 @@ class TestDiscovery(unittest.TestCase):
loader
.
_find_tests
=
_find_tests
loader
.
suiteClass
=
list
suite
=
loader
.
discover
(
'package'
)
with
unittest
.
mock
.
patch
(
'builtins.__import__'
,
_import
):
# Since loader.discover() can modify sys.path, restore it when done.
with
support
.
DirsOnSysPath
():
# Make sure to remove 'package' from sys.modules when done.
with
test
.
test_importlib
.
util
.
uncache
(
'package'
):
suite
=
loader
.
discover
(
'package'
)
self
.
assertEqual
(
suite
,
[
'/a/tests'
,
'/b/tests'
])
def
test_discovery_failed_discovery
(
self
):
loader
=
unittest
.
TestLoader
()
package
=
types
.
ModuleType
(
'package'
)
orig_import
=
__import__
def
_import
(
packagename
,
*
args
,
**
kwargs
):
sys
.
modules
[
packagename
]
=
package
return
package
def
cleanup
(
):
builtins
.
__import__
=
orig_import
self
.
addCleanup
(
cleanup
)
builtins
.
__import__
=
_import
with
self
.
assertRaises
(
TypeError
)
as
cm
:
loader
.
discover
(
'package'
)
self
.
assertEqual
(
str
(
cm
.
exception
),
'don
\
'
t know how to discover from {!r}'
.
format
(
package
))
with
unittest
.
mock
.
patch
(
'builtins.__import__'
,
_import
):
# Since loader.discover() can modify sys.path, restore it when done.
with
support
.
DirsOnSysPath
():
# Make sure to remove 'package' from sys.modules when done.
with
test
.
test_importlib
.
util
.
uncache
(
'package'
):
with
self
.
assertRaises
(
TypeError
)
as
cm
:
loader
.
discover
(
'package'
)
self
.
assertEqual
(
str
(
cm
.
exception
),
'don
\
'
t know how to discover from {!r}'
.
format
(
package
))
if
__name__
==
'__main__'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment