mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-19 07:30:50 +00:00
64 lines
3.7 KiB
Go
64 lines
3.7 KiB
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package contexttest
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forgejo.org/modules/translation"
|
||
|
"forgejo.org/modules/translation/i18n"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestPluralStringsForClient(t *testing.T) {
|
||
|
mockLocale := translation.MockLocale{}
|
||
|
mockLocale.MockTranslations = map[string]string{
|
||
|
"relativetime.mins" + i18n.PluralFormSeparator + "one": "%d minute ago",
|
||
|
"relativetime.hours" + i18n.PluralFormSeparator + "one": "%d hour ago",
|
||
|
"relativetime.days" + i18n.PluralFormSeparator + "one": "%d day ago",
|
||
|
"relativetime.weeks" + i18n.PluralFormSeparator + "one": "%d week ago",
|
||
|
"relativetime.months" + i18n.PluralFormSeparator + "one": "%d month ago",
|
||
|
"relativetime.years" + i18n.PluralFormSeparator + "one": "%d year ago",
|
||
|
"relativetime.mins" + i18n.PluralFormSeparator + "other": "%d minutes ago",
|
||
|
"relativetime.hours" + i18n.PluralFormSeparator + "other": "%d hours ago",
|
||
|
"relativetime.days" + i18n.PluralFormSeparator + "other": "%d days ago",
|
||
|
"relativetime.weeks" + i18n.PluralFormSeparator + "other": "%d weeks ago",
|
||
|
"relativetime.months" + i18n.PluralFormSeparator + "other": "%d months ago",
|
||
|
"relativetime.years" + i18n.PluralFormSeparator + "other": "%d years ago",
|
||
|
}
|
||
|
|
||
|
ctx, _ := MockContext(t, "/")
|
||
|
ctx.Locale = mockLocale
|
||
|
assert.True(t, ctx.Locale.HasKey("relativetime.mins"))
|
||
|
assert.True(t, ctx.Locale.HasKey("relativetime.weeks"))
|
||
|
assert.Equal(t, "%d minutes ago", ctx.Locale.TrString("relativetime.mins"+i18n.PluralFormSeparator+"other"))
|
||
|
assert.Equal(t, "%d week ago", ctx.Locale.TrString("relativetime.weeks"+i18n.PluralFormSeparator+"one"))
|
||
|
|
||
|
assert.Empty(t, ctx.PageData)
|
||
|
ctx.PageData["PLURALSTRINGS_LANG"] = map[string][]string{}
|
||
|
assert.Empty(t, ctx.PageData["PLURALSTRINGS_LANG"])
|
||
|
|
||
|
ctx.AddPluralStringsToPageData([]string{"relativetime.mins", "relativetime.hours"})
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"], 2)
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"], 2)
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.hours"], 2)
|
||
|
assert.Equal(t, "%d minute ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"][0])
|
||
|
assert.Equal(t, "%d minutes ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"][1])
|
||
|
assert.Equal(t, "%d hour ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.hours"][0])
|
||
|
assert.Equal(t, "%d hours ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.hours"][1])
|
||
|
|
||
|
ctx.AddPluralStringsToPageData([]string{"relativetime.years", "relativetime.days"})
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"], 4)
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"], 2)
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.days"], 2)
|
||
|
assert.Len(t, ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.years"], 2)
|
||
|
assert.Equal(t, "%d minute ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"][0])
|
||
|
assert.Equal(t, "%d minutes ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.mins"][1])
|
||
|
assert.Equal(t, "%d day ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.days"][0])
|
||
|
assert.Equal(t, "%d days ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.days"][1])
|
||
|
assert.Equal(t, "%d year ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.years"][0])
|
||
|
assert.Equal(t, "%d years ago", ctx.PageData["PLURALSTRINGS_LANG"].(map[string][]string)["relativetime.years"][1])
|
||
|
}
|