diff options
author | Keuin <[email protected]> | 2023-07-30 19:04:12 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-30 19:04:12 +0800 |
commit | 3fad4189646cca5d6db99ccfe79be695ef765d03 (patch) | |
tree | 6ab1c57a7a954dfd08afba9d2c4ab582382e0eb0 /common/pretty/bytesize_test.go | |
parent | d60bdefcabbc7fc0e0bbb690045222896f688f3f (diff) |
Refactor: extract pretty duration to a function. Create `pretty` package for creating human friendly stringsv0.5.1
Diffstat (limited to 'common/pretty/bytesize_test.go')
-rw-r--r-- | common/pretty/bytesize_test.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/pretty/bytesize_test.go b/common/pretty/bytesize_test.go new file mode 100644 index 0000000..b83f9c0 --- /dev/null +++ b/common/pretty/bytesize_test.go @@ -0,0 +1,24 @@ +package pretty + +import ( + "testing" +) + +func TestBytes(t *testing.T) { + tests := []struct { + Expected string + Actual string + }{ + {"128 Byte", Bytes(128)}, + {"128.00 KiB", Bytes(128 * 1024)}, + {"128.00 MiB", Bytes(128 * 1024 * 1024)}, + {"128.00 GiB", Bytes(128 * 1024 * 1024 * 1024)}, + {"128.00 TiB", Bytes(128 * 1024 * 1024 * 1024 * 1024)}, + {"131072.00 TiB", Bytes(128 * 1024 * 1024 * 1024 * 1024 * 1024)}, + } + for i, tc := range tests { + if tc.Expected != tc.Actual { + t.Fatalf("Test %v failed: %v", i, tc) + } + } +} |