-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: Support ~/.aws/config parsing (#5378)
* config: Support ~/.aws/config parsing * skip when the ~/.aws/config doesn't exist * Expand windows paths properly
- Loading branch information
1 parent
21200c1
commit e7cc776
Showing
5 changed files
with
202 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# https://github.com/aws/aws-cli/blob/5aa599949f60b6af554fd5714d7161aa272716f7/awscli/customizations/s3/utils.py | ||
|
||
MULTIPLIERS = { | ||
"kb": 1024, | ||
"mb": 1024 ** 2, | ||
"gb": 1024 ** 3, | ||
"tb": 1024 ** 4, | ||
"kib": 1024, | ||
"mib": 1024 ** 2, | ||
"gib": 1024 ** 3, | ||
"tib": 1024 ** 4, | ||
} | ||
|
||
|
||
def human_readable_to_bytes(value): | ||
value = value.lower() | ||
suffix = None | ||
if value.endswith(tuple(MULTIPLIERS.keys())): | ||
size = 2 | ||
size += value[-2] == "i" # KiB, MiB etc | ||
value, suffix = value[:-size], value[-size:] | ||
|
||
multiplier = MULTIPLIERS.get(suffix, 1) | ||
return int(value) * multiplier |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import pytest | ||
|
||
from dvc.utils.conversions import human_readable_to_bytes | ||
|
||
KB = 1024 | ||
MB = KB ** 2 | ||
GB = KB ** 3 | ||
TB = KB ** 4 | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"test_input, expected", | ||
[ | ||
("10", 10), | ||
("10 ", 10), | ||
("1kb", 1 * KB), | ||
("2kb", 2 * KB), | ||
("1000mib", 1000 * MB), | ||
("20gB", 20 * GB), | ||
("10Tib", 10 * TB), | ||
], | ||
) | ||
def test_conversions_human_readable_to_bytes(test_input, expected): | ||
assert human_readable_to_bytes(test_input) == expected | ||
|
||
|
||
@pytest.mark.parametrize("invalid_input", ["foo", "10XB", "1000Pb", "fooMiB"]) | ||
def test_conversions_human_readable_to_bytes_invalid(invalid_input): | ||
with pytest.raises(ValueError): | ||
human_readable_to_bytes(invalid_input) |