-
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
88f8372
e9861d3
453b238
64b8e09
096c6d0
e8e1f4b
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 |
|---|---|---|
|
|
@@ -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,37 +182,11 @@ 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: | ||
|
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. I think this shouldn't be here as it confuses what's being tested, my original comment was about not ignoring failed hash checks. We want to consider whether the download succeeds separately from whether the hash check succeeds. If the hash check fails then |
||
| 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.
|
||
|
|
||
|
|
||
| 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): | ||
| """Exercise ``download_url`` success and hash-mismatch paths.""" | ||
|
|
||
| def test_download_url(self): | ||
| """Download a sample TIFF and validate hash handling. | ||
|
|
||
| Raises: | ||
| RuntimeError: When the downloaded file's hash does not match. | ||
| """ | ||
| with tempfile.TemporaryDirectory() as tempdir: | ||
| with skip_if_downloading_fails(): | ||
| download_url( | ||
| url=SAMPLE_TIFF, | ||
| filepath=os.path.join(tempdir, "model.tiff"), | ||
| hash_val=SAMPLE_TIFF_HASH, | ||
| hash_type=SAMPLE_TIFF_HASH_TYPE, | ||
| ) | ||
| with self.assertRaises(RuntimeError): | ||
| download_url( | ||
| url=SAMPLE_TIFF, | ||
| filepath=os.path.join(tempdir, "model_bad.tiff"), | ||
| hash_val="0" * 64, | ||
| hash_type=SAMPLE_TIFF_HASH_TYPE, | ||
| ) | ||
| raise v_e | ||
|
|
||
|
|
||
| def test_pretrained_networks(network, input_param, device): | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's newish syntax to make this a little cleaner if you wanted to use it.