-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Validate downloaded file integrity and raise ValueError on hash mismatch #8833
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
base: dev
Are you sure you want to change the base?
Changes from all commits
d02da49
867287e
6296784
8a6b6f6
66af964
43f508b
834a8b4
51a49b0
98ccecc
29ec2fe
606e7ca
19ce7f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -42,10 +42,10 @@ def test_actions(self): | |||||||||||||||||||||||||
| with self.assertLogs(logger="monai.apps", level="ERROR"): | ||||||||||||||||||||||||||
| try: | ||||||||||||||||||||||||||
| download_url(url, filepath, wrong_md5) | ||||||||||||||||||||||||||
| except (ContentTooShortError, HTTPError, RuntimeError) as e: | ||||||||||||||||||||||||||
| if isinstance(e, RuntimeError): | ||||||||||||||||||||||||||
| except (ContentTooShortError, HTTPError, ValueError, RuntimeError) as e: | ||||||||||||||||||||||||||
| if isinstance(e, ValueError): | ||||||||||||||||||||||||||
| # FIXME: skip MD5 check as current downloading method may fail | ||||||||||||||||||||||||||
| self.assertTrue(str(e).startswith("md5 check")) | ||||||||||||||||||||||||||
| self.assertIn("hash check", str(e)) | ||||||||||||||||||||||||||
| return # skipping this test due the network connection errors | ||||||||||||||||||||||||||
|
Comment on lines
+45
to
49
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I think a separate clause makes sense despite what the original was. |
||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| try: | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,7 +79,7 @@ | |
| "unexpected EOF", # incomplete download | ||
| "network issue", | ||
| "gdown dependency", # gdown not installed | ||
| "md5 check", | ||
| "hash check", # check hash value of downloaded file | ||
| "limit", # HTTP Error 503: Egress is over the account limit | ||
| "authenticate", | ||
| "timed out", # urlopen error [Errno 110] Connection timed out | ||
|
|
@@ -182,6 +182,39 @@ def skip_if_downloading_fails(): | |
| raise unittest.SkipTest(f"Error while downloading: {rt_e}") from rt_e # incomplete download | ||
|
|
||
| raise rt_e | ||
| except ValueError as v_e: | ||
| if "hash check" in str(v_e): | ||
| raise unittest.SkipTest(f"Hash value error while downloading: {v_e}") from v_e | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| raise v_e | ||
|
|
||
|
|
||
| SAMPLE_TIFF = "https://huggingface.co/datasets/MONAI/testing_data/resolve/main/CMU-1.tiff" | ||
| SAMPLE_TIFF_HASH = "73a7e89bc15576587c3d68e55d9bf92f09690280166240b48ff4b48230b13bcd" | ||
| SAMPLE_TIFF_HASH_TYPE = "sha256" | ||
|
|
||
|
|
||
| class TestDownloadUrl(unittest.TestCase): | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have a conflict now from your previous PR being merged. These two classes possibly need to be merged as the two tests are different. |
||
| """Exercise ``download_url`` success and hash-mismatch paths.""" | ||
|
|
||
| def test_download_url(self): | ||
| """ | ||
| Download a sample TIFF and validate hash handling. | ||
| """ | ||
| with tempfile.TemporaryDirectory() as tempdir: | ||
| model_path = os.path.join(tempdir, "model.tiff") | ||
|
|
||
| with skip_if_downloading_fails(): | ||
| download_url( | ||
| url=SAMPLE_TIFF, filepath=model_path, hash_val=SAMPLE_TIFF_HASH, hash_type=SAMPLE_TIFF_HASH_TYPE | ||
| ) | ||
|
|
||
| # Verify file exists before testing hash mismatch | ||
| if not os.path.exists(model_path): | ||
| self.skipTest("File was not downloaded successfully") | ||
|
|
||
| with self.assertRaises(ValueError): | ||
| download_url(url=SAMPLE_TIFF, filepath=model_path, hash_val="0" * 64, hash_type=SAMPLE_TIFF_HASH_TYPE) | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
|
|
||
| SAMPLE_TIFF = "https://huggingface.co/datasets/MONAI/testing_data/resolve/main/CMU-1.tiff" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.