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
30b047dc
Commit
30b047dc
authored
Feb 01, 2009
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move source loader tests (including reload tests) over to
importlib.test.abc.LoaderTests.
parent
223a19d8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
77 deletions
+72
-77
Lib/importlib/NOTES
Lib/importlib/NOTES
+0
-4
Lib/importlib/test/source/test_loader.py
Lib/importlib/test/source/test_loader.py
+72
-2
Lib/importlib/test/source/test_reload.py
Lib/importlib/test/source/test_reload.py
+0
-71
No files found.
Lib/importlib/NOTES
View file @
30b047dc
to do
/////
* Use test.abc.LoaderTests
+ source
* Reorganize support code.
+ Separate general support code and importer-specific (e.g. source) support
...
...
Lib/importlib/test/source/test_loader.py
View file @
30b047dc
import
importlib
from
..
import
abc
from
..
import
support
import
imp
...
...
@@ -16,11 +17,80 @@ class SimpleTest(unittest.TestCase):
"""
# [basic]
def
test_
basic
(
self
):
def
test_
module
(
self
):
with
support
.
create_modules
(
'_temp'
)
as
mapping
:
loader
=
importlib
.
_PyFileLoader
(
'_temp'
,
mapping
[
'_temp'
],
False
)
loader
.
load_module
(
'_temp'
)
module
=
loader
.
load_module
(
'_temp'
)
self
.
assert_
(
'_temp'
in
sys
.
modules
)
check
=
{
'__name__'
:
'_temp'
,
'__file__'
:
mapping
[
'_temp'
],
'__package__'
:
None
}
for
attr
,
value
in
check
.
items
():
self
.
assertEqual
(
getattr
(
module
,
attr
),
value
)
def
test_package
(
self
):
with
support
.
create_modules
(
'_pkg.__init__'
)
as
mapping
:
loader
=
importlib
.
_PyFileLoader
(
'_pkg'
,
mapping
[
'_pkg.__init__'
],
True
)
module
=
loader
.
load_module
(
'_pkg'
)
self
.
assert_
(
'_pkg'
in
sys
.
modules
)
check
=
{
'__name__'
:
'_pkg'
,
'__file__'
:
mapping
[
'_pkg.__init__'
],
'__path__'
:
[
os
.
path
.
dirname
(
mapping
[
'_pkg.__init__'
])],
'__package__'
:
'_pkg'
}
for
attr
,
value
in
check
.
items
():
self
.
assertEqual
(
getattr
(
module
,
attr
),
value
)
def
test_lacking_parent
(
self
):
with
support
.
create_modules
(
'_pkg.__init__'
,
'_pkg.mod'
)
as
mapping
:
loader
=
importlib
.
_PyFileLoader
(
'_pkg.mod'
,
mapping
[
'_pkg.mod'
],
False
)
module
=
loader
.
load_module
(
'_pkg.mod'
)
self
.
assert_
(
'_pkg.mod'
in
sys
.
modules
)
check
=
{
'__name__'
:
'_pkg.mod'
,
'__file__'
:
mapping
[
'_pkg.mod'
],
'__package__'
:
'_pkg'
}
for
attr
,
value
in
check
.
items
():
self
.
assertEqual
(
getattr
(
module
,
attr
),
value
)
def
fake_mtime
(
self
,
fxn
):
"""Fake mtime to always be higher than expected."""
return
lambda
name
:
fxn
(
name
)
+
1
def
test_module_reuse
(
self
):
with
support
.
create_modules
(
'_temp'
)
as
mapping
:
loader
=
importlib
.
_PyFileLoader
(
'_temp'
,
mapping
[
'_temp'
],
False
)
module
=
loader
.
load_module
(
'_temp'
)
module_id
=
id
(
module
)
module_dict_id
=
id
(
module
.
__dict__
)
with
open
(
mapping
[
'_temp'
],
'w'
)
as
file
:
file
.
write
(
"testing_var = 42
\
n
"
)
# For filesystems where the mtime is only to a second granularity,
# everything that has happened above can be too fast;
# force an mtime on the source that is guaranteed to be different
# than the original mtime.
loader
.
source_mtime
=
self
.
fake_mtime
(
loader
.
source_mtime
)
module
=
loader
.
load_module
(
'_temp'
)
self
.
assert_
(
'testing_var'
in
module
.
__dict__
,
"'testing_var' not in "
"{0}"
.
format
(
list
(
module
.
__dict__
.
keys
())))
self
.
assertEqual
(
module
,
sys
.
modules
[
'_temp'
])
self
.
assertEqual
(
id
(
module
),
module_id
)
self
.
assertEqual
(
id
(
module
.
__dict__
),
module_dict_id
)
def
test_state_after_failure
(
self
):
# A failed reload should leave the original module intact.
attributes
=
(
'__file__'
,
'__path__'
,
'__package__'
)
value
=
'<test>'
name
=
'_temp'
with
support
.
create_modules
(
name
)
as
mapping
:
orig_module
=
imp
.
new_module
(
name
)
for
attr
in
attributes
:
setattr
(
orig_module
,
attr
,
value
)
with
open
(
mapping
[
name
],
'w'
)
as
file
:
file
.
write
(
'+++ bad syntax +++'
)
loader
=
importlib
.
_PyFileLoader
(
'_temp'
,
mapping
[
'_temp'
],
False
)
self
.
assertRaises
(
SyntaxError
,
loader
.
load_module
,
name
)
for
attr
in
attributes
:
self
.
assertEqual
(
getattr
(
orig_module
,
attr
),
value
)
# [syntax error]
def
test_bad_syntax
(
self
):
...
...
Lib/importlib/test/source/test_reload.py
deleted
100644 → 0
View file @
223a19d8
"""Test reload support.
Reload support requires two things. One is that if module is loaded that
already exists in sys.modules then it is reused. And two, if a reload fails the
pre-existing module is left in a sane state.
"""
import
imp
import
sys
import
types
import
unittest
import
importlib
from
..
import
support
class
ReloadTests
(
unittest
.
TestCase
):
name
=
'_temp'
def
load_module
(
self
,
mapping
):
return
importlib
.
_PyFileLoader
(
self
.
name
,
mapping
[
self
.
name
],
False
)
def
fake_mtime
(
self
,
fxn
):
"""Fake mtime to always be higher than expected."""
return
lambda
name
:
fxn
(
name
)
+
1
def
test_module_reuse
(
self
):
with
support
.
create_modules
(
self
.
name
)
as
mapping
:
loader
=
self
.
load_module
(
mapping
)
module
=
loader
.
load_module
(
self
.
name
)
module_id
=
id
(
module
)
module_dict_id
=
id
(
module
.
__dict__
)
with
open
(
mapping
[
self
.
name
],
'w'
)
as
file
:
file
.
write
(
"testing_var = 42
\
n
"
)
# For filesystems where the mtime is only to a second granularity,
# everything that has happened above can be too fast;
# force an mtime on the source that is guaranteed to be different
# than the original mtime.
loader
.
source_mtime
=
self
.
fake_mtime
(
loader
.
source_mtime
)
module
=
loader
.
load_module
(
self
.
name
)
self
.
assert_
(
'testing_var'
in
module
.
__dict__
,
"'testing_var' not in "
"{0}"
.
format
(
list
(
module
.
__dict__
.
keys
())))
self
.
assertEqual
(
module
,
sys
.
modules
[
self
.
name
])
self
.
assertEqual
(
id
(
module
),
module_id
)
self
.
assertEqual
(
id
(
module
.
__dict__
),
module_dict_id
)
def
test_bad_reload
(
self
):
# A failed reload should leave the original module intact.
attributes
=
(
'__file__'
,
'__path__'
,
'__package__'
)
value
=
'<test>'
with
support
.
create_modules
(
self
.
name
)
as
mapping
:
orig_module
=
imp
.
new_module
(
self
.
name
)
for
attr
in
attributes
:
setattr
(
orig_module
,
attr
,
value
)
with
open
(
mapping
[
self
.
name
],
'w'
)
as
file
:
file
.
write
(
'+++ bad syntax +++'
)
loader
=
self
.
load_module
(
mapping
)
self
.
assertRaises
(
SyntaxError
,
loader
.
load_module
,
self
.
name
)
for
attr
in
attributes
:
self
.
assertEqual
(
getattr
(
orig_module
,
attr
),
value
)
def
test_main
():
from
test.support
import
run_unittest
run_unittest
(
ReloadTests
)
if
__name__
==
'__main__'
:
test_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