-
Notifications
You must be signed in to change notification settings - Fork 1
/
translation_test.go
143 lines (110 loc) · 2.86 KB
/
translation_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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package elrond
import (
"testing"
b "github.com/smartystreets/goconvey/convey"
)
func TestTranslation_Content(t *testing.T) {
b.Convey("get translation content by language", t, func() {
b.Convey("no content", func() {
tr := T()
langs := []Language{
ZhCN,
EnUS,
}
for _, l := range langs {
c, ok := tr.Content(l)
b.So(c, b.ShouldBeNil)
b.So(ok, b.ShouldBeFalse)
}
})
b.Convey("one content", func() {
contents := []*Content{
C(ZhCN, "bar"),
}
tr := T(contents...)
for _, c := range contents {
c, ok := tr.Content(c.Language())
b.So(c, b.ShouldEqual, c)
b.So(ok, b.ShouldBeTrue)
}
noContentLangs := []Language{
EnUS,
}
for _, l := range noContentLangs {
c, ok := tr.Content(l)
b.So(c, b.ShouldBeNil)
b.So(ok, b.ShouldBeFalse)
}
})
b.Convey("contents without duplicated language", func() {
contents := []*Content{
C(ZhCN, "foo"),
C(EnUS, "bar"),
}
tr := T(contents...)
for _, c := range contents {
c, ok := tr.Content(c.Language())
b.So(c, b.ShouldEqual, c)
b.So(ok, b.ShouldBeTrue)
}
})
})
}
func TestTranslation_Languages(t *testing.T) {
b.Convey("get translation languages", t, func() {
b.Convey("no content", func() {
tr := T()
b.So(tr.Languages(), b.ShouldBeEmpty)
})
b.Convey("one content", func() {
c := C(ZhCN, "foobar")
tr := T(c)
b.So(tr.Languages(), b.ShouldHaveLength, 1)
b.So(tr.Languages(), b.ShouldContain, c.Language())
})
b.Convey("contents without duplicated language", func() {
c1 := C(ZhCN, "foo")
c2 := C(EnUS, "bar")
tr := T(c1, c2)
b.So(tr.Languages(), b.ShouldHaveLength, 2)
b.So(tr.Languages(), b.ShouldContain, c1.Language())
b.So(tr.Languages(), b.ShouldContain, c2.Language())
})
b.Convey("contents with duplicated language", func() {
c1 := C(ZhCN, "foo")
c2 := C(ZhCN, "bar")
tr := T(c1, c2)
b.So(tr.Languages(), b.ShouldHaveLength, 1)
b.So(tr.Languages(), b.ShouldContain, c2.Language())
})
})
}
func TestT(t *testing.T) {
b.Convey("create a translation", t, func() {
b.Convey("no content", func() {
tr := T()
b.So(tr.contents, b.ShouldBeEmpty)
})
b.Convey("one content", func() {
c := C(ZhCN, "foobar")
tr := T(c)
b.So(tr.contents, b.ShouldHaveLength, 1)
b.So(tr.contents[c.Language()], b.ShouldEqual, c)
})
b.Convey("contents without duplicated language", func() {
c1 := C(ZhCN, "foo")
c2 := C(EnUS, "bar")
tr := T(c1, c2)
b.So(tr.contents, b.ShouldHaveLength, 2)
b.So(tr.contents[c1.Language()], b.ShouldEqual, c1)
b.So(tr.contents[c2.Language()], b.ShouldEqual, c2)
})
b.Convey("contents with duplicated language", func() {
c1 := C(ZhCN, "foo")
c2 := C(ZhCN, "bar")
tr := T(c1, c2)
b.So(tr.contents, b.ShouldHaveLength, 1)
b.So(tr.contents[c2.Language()], b.ShouldEqual, c2)
})
})
}