1
1
from __future__ import absolute_import
2
-
2
+ import sys
3
3
from unittest import TestCase
4
-
5
4
from plotly .optional_imports import get_module
6
5
7
6
@@ -22,3 +21,33 @@ def test_get_module_exists_submodule(self):
22
21
def test_get_module_does_not_exist (self ):
23
22
module = get_module ('hoopla' )
24
23
self .assertIsNone (module )
24
+
25
+ def test_get_module_import_exception (self ):
26
+ # Get module that raises an exception on import
27
+ module_str = ('plotly.tests.test_core.'
28
+ 'test_optional_imports.exploding_module' )
29
+
30
+ if sys .version_info .major == 3 and sys .version_info .minor >= 4 :
31
+ with self .assertLogs ('plotly.optional_imports' , level = 'ERROR' ) as cm :
32
+ module = get_module (module_str )
33
+
34
+ # No exception should be raised and None should be returned
35
+ self .assertIsNone (module )
36
+
37
+ # Check logging level and log message
38
+ expected_start = ('ERROR:plotly.optional_imports:'
39
+ 'Error importing optional module ' + module_str )
40
+
41
+ self .assertEqual (
42
+ cm .output [0 ][:len (expected_start )], expected_start )
43
+
44
+ # Check that exception message is included after log message
45
+ expected_end = 'Boom!'
46
+ self .assertEqual (
47
+ cm .output [0 ][- len (expected_end ):], expected_end )
48
+ else :
49
+ # Don't check logging
50
+ module = get_module (module_str )
51
+
52
+ # No exception should be raised and None should be returned
53
+ self .assertIsNone (module )
0 commit comments