Show More
@@ -1,4 +1,3 b'' | |||
|
1 | from contextlib import contextmanager | |
|
2 | 1 |
|
|
3 | 2 | import os |
|
4 | 3 | import shutil |
@@ -6,21 +5,18 b' import sys' | |||
|
6 | 5 | import tempfile |
|
7 | 6 | import warnings |
|
8 | 7 | |
|
9 | try: | |
|
10 | reload | |
|
11 |
except |
|
|
12 |
from |
|
|
8 | try: # Python 3 | |
|
9 | from unittest.mock import patch | |
|
10 | except ImportError: # Python 2 | |
|
11 | from mock import patch | |
|
13 | 12 | |
|
14 | from nose import with_setup | |
|
15 | 13 | import nose.tools as nt |
|
16 | 14 | from testpath import modified_env |
|
17 | 15 | |
|
18 | import IPython | |
|
19 | 16 | from IPython import paths |
|
20 | 17 | from IPython.testing.decorators import skip_win32 |
|
21 | 18 | from IPython.utils.tempdir import TemporaryDirectory |
|
22 | 19 | |
|
23 | env = os.environ | |
|
24 | 20 | TMP_TEST_DIR = tempfile.mkdtemp() |
|
25 | 21 | HOME_TEST_DIR = os.path.join(TMP_TEST_DIR, "home_test_dir") |
|
26 | 22 | XDG_TEST_DIR = os.path.join(HOME_TEST_DIR, "xdg_test_dir") |
@@ -49,89 +45,57 b' def teardown():' | |||
|
49 | 45 | # that non-empty directories are all recursively removed. |
|
50 | 46 | shutil.rmtree(TMP_TEST_DIR) |
|
51 | 47 | |
|
52 | ||
|
53 | def setup_environment(): | |
|
54 | """Setup testenvironment for some functions that are tested | |
|
55 | in this module. In particular this functions stores attributes | |
|
56 | and other things that we need to stub in some test functions. | |
|
57 | This needs to be done on a function level and not module level because | |
|
58 | each testfunction needs a pristine environment. | |
|
59 | """ | |
|
60 | global oldstuff | |
|
61 | oldstuff = (os.name, sys.platform, paths.get_home_dir, IPython.__file__, os.getcwd()) | |
|
62 | ||
|
63 | def teardown_environment(): | |
|
64 | """Restore things that were remembered by the setup_environment function | |
|
65 | """ | |
|
66 | (os.name, sys.platform, paths.get_home_dir, IPython.__file__, old_wd) = oldstuff | |
|
67 | os.chdir(old_wd) | |
|
68 | reload(paths) | |
|
69 | ||
|
70 | if hasattr(sys, 'frozen'): | |
|
71 | del sys.frozen | |
|
72 | ||
|
73 | # Build decorator that uses the setup_environment/setup_environment | |
|
74 | with_environment = with_setup(setup_environment, teardown_environment) | |
|
75 | ||
|
76 | @contextmanager | |
|
77 | 48 | def patch_get_home_dir(dirpath): |
|
78 | orig_get_home_dir = paths.get_home_dir | |
|
79 | paths.get_home_dir = lambda : dirpath | |
|
80 | try: | |
|
81 | yield | |
|
82 | finally: | |
|
83 | paths.get_home_dir = orig_get_home_dir | |
|
49 | return patch.object(paths, 'get_home_dir', return_value=dirpath) | |
|
50 | ||
|
84 | 51 | |
|
85 | 52 | def test_get_ipython_dir_1(): |
|
86 | 53 | """test_get_ipython_dir_1, Testcase to see if we can call get_ipython_dir without Exceptions.""" |
|
87 | 54 | env_ipdir = os.path.join("someplace", ".ipython") |
|
88 | paths._writable_dir = lambda path: True | |
|
89 |
|
|
|
55 | with patch.object(paths, '_writable_dir', return_value=True), \ | |
|
56 | modified_env({'IPYTHONDIR': env_ipdir}): | |
|
90 | 57 | ipdir = paths.get_ipython_dir() |
|
91 | 58 | |
|
92 | 59 | nt.assert_equal(ipdir, env_ipdir) |
|
93 | 60 | |
|
94 | @with_environment | |
|
95 | 61 | def test_get_ipython_dir_2(): |
|
96 | 62 | """test_get_ipython_dir_2, Testcase to see if we can call get_ipython_dir without Exceptions.""" |
|
97 |
with patch_get_home_dir('someplace') |
|
|
98 | paths.get_xdg_dir = lambda : None | |
|
99 | paths._writable_dir = lambda path: True | |
|
100 |
os.name |
|
|
101 |
|
|
|
102 |
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
|
|
|
63 | with patch_get_home_dir('someplace'), \ | |
|
64 | patch.object(paths, 'get_xdg_dir', return_value=None), \ | |
|
65 | patch.object(paths, '_writable_dir', return_value=True), \ | |
|
66 | patch('os.name', "posix"), \ | |
|
67 | modified_env({'IPYTHON_DIR': None, | |
|
68 | 'IPYTHONDIR': None, | |
|
69 | 'XDG_CONFIG_HOME': None | |
|
70 | }): | |
|
71 | ipdir = paths.get_ipython_dir() | |
|
106 | 72 | |
|
107 |
|
|
|
73 | nt.assert_equal(ipdir, os.path.join("someplace", ".ipython")) | |
|
108 | 74 | |
|
109 | @with_environment | |
|
110 | 75 | def test_get_ipython_dir_3(): |
|
111 | 76 | """test_get_ipython_dir_3, move XDG if defined, and .ipython doesn't exist.""" |
|
112 | 77 | tmphome = TemporaryDirectory() |
|
113 | 78 | try: |
|
114 |
with patch_get_home_dir(tmphome.name) |
|
|
115 |
os.name |
|
|
116 |
|
|
|
117 | 'IPYTHON_DIR': None, | |
|
118 | 'IPYTHONDIR': None, | |
|
119 | 'XDG_CONFIG_HOME': XDG_TEST_DIR, | |
|
120 | }), warnings.catch_warnings(record=True) as w: | |
|
121 |
|
|
|
79 | with patch_get_home_dir(tmphome.name), \ | |
|
80 | patch('os.name', 'posix'), \ | |
|
81 | modified_env({ | |
|
82 | 'IPYTHON_DIR': None, | |
|
83 | 'IPYTHONDIR': None, | |
|
84 | 'XDG_CONFIG_HOME': XDG_TEST_DIR, | |
|
85 | }), warnings.catch_warnings(record=True) as w: | |
|
86 | ipdir = paths.get_ipython_dir() | |
|
122 | 87 | |
|
123 |
|
|
|
124 |
|
|
|
125 |
|
|
|
126 |
|
|
|
88 | nt.assert_equal(ipdir, os.path.join(tmphome.name, ".ipython")) | |
|
89 | if sys.platform != 'darwin': | |
|
90 | nt.assert_equal(len(w), 1) | |
|
91 | nt.assert_in('Moving', str(w[0])) | |
|
127 | 92 | finally: |
|
128 | 93 | tmphome.cleanup() |
|
129 | 94 | |
|
130 | @with_environment | |
|
131 | 95 | def test_get_ipython_dir_4(): |
|
132 | 96 | """test_get_ipython_dir_4, warn if XDG and home both exist.""" |
|
133 |
with patch_get_home_dir(HOME_TEST_DIR) |
|
|
134 |
os.name |
|
|
97 | with patch_get_home_dir(HOME_TEST_DIR), \ | |
|
98 | patch('os.name', 'posix'): | |
|
135 | 99 | try: |
|
136 | 100 | os.mkdir(os.path.join(XDG_TEST_DIR, 'ipython')) |
|
137 | 101 | except OSError as e: |
@@ -151,11 +115,10 b' def test_get_ipython_dir_4():' | |||
|
151 | 115 | nt.assert_equal(len(w), 1) |
|
152 | 116 | nt.assert_in('Ignoring', str(w[0])) |
|
153 | 117 | |
|
154 | @with_environment | |
|
155 | 118 | def test_get_ipython_dir_5(): |
|
156 | 119 | """test_get_ipython_dir_5, use .ipython if exists and XDG defined, but doesn't exist.""" |
|
157 |
with patch_get_home_dir(HOME_TEST_DIR) |
|
|
158 |
os.name |
|
|
120 | with patch_get_home_dir(HOME_TEST_DIR), \ | |
|
121 | patch('os.name', 'posix'): | |
|
159 | 122 | try: |
|
160 | 123 | os.rmdir(os.path.join(XDG_TEST_DIR, 'ipython')) |
|
161 | 124 | except OSError as e: |
@@ -171,55 +134,46 b' def test_get_ipython_dir_5():' | |||
|
171 | 134 | |
|
172 | 135 | nt.assert_equal(ipdir, IP_TEST_DIR) |
|
173 | 136 | |
|
174 | @with_environment | |
|
175 | 137 | def test_get_ipython_dir_6(): |
|
176 | 138 | """test_get_ipython_dir_6, use home over XDG if defined and neither exist.""" |
|
177 | 139 | xdg = os.path.join(HOME_TEST_DIR, 'somexdg') |
|
178 | 140 | os.mkdir(xdg) |
|
179 | 141 | shutil.rmtree(os.path.join(HOME_TEST_DIR, '.ipython')) |
|
180 | with patch_get_home_dir(HOME_TEST_DIR): | |
|
181 | orig_get_xdg_dir = paths.get_xdg_dir | |
|
182 | paths.get_xdg_dir = lambda : xdg | |
|
183 | try: | |
|
184 | os.name = "posix" | |
|
185 | with modified_env({ | |
|
142 | print(paths._writable_dir) | |
|
143 | with patch_get_home_dir(HOME_TEST_DIR), \ | |
|
144 | patch.object(paths, 'get_xdg_dir', return_value=xdg), \ | |
|
145 | patch('os.name', 'posix'), \ | |
|
146 | modified_env({ | |
|
186 | 147 | 'IPYTHON_DIR': None, |
|
187 | 148 | 'IPYTHONDIR': None, |
|
188 | 149 | 'XDG_CONFIG_HOME': None, |
|
189 | 150 | }), warnings.catch_warnings(record=True) as w: |
|
190 |
|
|
|
151 | ipdir = paths.get_ipython_dir() | |
|
191 | 152 | |
|
192 |
|
|
|
193 |
|
|
|
194 | finally: | |
|
195 | paths.get_xdg_dir = orig_get_xdg_dir | |
|
153 | nt.assert_equal(ipdir, os.path.join(HOME_TEST_DIR, '.ipython')) | |
|
154 | nt.assert_equal(len(w), 0) | |
|
196 | 155 | |
|
197 | 156 | def test_get_ipython_dir_7(): |
|
198 | 157 | """test_get_ipython_dir_7, test home directory expansion on IPYTHONDIR""" |
|
199 | paths._writable_dir = lambda path: True | |
|
200 | 158 | home_dir = os.path.normpath(os.path.expanduser('~')) |
|
201 |
with modified_env({'IPYTHONDIR': os.path.join('~', 'somewhere')}) |
|
|
159 | with modified_env({'IPYTHONDIR': os.path.join('~', 'somewhere')}), \ | |
|
160 | patch.object(paths, '_writable_dir', return_value=True): | |
|
202 | 161 | ipdir = paths.get_ipython_dir() |
|
203 | 162 | nt.assert_equal(ipdir, os.path.join(home_dir, 'somewhere')) |
|
204 | 163 | |
|
205 | 164 | @skip_win32 |
|
206 | 165 | def test_get_ipython_dir_8(): |
|
207 | 166 | """test_get_ipython_dir_8, test / home directory""" |
|
208 | old = paths._writable_dir, paths.get_xdg_dir | |
|
209 | try: | |
|
210 | paths._writable_dir = lambda path: bool(path) | |
|
211 | paths.get_xdg_dir = lambda: None | |
|
212 | with modified_env({ | |
|
213 |
' |
|
|
214 | 'IPYTHONDIR': None, | |
|
215 | 'HOME': '/', | |
|
216 | }): | |
|
217 | nt.assert_equal(paths.get_ipython_dir(), '/.ipython') | |
|
218 | finally: | |
|
219 | paths._writable_dir, paths.get_xdg_dir = old | |
|
167 | with patch.object(paths, '_writable_dir', lambda path: bool(path)), \ | |
|
168 | patch.object(paths, 'get_xdg_dir', return_value=None), \ | |
|
169 | modified_env({ | |
|
170 | 'IPYTHON_DIR': None, | |
|
171 | 'IPYTHONDIR': None, | |
|
172 | 'HOME': '/', | |
|
173 | }): | |
|
174 | nt.assert_equal(paths.get_ipython_dir(), '/.ipython') | |
|
220 | 175 | |
|
221 | 176 | |
|
222 | @with_environment | |
|
223 | 177 | def test_get_ipython_cache_dir(): |
|
224 | 178 | with modified_env({'HOME': HOME_TEST_DIR}): |
|
225 | 179 | if os.name == 'posix' and sys.platform != 'darwin': |
General Comments 0
You need to be logged in to leave comments.
Login now