Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mitogen
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
mitogen
Commits
23e279b6
Commit
23e279b6
authored
Mar 22, 2018
by
David Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: get import_test limping back to health.
parent
469279d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
104 additions
and
73 deletions
+104
-73
tests/importer_test.py
tests/importer_test.py
+104
-73
No files found.
tests/importer_test.py
View file @
23e279b6
import
email.utils
import
sys
import
threading
import
types
import
zlib
...
...
@@ -14,6 +15,13 @@ import mitogen.utils
import
testlib
import
logging
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
mitogen
.
core
.
_v
=
True
mitogen
.
core
.
_vv
=
True
mitogen
.
core
.
IOLOG
.
setLevel
(
logging
.
DEBUG
)
class
ImporterMixin
(
testlib
.
RouterMixin
):
modname
=
None
...
...
@@ -22,97 +30,61 @@ class ImporterMixin(testlib.RouterMixin):
self
.
context
=
mock
.
Mock
()
self
.
importer
=
mitogen
.
core
.
Importer
(
self
.
router
,
self
.
context
,
''
)
# TODO: this is a horrendous hack. Without it, we can't deliver a
# response to find_module() via _on_load_module() since find_module()
# is still holding the lock. The tests need a nicer abstraction for
# soemthing like "fake participant" that lets us have a mock master
# that respects the execution model expected by the code -- probably
# (grmph) including multiplexer thread and all.
self
.
importer
.
_lock
=
threading
.
RLock
()
def
set_get_module_response
(
self
,
resp
):
def
on_context_send
(
msg
):
self
.
context_send_msg
=
msg
self
.
importer
.
_on_load_module
(
mitogen
.
core
.
Message
.
pickled
(
resp
)
)
self
.
context
.
send
=
on_context_send
def
tearDown
(
self
):
sys
.
modules
.
pop
(
self
.
modname
,
None
)
super
(
ImporterMixin
,
self
).
tearDown
()
class
ImporterBlacklist
(
testlib
.
TestCase
):
def
test_is_blacklisted_import_default
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_just_whitelist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
whitelist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_just_blacklist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
blacklist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_whitelist_and_blacklist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
whitelist
=
(
'mypkg'
,),
blacklist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
class
LoadModuleTest
(
ImporterMixin
,
testlib
.
TestCase
):
data
=
zlib
.
compress
(
"data = 1
\
n
\
n
"
)
path
=
'fake_module.py'
modname
=
'fake_module'
response
=
(
None
,
path
,
data
)
# 0:fullname 1:pkg_present 2:path 3:compressed 4:related
response
=
(
modname
,
None
,
path
,
data
,
[])
def
test_no_such_module
(
self
):
self
.
context
.
send_await
.
return_value
=
None
self
.
set_get_module_response
(
# 0:fullname 1:pkg_present 2:path 3:compressed 4:related
(
self
.
modname
,
None
,
None
,
None
,
None
)
)
self
.
assertRaises
(
ImportError
,
lambda
:
self
.
importer
.
load_module
(
self
.
modname
))
def
test_module_added_to_sys_modules
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertIs
(
sys
.
modules
[
self
.
modname
],
mod
)
self
.
assertIsInstance
(
mod
,
types
.
ModuleType
)
def
test_module_file_set
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertEquals
(
mod
.
__file__
,
'master:'
+
self
.
path
)
def
test_module_loader_set
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertIs
(
mod
.
__loader__
,
self
.
importer
)
def
test_module_package_unset
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertIsNone
(
mod
.
__package__
)
...
...
@@ -121,10 +93,11 @@ class LoadSubmoduleTest(ImporterMixin, testlib.TestCase):
data
=
zlib
.
compress
(
"data = 1
\
n
\
n
"
)
path
=
'fake_module.py'
modname
=
'mypkg.fake_module'
response
=
(
None
,
path
,
data
)
# 0:fullname 1:pkg_present 2:path 3:compressed 4:related
response
=
(
modname
,
None
,
path
,
data
,
[])
def
test_module_package_unset
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertEquals
(
mod
.
__package__
,
'mypkg'
)
...
...
@@ -133,42 +106,43 @@ class LoadModulePackageTest(ImporterMixin, testlib.TestCase):
data
=
zlib
.
compress
(
"func = lambda: 1
\
n
\
n
"
)
path
=
'fake_pkg/__init__.py'
modname
=
'fake_pkg'
response
=
([],
path
,
data
)
# 0:fullname 1:pkg_present 2:path 3:compressed 4:related
response
=
(
modname
,
[],
path
,
data
,
[])
def
test_module_file_set
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertEquals
(
mod
.
__file__
,
'master:'
+
self
.
path
)
def
test_get_filename
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
filename
=
mod
.
__loader__
.
get_filename
(
self
.
modname
)
self
.
assertEquals
(
'master:fake_pkg/__init__.py'
,
filename
)
def
test_get_source
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
source
=
mod
.
__loader__
.
get_source
(
self
.
modname
)
self
.
assertEquals
(
source
,
zlib
.
decompress
(
self
.
data
))
def
test_module_loader_set
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertIs
(
mod
.
__loader__
,
self
.
importer
)
def
test_module_path_present
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertEquals
(
mod
.
__path__
,
[])
def
test_module_package_set
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertEquals
(
mod
.
__package__
,
self
.
modname
)
def
test_module_data
(
self
):
self
.
context
.
send_await
.
return_value
=
self
.
response
self
.
set_get_module_response
(
self
.
response
)
mod
=
self
.
importer
.
load_module
(
self
.
modname
)
self
.
assertIsInstance
(
mod
.
func
,
types
.
FunctionType
)
self
.
assertEquals
(
mod
.
func
.
__module__
,
self
.
modname
)
...
...
@@ -186,5 +160,62 @@ class EmailParseAddrSysTest(testlib.RouterMixin, testlib.TestCase):
pass
class
ImporterBlacklistTest
(
testlib
.
TestCase
):
def
test_is_blacklisted_import_default
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_just_whitelist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
whitelist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_just_blacklist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
blacklist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertFalse
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
def
test_is_blacklisted_import_whitelist_and_blacklist
(
self
):
importer
=
mitogen
.
core
.
Importer
(
router
=
mock
.
Mock
(),
context
=
None
,
core_src
=
''
,
whitelist
=
(
'mypkg'
,),
blacklist
=
(
'mypkg'
,),
)
self
.
assertIsInstance
(
importer
.
whitelist
,
list
)
self
.
assertIsInstance
(
importer
.
blacklist
,
list
)
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'mypkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'otherpkg.mod'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'__builtin__'
))
self
.
assertTrue
(
mitogen
.
core
.
is_blacklisted_import
(
importer
,
'builtins'
))
if
__name__
==
'__main__'
:
unittest2
.
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