mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
955 B
32 lines
955 B
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package translation
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/translation/i18n"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPrettyNumber(t *testing.T) {
|
|
// TODO: make this package friendly to testing
|
|
|
|
i18n.ResetDefaultLocales()
|
|
|
|
allLangMap = make(map[string]*LangType)
|
|
allLangMap["id-ID"] = &LangType{Lang: "id-ID", Name: "Bahasa Indonesia"}
|
|
|
|
l := NewLocale("id-ID")
|
|
assert.EqualValues(t, "1.000.000", l.PrettyNumber(1000000))
|
|
assert.EqualValues(t, "1.000.000,1", l.PrettyNumber(1000000.1))
|
|
assert.EqualValues(t, "1.000.000", l.PrettyNumber("1000000"))
|
|
assert.EqualValues(t, "1.000.000", l.PrettyNumber("1000000.0"))
|
|
assert.EqualValues(t, "1.000.000,1", l.PrettyNumber("1000000.1"))
|
|
|
|
l = NewLocale("nosuch")
|
|
assert.EqualValues(t, "1,000,000", l.PrettyNumber(1000000))
|
|
assert.EqualValues(t, "1,000,000.1", l.PrettyNumber(1000000.1))
|
|
}
|
|
|