-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include subdirectory URL fragment in the cache key
- Loading branch information
Showing
3 changed files
with
42 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Include ``subdirectory`` URL fragments in the cache keys. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
from pip._internal.cache import WheelCache | ||
from pip._internal.models.format_control import FormatControl | ||
from pip._internal.models.link import Link | ||
from pip._internal.utils.compat import expanduser | ||
|
||
|
||
class TestWheelCache: | ||
def test_expands_path(): | ||
wc = WheelCache("~/.foo/", None) | ||
assert wc.cache_dir == expanduser("~/.foo/") | ||
|
||
def test_expands_path(self): | ||
wc = WheelCache("~/.foo/", None) | ||
assert wc.cache_dir == expanduser("~/.foo/") | ||
|
||
def test_falsey_path_none(self): | ||
wc = WheelCache(False, None) | ||
assert wc.cache_dir is None | ||
def test_falsey_path_none(): | ||
wc = WheelCache(False, None) | ||
assert wc.cache_dir is None | ||
|
||
|
||
def test_subdirectory_fragment(): | ||
""" | ||
Test the subdirectory URL fragment is part of the cache key. | ||
""" | ||
wc = WheelCache("~/.foo/", None) | ||
link1 = Link("git+https://g.c/o/r#subdirectory=d1") | ||
link2 = Link("git+https://g.c/o/r#subdirectory=d2") | ||
assert wc.get_path_for_link(link1) != wc.get_path_for_link(link2) | ||
|
||
|
||
def test_wheel_name_filter(tmpdir): | ||
""" | ||
Test the wheel cache filters on wheel name when several wheels | ||
for different package are stored under the same cache directory. | ||
""" | ||
wc = WheelCache(tmpdir, FormatControl()) | ||
link = Link("https://g.c/package.tar.gz") | ||
cache_path = wc.get_path_for_link(link) | ||
cache_path.mkdir(parents=True) | ||
(cache_path / "package-1.0-py3-none-any.whl").touch() | ||
# package matches wheel name | ||
assert wc.get(link, "package", [("py3", "none", "any")]) is not link | ||
# package2 does not match wheel name | ||
assert wc.get(link, "package2", [("py3", "none", "any")]) is link |