diff options
author | Keuin <[email protected]> | 2022-09-16 21:57:59 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-09-16 21:57:59 +0800 |
commit | 495c915632d6b52e45dae4892d1e981468ad8ef6 (patch) | |
tree | 669e164275461de687f995adb35d95b802183499 /common/bytesize_test.go | |
parent | e90c6173b77074d097415184568444cc16a33540 (diff) |
Add tests.v0.3.4
Diffstat (limited to 'common/bytesize_test.go')
-rw-r--r-- | common/bytesize_test.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/bytesize_test.go b/common/bytesize_test.go new file mode 100644 index 0000000..b68ee4c --- /dev/null +++ b/common/bytesize_test.go @@ -0,0 +1,24 @@ +package common + +import ( + "testing" +) + +func TestPrettyBytes(t *testing.T) { + tests := []struct { + Expected string + Actual string + }{ + {"128 Byte", PrettyBytes(128)}, + {"128.00 KiB", PrettyBytes(128 * 1024)}, + {"128.00 MiB", PrettyBytes(128 * 1024 * 1024)}, + {"128.00 GiB", PrettyBytes(128 * 1024 * 1024 * 1024)}, + {"128.00 TiB", PrettyBytes(128 * 1024 * 1024 * 1024 * 1024)}, + {"131072.00 TiB", PrettyBytes(128 * 1024 * 1024 * 1024 * 1024 * 1024)}, + } + for i, tc := range tests { + if tc.Expected != tc.Actual { + t.Fatalf("Test %v failed: %v", i, tc) + } + } +} |