-
Notifications
You must be signed in to change notification settings - Fork 6
/
helpers_test.go
213 lines (205 loc) · 4.14 KB
/
helpers_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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
package iuliia
import (
"reflect"
"testing"
)
func Test_splitSentence(t *testing.T) {
tests := []struct {
name string
source string
want []string
}{
{
"1", "Hello, mankind!", []string{"Hello, mankind!"},
},
{
"2", "Привет человечество!", []string{"Привет", " ", "человечество", "!"},
},
{
"3", "(привет) (привет...) привет? а", []string{"(", "привет", ") (", "привет", "...) ", "привет", "? ", "а"},
},
}
funcs := []struct {
name string
fun func(source string) []string
}{
{"regex", splitSentence},
}
for _, tt := range tests {
for _, fun := range funcs {
t.Run(tt.name, func(t *testing.T) {
got := fun.fun(tt.source)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Test_splitSentence(), fun %s\ngot = %#v, want %#v", fun.name, got, tt.want)
}
})
}
}
}
func Test_splitWord(t *testing.T) {
tests := []struct {
name string
word string
want string
want1 string
}{
{
"1", "Миша", "Ми", "ша",
},
{
"2", "Ми", "Ми", "",
},
{
"3", "Ё", "Ё", "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := splitWord(tt.word)
if got != tt.want {
t.Errorf("splitWord() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("splitWord() got1 = %v, want %v", got1, tt.want1)
}
})
}
}
func Test_letterReader_readLetters(t *testing.T) {
tests := []struct {
name string
in string
out [][]rune
}{
{
name: "long",
in: "abcde",
out: [][]rune{
{rune(0), 'a', 'b'},
{'a', 'b', 'c'},
{'b', 'c', 'd'},
{'c', 'd', 'e'},
{'d', 'e', rune(0)},
},
},
{
name: "short",
in: "a",
out: [][]rune{
{rune(0), 'a', rune(0)},
},
},
{
name: "cyrillic",
in: "съешь",
out: [][]rune{
{rune(0), 'с', 'ъ'},
{'с', 'ъ', 'е'},
{'ъ', 'е', 'ш'},
{'е', 'ш', 'ь'},
{'ш', 'ь', rune(0)},
},
},
{
name: "empty",
in: "",
out: [][]rune{
{rune(0), rune(0), rune(0)},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
res := readLetters(tt.in)
if !reflect.DeepEqual(res, tt.out) {
t.Errorf("wrong result: want: %v was: %v", tt.out, res)
}
})
}
}
func TestSchemaPrinter(t *testing.T) {
tests := []struct {
name string
schemas map[string]*Schema
want string
}{
{
name: "simple positive",
schemas: map[string]*Schema{
"test schema": {Name: "schema name", Desc: "schema desc"},
"a test schema": {Name: "a test schema", Desc: "schema desc"},
},
want: "a test schema: schema desc\nschema name: schema desc\n",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := SchemaPrinter(tt.schemas); got != tt.want {
t.Errorf("\nSchemaPrinter():\n%v\nwant:\n%v", got, tt.want)
}
})
}
}
func Test_getPairs(t *testing.T) {
tests := []struct {
name string
in []rune
wantPrev string
wantCurr string
wantNext string
}{
{
name: "all letters",
in: []rune{'a', 'b', 'c'},
wantPrev: "ab",
wantCurr: "b",
wantNext: "bc",
},
{
name: "only middle",
in: []rune{rune(0), 'b', rune(0)},
wantPrev: "b",
wantCurr: "b",
wantNext: "b",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotPrev, gotCurr, gotNext := getPairs(tt.in)
if gotPrev != tt.wantPrev {
t.Errorf("getPairs() gotPrev = %v, want %v", gotPrev, tt.wantPrev)
}
if gotCurr != tt.wantCurr {
t.Errorf("getPairs() gotCurr = %v, want %v", gotCurr, tt.wantCurr)
}
if gotNext != tt.wantNext {
t.Errorf("getPairs() gotNext = %v, want %v", gotNext, tt.wantNext)
}
})
}
}
func Test_capitalize(t *testing.T) {
tests := []struct {
name string
in string
want string
}{
{
name: "positive",
in: "hello",
want: "Hello",
},
{
name: "empty",
in: "",
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := capitalize(tt.in); got != tt.want {
t.Errorf("capitalize() = %v, want %v", got, tt.want)
}
})
}
}