Skip to content

Commit

Permalink
Merge pull request #7 from iterative/test-utils
Browse files Browse the repository at this point in the history
tests: cover human_readable_to_bytes function
  • Loading branch information
efiop authored Aug 19, 2022
2 parents a29854a + 993f301 commit 49bc497
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions dvc_s3/tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import pytest

from dvc_s3 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)

0 comments on commit 49bc497

Please sign in to comment.