Add unit test for TrSize
This commit is contained in:
parent
7b24b669ed
commit
24552ee9ee
1 changed files with 20 additions and 2 deletions
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
package translation
|
package translation
|
||||||
|
|
||||||
|
// TODO: make this package friendly to testing
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -11,9 +13,25 @@ import (
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestPrettyNumber(t *testing.T) {
|
func TestTrSize(t *testing.T) {
|
||||||
// TODO: make this package friendly to testing
|
l := NewLocale("")
|
||||||
|
size := int64(1)
|
||||||
|
assert.EqualValues(t, "1 munits.data.b", l.TrSize(size).String())
|
||||||
|
size *= 2048
|
||||||
|
assert.EqualValues(t, "2 munits.data.kib", l.TrSize(size).String())
|
||||||
|
size *= 2048
|
||||||
|
assert.EqualValues(t, "4 munits.data.mib", l.TrSize(size).String())
|
||||||
|
size *= 2048
|
||||||
|
assert.EqualValues(t, "8 munits.data.gib", l.TrSize(size).String())
|
||||||
|
size *= 2048
|
||||||
|
assert.EqualValues(t, "16 munits.data.tib", l.TrSize(size).String())
|
||||||
|
size *= 2048
|
||||||
|
assert.EqualValues(t, "32 munits.data.pib", l.TrSize(size).String())
|
||||||
|
size *= 128
|
||||||
|
assert.EqualValues(t, "4 munits.data.eib", l.TrSize(size).String())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPrettyNumber(t *testing.T) {
|
||||||
i18n.ResetDefaultLocales()
|
i18n.ResetDefaultLocales()
|
||||||
|
|
||||||
allLangMap = make(map[string]*LangType)
|
allLangMap = make(map[string]*LangType)
|
||||||
|
|
Loading…
Reference in a new issue