Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
gh-101566: Sync with zipp 3.14.#102018
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
gh-101566: Sync with zipp 3.14. #102018
Changes from all commits
Commits
Show all changes
2 commits Select commit Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,30 @@ | ||
| import contextlib | ||
| import time | ||
| class DeadlineExceeded(Exception): | ||
| pass | ||
| class TimedContext(contextlib.ContextDecorator): | ||
| """ | ||
| A context that will raise DeadlineExceeded if the | ||
| max duration is reached during the execution. | ||
| >>> TimedContext(1)(time.sleep)(.1) | ||
| >>> TimedContext(0)(time.sleep)(.1) | ||
| Traceback (most recent call last): | ||
| ... | ||
| tests._context.DeadlineExceeded: (..., 0) | ||
| """ | ||
| def __init__(self, max_duration: int): | ||
| self.max_duration = max_duration | ||
| def __enter__(self): | ||
| self.start = time.monotonic() | ||
| def __exit__(self, *err): | ||
| duration = time.monotonic() - self.start | ||
| if duration > self.max_duration: | ||
| raise DeadlineExceeded(duration, self.max_duration) |
This file contains hidden or 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,8 @@ | ||
| try: | ||
| from func_timeout import func_set_timeout as set_timeout | ||
| except ImportError: # pragma: no cover | ||
| # provide a fallback that doesn't actually time out | ||
| from ._context import TimedContext as set_timeout | ||
| __all__ = ['set_timeout'] |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -4,36 +4,25 @@ | ||
| import pathlib | ||
| import pickle | ||
| import string | ||
| from test.support.script_helper import assert_python_ok | ||
| import sys | ||
| import unittest | ||
| import zipfile | ||
| from ._test_params import parameterize, Invoked | ||
| from ._functools import compose | ||
| from ._itertools import Counter | ||
| from ._test_params import parameterize, Invoked | ||
| from ._func_timeout_compat import set_timeout | ||
| from test.support.os_helper import temp_dir | ||
| # Poor man's technique to consume a (smallish) iterable. | ||
| consume = tuple | ||
| # from jaraco.itertools 5.0 | ||
| class jaraco: | ||
| class itertools: | ||
| class Counter: | ||
| def __init__(self, i): | ||
| self.count = 0 | ||
| self._orig_iter = iter(i) | ||
| Counter = Counter | ||
| def __iter__(self): | ||
| return self | ||
| def __next__(self): | ||
| result = next(self._orig_iter) | ||
| self.count += 1 | ||
| return result | ||
| consume = tuple | ||
| def add_dirs(zf): | ||
| @@ -161,10 +150,10 @@ def test_open_encoding_utf16(self): | ||
| u16 = path.joinpath("16.txt") | ||
| with u16.open('r', "utf-16") as strm: | ||
| data = strm.read() | ||
| self.assertEqual(data, "This was utf-16") | ||
| assert data == "This was utf-16" | ||
| with u16.open(encoding="utf-16") as strm: | ||
| data = strm.read() | ||
| self.assertEqual(data, "This was utf-16") | ||
| assert data == "This was utf-16" | ||
| def test_open_encoding_errors(self): | ||
| in_memory_file = io.BytesIO() | ||
| @@ -177,9 +166,9 @@ def test_open_encoding_errors(self): | ||
| # encoding= as a positional argument for gh-101144. | ||
| data = u16.read_text("utf-8", errors="ignore") | ||
| self.assertEqual(data, "invalid utf-8: .") | ||
| assert data == "invalid utf-8: ." | ||
| with u16.open("r", "utf-8", errors="surrogateescape") as f: | ||
| self.assertEqual(f.read(), "invalid utf-8: \udcff\udcff.") | ||
| assert f.read() == "invalid utf-8: \udcff\udcff." | ||
| # encoding= both positional and keyword is an error; gh-101144. | ||
| with self.assertRaisesRegex(TypeError, "encoding"): | ||
| @@ -191,24 +180,21 @@ def test_open_encoding_errors(self): | ||
| with self.assertRaises(UnicodeDecodeError): | ||
| f.read() | ||
| def test_encoding_warnings(self): | ||
| @unittest.skipIf( | ||
| not getattr(sys.flags, 'warn_default_encoding', 0), | ||
| "Requires warn_default_encoding", | ||
gpshead marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| ) | ||
| @pass_alpharep | ||
| def test_encoding_warnings(self, alpharep): | ||
| """EncodingWarning must blame the read_text and open calls.""" | ||
| code = '''\ | ||
| import io, zipfile | ||
| with zipfile.ZipFile(io.BytesIO(), "w") as zf: | ||
| zf.filename = '<test_encoding_warnings in memory zip file>' | ||
| zf.writestr("path/file.txt", b"Spanish Inquisition") | ||
| root = zipfile.Path(zf) | ||
| (path,) = root.iterdir() | ||
| file_path = path.joinpath("file.txt") | ||
| unused = file_path.read_text() # should warn | ||
| file_path.open("r").close() # should warn | ||
| ''' | ||
| proc = assert_python_ok('-X', 'warn_default_encoding', '-c', code) | ||
| warnings = proc.err.splitlines() | ||
| self.assertEqual(len(warnings), 2, proc.err) | ||
| self.assertRegex(warnings[0], rb"^<string>:8: EncodingWarning:") | ||
| self.assertRegex(warnings[1], rb"^<string>:9: EncodingWarning:") | ||
| assert sys.flags.warn_default_encoding | ||
| root = zipfile.Path(alpharep) | ||
| with self.assertWarns(EncodingWarning) as wc: | ||
| root.joinpath("a.txt").read_text() | ||
| assert __file__ == wc.filename | ||
| with self.assertWarns(EncodingWarning) as wc: | ||
| root.joinpath("a.txt").open("r").close() | ||
| assert __file__ == wc.filename | ||
| def test_open_write(self): | ||
| """ | ||
| @@ -250,7 +236,8 @@ def test_read(self, alpharep): | ||
| root = zipfile.Path(alpharep) | ||
| a, b, g = root.iterdir() | ||
| assert a.read_text(encoding="utf-8") == "content of a" | ||
| a.read_text("utf-8") # No positional arg TypeError per gh-101144. | ||
| # Also check positional encoding arg (gh-101144). | ||
| assert a.read_text("utf-8") == "content of a" | ||
| assert a.read_bytes() == b"content of a" | ||
| @pass_alpharep | ||
| @@ -275,19 +262,6 @@ def test_traverse_truediv(self, alpharep): | ||
| e = root / "b" / "d" / "e.txt" | ||
| assert e.read_text(encoding="utf-8") == "content of e" | ||
| @pass_alpharep | ||
| def test_traverse_simplediv(self, alpharep): | ||
| """ | ||
| Disable the __future__.division when testing traversal. | ||
| """ | ||
| code = compile( | ||
| source="zipfile.Path(alpharep) / 'a'", | ||
| filename="(test)", | ||
| mode="eval", | ||
| dont_inherit=True, | ||
| ) | ||
| eval(code) | ||
| @pass_alpharep | ||
| def test_pathlike_construction(self, alpharep): | ||
| """ | ||
| @@ -356,7 +330,7 @@ def test_joinpath_constant_time(self): | ||
| # Check the file iterated all items | ||
| assert entries.count == self.HUGE_ZIPFILE_NUM_ENTRIES | ||
| # @func_timeout.func_set_timeout(3) | ||
| @set_timeout(3) | ||
| def test_implied_dirs_performance(self): | ||
| data = ['/'.join(string.ascii_lowercase + str(n)) for n in range(10000)] | ||
| zipfile.CompleteDirs._implied_dirs(data) | ||
| @@ -472,6 +446,52 @@ def test_root_unnamed(self, alpharep): | ||
| assert sub.name == "b" | ||
| assert sub.parent | ||
| @pass_alpharep | ||
| def test_match_and_glob(self, alpharep): | ||
| root = zipfile.Path(alpharep) | ||
| assert not root.match("*.txt") | ||
| assert list(root.glob("b/c.*")) == [zipfile.Path(alpharep, "b/c.txt")] | ||
| files = root.glob("**/*.txt") | ||
| assert all(each.match("*.txt") for each in files) | ||
| assert list(root.glob("**/*.txt")) == list(root.rglob("*.txt")) | ||
| def test_glob_empty(self): | ||
| root = zipfile.Path(zipfile.ZipFile(io.BytesIO(), 'w')) | ||
| with self.assertRaises(ValueError): | ||
| root.glob('') | ||
| @pass_alpharep | ||
| def test_eq_hash(self, alpharep): | ||
| root = zipfile.Path(alpharep) | ||
| assert root == zipfile.Path(alpharep) | ||
| assert root != (root / "a.txt") | ||
| assert (root / "a.txt") == (root / "a.txt") | ||
| root = zipfile.Path(alpharep) | ||
| assert root in{root} | ||
| @pass_alpharep | ||
| def test_is_symlink(self, alpharep): | ||
| """ | ||
| See python/cpython#82102 for symlink support beyond this object. | ||
| """ | ||
| root = zipfile.Path(alpharep) | ||
| assert not root.is_symlink() | ||
| @pass_alpharep | ||
| def test_relative_to(self, alpharep): | ||
| root = zipfile.Path(alpharep) | ||
| relative = root.joinpath("b", "c.txt").relative_to(root / "b") | ||
| assert str(relative) == "c.txt" | ||
| relative = root.joinpath("b", "d", "e.txt").relative_to(root / "b") | ||
| assert str(relative) == "d/e.txt" | ||
| @pass_alpharep | ||
| def test_inheritance(self, alpharep): | ||
| cls = type('PathChild', (zipfile.Path,),{}) | ||
| @@ -493,3 +513,14 @@ def test_pickle(self, alpharep, path_type, subpath): | ||
| restored_1 = pickle.loads(saved_1) | ||
| first, *rest = restored_1.iterdir() | ||
| assert first.read_text().startswith('content of ') | ||
| @pass_alpharep | ||
| def test_extract_orig_with_implied_dirs(self, alpharep): | ||
| """ | ||
| A zip file wrapped in a Path should extract even with implied dirs. | ||
| """ | ||
| source_path = self.zipfile_ondisk(alpharep) | ||
| zf = zipfile.ZipFile(source_path) | ||
| # wrap the zipfile for its side effect | ||
| zipfile.Path(zf) | ||
| zf.extractall(source_path.parent) | ||
This file contains hidden or 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
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.