Merge pull request #842 from filecoin-project/feat/bench-bps
Add test cases
This commit is contained in:
commit
26b41dd138
@ -20,5 +20,5 @@ func SizeStr(size types.BigInt) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
f, _ := r.Float64()
|
f, _ := r.Float64()
|
||||||
return fmt.Sprintf("%.3f %s", f, Units[i])
|
return fmt.Sprintf("%.3g %s", f, Units[i])
|
||||||
}
|
}
|
||||||
|
27
cli/utils_test.go
Normal file
27
cli/utils_test.go
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
types "github.com/filecoin-project/lotus/chain/types"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSizeStr(t *testing.T) {
|
||||||
|
cases := []struct {
|
||||||
|
in uint64
|
||||||
|
out string
|
||||||
|
}{
|
||||||
|
{0, "0 B"},
|
||||||
|
{1, "1 B"},
|
||||||
|
{1024, "1 KiB"},
|
||||||
|
{2000, "1.95 KiB"},
|
||||||
|
{5 << 20, "5 MiB"},
|
||||||
|
{11 << 60, "11 EiB"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, c := range cases {
|
||||||
|
assert.Equal(t, c.out, SizeStr(types.NewInt(c.in)), "input %+v, produced wrong result", c)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user