-
Notifications
You must be signed in to change notification settings - Fork 37
/
i18n_test.go
121 lines (92 loc) · 2.48 KB
/
i18n_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package air
import (
"io/ioutil"
"log"
"net/http"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNewI18n(t *testing.T) {
a := New()
i := a.i18n
assert.NotNil(t, i)
assert.NotNil(t, i.a)
assert.NotNil(t, i.loadOnce)
assert.Nil(t, i.watcher)
assert.Nil(t, i.matcher)
assert.Nil(t, i.locales)
}
func TestI18nLoad(t *testing.T) {
a := New()
a.I18nEnabled = true
dir, err := ioutil.TempDir("", "air.TestI18nLoad")
assert.NoError(t, err)
assert.NotEmpty(t, dir)
defer os.RemoveAll(dir)
a.I18nLocaleRoot = dir
i := a.i18n
i.load()
assert.Nil(t, i.loadError)
assert.NotNil(t, i.watcher)
assert.NotNil(t, i.matcher)
assert.NotNil(t, i.locales)
}
func TestI18nLocalize(t *testing.T) {
a := New()
a.I18nEnabled = true
dir, err := ioutil.TempDir("", "air.TestI18nLocalize")
assert.NoError(t, err)
assert.NotEmpty(t, dir)
defer os.RemoveAll(dir)
a.I18nLocaleRoot = dir
i := a.i18n
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.I18nLocaleRoot, "en-US.toml"),
[]byte(`"Foobar" = "Foobar"`),
os.ModePerm,
))
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.I18nLocaleRoot, "en-GB.toml"),
nil,
os.ModePerm,
))
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.I18nLocaleRoot, "de-DE.ext"),
[]byte(`"Foobar" = "Fubar"`),
os.ModePerm,
))
assert.NoError(t, ioutil.WriteFile(
filepath.Join(a.I18nLocaleRoot, "zh-CN.toml"),
[]byte(`"Foobar" = "测试"`),
os.ModePerm,
))
req, _, _ := fakeRRCycle(a, http.MethodGet, "/", nil)
i.localize(req)
assert.NotNil(t, req.localizedString)
assert.Equal(t, "Foobar", req.LocalizedString("Foobar"))
assert.Equal(t, "Barfoo", req.LocalizedString("Barfoo"))
req, _, _ = fakeRRCycle(a, http.MethodGet, "/", nil)
req.Header.Set("Accept-Language", "en-GB")
i.localize(req)
assert.NotNil(t, req.localizedString)
assert.Equal(t, "Foobar", req.LocalizedString("Foobar"))
req, _, _ = fakeRRCycle(a, http.MethodGet, "/", nil)
req.Header.Set("Accept-Language", "de-DE")
i.localize(req)
assert.NotNil(t, req.localizedString)
assert.Equal(t, "Foobar", req.LocalizedString("Foobar"))
req, _, _ = fakeRRCycle(a, http.MethodGet, "/", nil)
req.Header.Set("Accept-Language", "zh-CN")
i.localize(req)
assert.NotNil(t, req.localizedString)
assert.Equal(t, "测试", req.LocalizedString("Foobar"))
a = New()
i = a.i18n
req, _, _ = fakeRRCycle(a, http.MethodGet, "/", nil)
log.SetOutput(ioutil.Discard)
i.localize(req)
log.SetOutput(os.Stderr)
assert.Error(t, i.loadError)
}