-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_path.py
392 lines (339 loc) · 13.9 KB
/
test_path.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
from __future__ import annotations
import sys
import textwrap
from contextlib import ExitStack as does_not_raise # noqa: N813
from pathlib import Path
from pathlib import PurePosixPath
from pathlib import PureWindowsPath
from types import ModuleType
from typing import Any
import pytest
from _pytask.path import _insert_missing_modules
from _pytask.path import _module_name_from_path
from _pytask.path import find_case_sensitive_path
from _pytask.path import find_closest_ancestor
from _pytask.path import find_common_ancestor
from _pytask.path import relative_to
from pytask.path import import_path
@pytest.mark.unit()
@pytest.mark.parametrize(
("path", "source", "include_source", "expected"),
[
(Path("src/hello.py"), Path("src"), True, Path("src/hello.py")),
(Path("src/hello.py"), Path("src"), False, Path("hello.py")),
],
)
def test_relative_to(path, source, include_source, expected):
result = relative_to(path, source, include_source=include_source)
assert result == expected
@pytest.mark.unit()
@pytest.mark.parametrize(
("path", "potential_ancestors", "expected"),
[
(Path("src/task.py"), [Path("src"), Path("bld")], Path("src")),
(Path("tasks/task.py"), [Path("src"), Path("bld")], Path()),
(Path("src/ts/task.py"), [Path("src"), Path("src/ts")], Path("src/ts")),
(Path("src/in.txt"), [Path("src/task_d.py")], Path("src")),
(Path("src/task.py"), [Path("src/task.py")], Path("src/task.py")),
],
)
def test_find_closest_ancestor(monkeypatch, path, potential_ancestors, expected):
# Ensures that files are detected by an existing suffix not if they also exist.
monkeypatch.setattr("_pytask.nodes.Path.is_file", lambda x: bool(x.suffix))
result = find_closest_ancestor(path, potential_ancestors)
assert result == expected
@pytest.mark.unit()
@pytest.mark.parametrize(
("path_1", "path_2", "expectation", "expected"),
[
pytest.param(
PurePosixPath("relative_1"),
PurePosixPath("/home/relative_2"),
pytest.raises(ValueError, match="Can't mix absolute and relative paths"),
None,
id="test path 1 is relative",
),
pytest.param(
PureWindowsPath("C:/home/relative_1"),
PureWindowsPath("relative_2"),
pytest.raises(ValueError, match="Can't mix absolute and relative paths"),
None,
id="test path 2 is relative",
marks=pytest.mark.skipif(sys.platform != "win32", reason="fails on UNIX."),
),
pytest.param(
PurePosixPath("/home/user/folder_a"),
PurePosixPath("/home/user/folder_b/sub_folder"),
does_not_raise(),
Path("/home/user"),
id="normal behavior with UNIX paths",
),
pytest.param(
PureWindowsPath("C:\\home\\user\\folder_a"),
PureWindowsPath("C:\\home\\user\\folder_b\\sub_folder"),
does_not_raise(),
PureWindowsPath("C:\\home\\user"),
id="normal behavior with Windows paths",
marks=pytest.mark.skipif(sys.platform != "win32", reason="fails on UNIX."),
),
pytest.param(
PureWindowsPath("C:\\home\\user\\folder_a"),
PureWindowsPath("D:\\home\\user\\folder_b\\sub_folder"),
pytest.raises(ValueError, match="Paths don't have the same drive"),
None,
id="no common ancestor",
marks=pytest.mark.skipif(sys.platform != "win32", reason="fails on UNIX."),
),
],
)
def test_find_common_ancestor(path_1, path_2, expectation, expected):
with expectation:
result = find_common_ancestor(path_1, path_2)
assert result == expected
@pytest.mark.unit()
@pytest.mark.skipif(sys.platform != "win32", reason="Only works on Windows.")
@pytest.mark.parametrize(
("path", "existing_paths", "expected"),
[
pytest.param("text.txt", [], "text.txt", id="non-existing path stays the same"),
pytest.param("text.txt", ["text.txt"], "text.txt", id="existing path is same"),
pytest.param("Text.txt", ["text.txt"], "text.txt", id="correct path"),
pytest.param(
"d/text.txt", ["D/text.txt"], "D/text.txt", id="correct path in folder"
),
],
)
def test_find_case_sensitive_path(tmp_path, path, existing_paths, expected):
for p in (path, *existing_paths):
p = tmp_path / p # noqa: PLW2901
p.parent.mkdir(parents=True, exist_ok=True)
p.touch()
result = find_case_sensitive_path(tmp_path / path, sys.platform)
assert result == tmp_path / expected
@pytest.fixture()
def simple_module(request, tmp_path: Path) -> Path:
name = f"mymod_{request.node.name}"
fn = tmp_path / f"_src/project/{name}.py"
fn.parent.mkdir(parents=True)
fn.write_text("def foo(x): return 40 + x")
module_name = _module_name_from_path(fn, root=tmp_path)
yield fn
sys.modules.pop(module_name, None)
@pytest.mark.unit()
def test_importmode_importlib(request, simple_module: Path, tmp_path: Path) -> None:
"""`importlib` mode does not change sys.path."""
module = import_path(simple_module, root=tmp_path)
assert module.foo(2) == 42 # type: ignore[attr-defined]
assert str(simple_module.parent) not in sys.path
assert module.__name__ in sys.modules
assert module.__name__ == f"_src.project.mymod_{request.node.name}"
assert "_src" in sys.modules
assert "_src.project" in sys.modules
@pytest.mark.unit()
def test_remembers_previous_imports(simple_module: Path, tmp_path: Path) -> None:
"""importlib mode called remembers previous module (pytest#10341, pytest#10811)."""
module1 = import_path(simple_module, root=tmp_path)
module2 = import_path(simple_module, root=tmp_path)
assert module1 is module2
@pytest.mark.unit()
def test_no_meta_path_found(
simple_module: Path, monkeypatch: pytest.MonkeyPatch, tmp_path: Path
) -> None:
"""Even without any meta_path should still import module."""
monkeypatch.setattr(sys, "meta_path", [])
module = import_path(simple_module, root=tmp_path)
assert module.foo(2) == 42 # type: ignore[attr-defined]
# mode='importlib' fails if no spec is found to load the module
import importlib.util
# Force module to be re-imported.
del sys.modules[module.__name__]
monkeypatch.setattr(
importlib.util,
"spec_from_file_location",
lambda *args: None, # noqa: ARG005
)
with pytest.raises(ImportError):
import_path(simple_module, root=tmp_path)
@pytest.mark.unit()
class TestImportLibMode:
def test_importmode_importlib_with_dataclass(self, tmp_path: Path) -> None:
"""
Ensure that importlib mode works with a module containing dataclasses (#373,
pytest#7856).
"""
fn = tmp_path.joinpath("_src/project/task_dataclass.py")
fn.parent.mkdir(parents=True)
fn.write_text(
textwrap.dedent(
"""
from dataclasses import dataclass
@dataclass
class Data:
value: str
"""
)
)
module = import_path(fn, root=tmp_path)
Data: Any = module.Data # noqa: N806
data = Data(value="foo")
assert data.value == "foo"
assert data.__module__ == "_src.project.task_dataclass"
# Ensure we do not import the same module again (pytest#11475).
module2 = import_path(fn, root=tmp_path)
assert module is module2
def test_importmode_importlib_with_pickle(self, tmp_path: Path) -> None:
"""Ensure that importlib mode works with pickle (#373, pytest#7859)."""
fn = tmp_path.joinpath("_src/project/task_pickle.py")
fn.parent.mkdir(parents=True)
fn.write_text(
textwrap.dedent(
"""
import pickle
def _action():
return 42
def round_trip():
s = pickle.dumps(_action)
return pickle.loads(s)
"""
)
)
module = import_path(fn, root=tmp_path)
round_trip = module.round_trip
action = round_trip()
assert action() == 42
def test_importmode_importlib_with_pickle_separate_modules(
self, tmp_path: Path
) -> None:
"""
Ensure that importlib mode works can load pickles that look similar but are
defined in separate modules.
"""
fn1 = tmp_path.joinpath("_src/m1/project/task.py")
fn1.parent.mkdir(parents=True)
fn1.write_text(
textwrap.dedent(
"""
import dataclasses
import pickle
@dataclasses.dataclass
class Data:
x: int = 42
"""
)
)
fn2 = tmp_path.joinpath("_src/m2/project/task.py")
fn2.parent.mkdir(parents=True)
fn2.write_text(
textwrap.dedent(
"""
import dataclasses
import pickle
@dataclasses.dataclass
class Data:
x: str = ""
"""
)
)
import pickle
def round_trip(obj):
s = pickle.dumps(obj)
return pickle.loads(s) # noqa: S301
module = import_path(fn1, root=tmp_path)
Data1 = module.Data # noqa: N806
module = import_path(fn2, root=tmp_path)
Data2 = module.Data # noqa: N806
assert round_trip(Data1(20)) == Data1(20)
assert round_trip(Data2("hello")) == Data2("hello")
assert Data1.__module__ == "_src.m1.project.task"
assert Data2.__module__ == "_src.m2.project.task"
def test_module_name_from_path(self, tmp_path: Path) -> None:
result = _module_name_from_path(tmp_path / "src/project/task_foo.py", tmp_path)
assert result == "src.project.task_foo"
# Path is not relative to root dir: use the full path to obtain the module name.
result = _module_name_from_path(Path("/home/foo/task_foo.py"), Path("/bar"))
assert result == "home.foo.task_foo"
# Importing __init__.py files should return the package as module name.
result = _module_name_from_path(tmp_path / "src/app/__init__.py", tmp_path)
assert result == "src.app"
# Unless __init__.py file is at the root, in which case we cannot have an empty
# module name.
result = _module_name_from_path(tmp_path / "__init__.py", tmp_path)
assert result == "__init__"
# Modules which start with "." are considered relative and will not be imported
# unless part of a package, so we replace it with a "_" when generating the fake
# module name.
result = _module_name_from_path(tmp_path / ".env/tasks/task_foo.py", tmp_path)
assert result == "_env.tasks.task_foo"
# We want to avoid generating extra intermediate modules if some directory just
# happens to contain a "." in the name.
result = _module_name_from_path(
tmp_path / ".env.310/tasks/task_foo.py", tmp_path
)
assert result == "_env_310.tasks.task_foo"
def test_insert_missing_modules(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path
) -> None:
monkeypatch.chdir(tmp_path)
# Use 'xxx' and 'xxy' as parent names as they are unlikely to exist and
# don't end up being imported.
modules = {"xxx.project.foo": ModuleType("xxx.project.foo")}
_insert_missing_modules(modules, "xxx.project.foo")
assert sorted(modules) == ["xxx", "xxx.project", "xxx.project.foo"]
mod = ModuleType("mod", doc="My Module")
modules = {"xxy": mod}
_insert_missing_modules(modules, "xxy")
assert modules == {"xxy": mod}
modules = {}
_insert_missing_modules(modules, "")
assert not modules
def test_parent_contains_child_module_attribute(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path
):
monkeypatch.chdir(tmp_path)
# Use 'xxx' and 'xxy' as parent names as they are unlikely to exist and
# don't end up being imported.
modules = {"xxx.tasks.foo": ModuleType("xxx.tasks.foo")}
_insert_missing_modules(modules, "xxx.tasks.foo")
assert sorted(modules) == ["xxx", "xxx.tasks", "xxx.tasks.foo"]
assert modules["xxx"].tasks is modules["xxx.tasks"]
assert modules["xxx.tasks"].foo is modules["xxx.tasks.foo"]
def test_importlib_package(
self, monkeypatch: pytest.MonkeyPatch, tmp_path: Path
) -> None:
"""
Importing a package using --importmode=importlib should not import the
package's __init__.py file more than once (#11306).
"""
monkeypatch.chdir(tmp_path)
monkeypatch.syspath_prepend(tmp_path)
package_name = "importlib_import_package"
tmp_path.joinpath(package_name).mkdir()
init = tmp_path.joinpath(f"{package_name}/__init__.py")
init.write_text(
textwrap.dedent(
"""
from .singleton import Singleton
instance = Singleton()
"""
),
encoding="ascii",
)
singleton = tmp_path.joinpath(f"{package_name}/singleton.py")
singleton.write_text(
textwrap.dedent(
"""
class Singleton:
INSTANCES = []
def __init__(self) -> None:
self.INSTANCES.append(self)
if len(self.INSTANCES) > 1:
raise RuntimeError("Already initialized")
"""
),
encoding="ascii",
)
mod = import_path(init, root=tmp_path)
assert len(mod.instance.INSTANCES) == 1
# Ensure we do not import the same module again (#11475).
mod2 = import_path(init, root=tmp_path)
assert mod is mod2