Issue #306, File Size Mismatch

Updated utils.go to use a `1024` grouping instead of `1000` for file
sizes. This brings it inline with the progress bar project being used.

Updated utils_test.go to match the changes to utils.go
This commit is contained in:
Marcus 2020-12-07 18:44:12 -06:00
parent 5978896936
commit d735cca970
2 changed files with 3 additions and 3 deletions

View File

@ -136,7 +136,7 @@ func GetRandomName() string {
// ByteCountDecimal converts bytes to human readable byte string
func ByteCountDecimal(b int64) string {
const unit = 1000
const unit = 1024
if b < unit {
return fmt.Sprintf("%d B", b)
}

View File

@ -88,9 +88,9 @@ func TestSHA256(t *testing.T) {
}
func TestByteCountDecimal(t *testing.T) {
assert.Equal(t, "10.0 kB", ByteCountDecimal(10000))
assert.Equal(t, "10.0 kB", ByteCountDecimal(10240))
assert.Equal(t, "50 B", ByteCountDecimal(50))
assert.Equal(t, "12.4 MB", ByteCountDecimal(12378517))
assert.Equal(t, "12.4 MB", ByteCountDecimal(13002343))
}
func TestMissingChunks(t *testing.T) {