-
Notifications
You must be signed in to change notification settings - Fork 13
/
runefinder_test.go
248 lines (227 loc) · 6.96 KB
/
runefinder_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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package main
import (
"fmt"
"net/http"
"net/http/httptest"
"os"
"reflect"
"strings"
"testing"
"time"
)
const linhaLetraA = "0041;LATIN CAPITAL LETTER A;Lu;0;L;;;;;N;;;;0061;"
const linhas3Da43 = `
003D;EQUALS SIGN;Sm;0;ON;;;;;N;;;;;
003E;GREATER-THAN SIGN;Sm;0;ON;;;;;Y;;;;;
003F;QUESTION MARK;Po;0;ON;;;;;N;;;;;
0040;COMMERCIAL AT;Po;0;ON;;;;;N;;;;;
0041;LATIN CAPITAL LETTER A;Lu;0;L;;;;;N;;;;0061;
0042;LATIN CAPITAL LETTER B;Lu;0;L;;;;;N;;;;0062;
0043;LATIN CAPITAL LETTER C;Lu;0;L;;;;;N;;;;0063;
`
func TestAnalisarLinha(t *testing.T) {
runa, nome, palavras := AnalisarLinha(linhaLetraA) // ➊
if runa != 'A' {
t.Errorf("Esperado: 'A'; recebido: %q", runa)
}
const nomeA = "LATIN CAPITAL LETTER A"
if nome != nomeA {
t.Errorf("Esperado: %q; recebido: %q", nomeA, nome)
}
palavrasA := []string{"LATIN", "CAPITAL", "LETTER", "A"} // ➋
if !reflect.DeepEqual(palavras, palavrasA) { // ➌
t.Errorf("\n\tEsperado: %q\n\trecebido: %q", palavrasA, palavras) // ➍
}
}
func TestAnalisarLinhaComHífenECampo10(t *testing.T) {
var casos = []struct { // ➊
linha string
runa rune
nome string
palavras []string
}{ // ➋
{"0021;EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;",
'!', "EXCLAMATION MARK", []string{"EXCLAMATION", "MARK"}},
{"002D;HYPHEN-MINUS;Pd;0;ES;;;;;N;;;;;",
'-', "HYPHEN-MINUS", []string{"HYPHEN", "MINUS"}},
{"0027;APOSTROPHE;Po;0;ON;;;;;N;APOSTROPHE-QUOTE;;;",
'\'', "APOSTROPHE (APOSTROPHE-QUOTE)", []string{"APOSTROPHE", "QUOTE"}},
}
for _, caso := range casos { // ➌
runa, nome, palavras := AnalisarLinha(caso.linha) // ➍
if runa != caso.runa || nome != caso.nome ||
!reflect.DeepEqual(palavras, caso.palavras) {
t.Errorf("\nAnalisarLinha(%q)\n-> (%q, %q, %q)", // ➎
caso.linha, runa, nome, palavras)
}
}
}
func TestContém(t *testing.T) {
casos := []struct { // ➊
fatia []string
procurado string
esperado bool
}{ // ➋
{[]string{"A", "B"}, "B", true},
{[]string{}, "A", false},
{[]string{"A", "B"}, "Z", false}, // ➌
} // ➍
for _, caso := range casos { // ➎
recebido := contém(caso.fatia, caso.procurado) // ➏
if recebido != caso.esperado { // ➐
t.Errorf("contém(%#v, %#v) esperado: %v; recebido: %v",
caso.fatia, caso.procurado, caso.esperado, recebido) // ➑
}
}
}
func TestContémTodos(t *testing.T) {
casos := []struct { // ➊
fatia []string
procurados []string
esperado bool
}{ // ➋
{[]string{"A", "B"}, []string{"B"}, true},
{[]string{}, []string{"A"}, false},
{[]string{"A"}, []string{}, true}, // ➌
{[]string{"A", "B"}, []string{"Z"}, false},
{[]string{"A", "B", "C"}, []string{"A", "C"}, true},
{[]string{"A", "B", "C"}, []string{"A", "Z"}, false},
{[]string{"A", "B"}, []string{"A", "B", "C"}, false},
}
for _, caso := range casos {
obtido := contémTodos(caso.fatia, caso.procurados) // ➍
if obtido != caso.esperado {
t.Errorf("contémTodos(%#v, %#v)\nesperado: %v; recebido: %v",
caso.fatia, caso.procurados, caso.esperado, obtido) // ➎
}
}
}
func TestSeparar(t *testing.T) {
casos := []struct {
texto string
esperado []string
}{
{"A", []string{"A"}},
{"A B", []string{"A", "B"}},
{"A B-C", []string{"A", "B", "C"}},
}
for _, caso := range casos {
obtido := separar(caso.texto)
if !reflect.DeepEqual(obtido, caso.esperado) {
t.Errorf("separar(%q)\nesperado: %#v; recebido: %#v",
caso.texto, caso.esperado, obtido)
}
}
}
func ExampleListar() {
texto := strings.NewReader(linhas3Da43)
Listar(texto, "MARK")
// Output: U+003F ? QUESTION MARK
}
func ExampleListar_doisResultados() {
texto := strings.NewReader(linhas3Da43)
Listar(texto, "SIGN")
// Output:
// U+003D = EQUALS SIGN
// U+003E > GREATER-THAN SIGN
}
func ExampleListar_duasPalavras() {
texto := strings.NewReader(linhas3Da43)
Listar(texto, "CAPITAL LATIN")
// Output:
// U+0041 A LATIN CAPITAL LETTER A
// U+0042 B LATIN CAPITAL LETTER B
// U+0043 C LATIN CAPITAL LETTER C
}
func Example() {
oldArgs := os.Args
defer func() { os.Args = oldArgs }()
os.Args = []string{"", "cruzeiro"}
main()
// Output:
// U+20A2 ₢ CRUZEIRO SIGN
}
func Example_consultaDuasPalavras() { // ➊
oldArgs := os.Args // ➋
defer func() { os.Args = oldArgs }()
os.Args = []string{"", "cat", "smiling"}
main() // ➌
// Output:
// U+1F638 😸 GRINNING CAT FACE WITH SMILING EYES
// U+1F63A 😺 SMILING CAT FACE WITH OPEN MOUTH
// U+1F63B 😻 SMILING CAT FACE WITH HEART-SHAPED EYES
}
func Example_consultaComHífenECampo10() {
oldArgs := os.Args
defer func() { os.Args = oldArgs }()
os.Args = []string{"", "quote"}
main()
// Output:
// U+0027 ' APOSTROPHE (APOSTROPHE-QUOTE)
// U+2358 ⍘ APL FUNCTIONAL SYMBOL QUOTE UNDERBAR
// U+235E ⍞ APL FUNCTIONAL SYMBOL QUOTE QUAD
}
func restaurar(nomeVar, valor string, existia bool) {
if existia {
os.Setenv(nomeVar, valor)
} else {
os.Unsetenv(nomeVar)
}
}
func TestObterCaminhoUCD_setado(t *testing.T) {
caminhoAntes, existia := os.LookupEnv("UCD_PATH") // ➊
defer restaurar("UCD_PATH", caminhoAntes, existia) // ➋
caminhoUCD := fmt.Sprintf("./TEST%d-UnicodeData.txt", time.Now().UnixNano()) // ➌
os.Setenv("UCD_PATH", caminhoUCD) // ➍
obtido := obterCaminhoUCD() // ➎
if obtido != caminhoUCD {
t.Errorf("obterCaminhoUCD() [setado]\nesperado: %q; recebido: %q", caminhoUCD, obtido)
}
}
func TestObterCaminhoUCD_default(t *testing.T) {
caminhoAntes, existia := os.LookupEnv("UCD_PATH")
defer restaurar("UCD_PATH", caminhoAntes, existia)
os.Unsetenv("UCD_PATH") // ➊
sufixoCaminhoUCD := "/UnicodeData.txt" // ➋
obtido := obterCaminhoUCD()
if !strings.HasSuffix(obtido, sufixoCaminhoUCD) { // ➌
t.Errorf("obterCaminhoUCD() [default]\nesperado (sufixo): %q; recebido: %q", sufixoCaminhoUCD, obtido)
}
}
func TestAbrirUCD_local(t *testing.T) {
caminhoUCD := obterCaminhoUCD()
ucd, err := abrirUCD(caminhoUCD)
if err != nil {
t.Errorf("AbrirUCD(%q):\n%v", caminhoUCD, err)
}
ucd.Close()
}
func TestBaixarUCD(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(linhas3Da43))
}))
defer srv.Close()
caminhoUCD := fmt.Sprintf("./TEST%d-UnicodeData.txt", time.Now().UnixNano())
feito := make(chan bool) // ➊
go baixarUCD(srv.URL, caminhoUCD, feito) // ➋
_ = <-feito // ➌
ucd, err := os.Open(caminhoUCD)
if os.IsNotExist(err) {
t.Errorf("baixarUCD não gerou:%v\n%v", caminhoUCD, err)
}
ucd.Close()
os.Remove(caminhoUCD)
}
func TestAbrirUCD_remoto(t *testing.T) {
if testing.Short() { // ➊
t.Skip("teste ignorado [opção -test.short]") // ➋
}
caminhoUCD := fmt.Sprintf("./TEST%d-UnicodeData.txt", time.Now().UnixNano()) // ➌
ucd, err := abrirUCD(caminhoUCD)
if err != nil {
t.Errorf("AbrirUCD(%q):\n%v", caminhoUCD, err)
}
ucd.Close()
os.Remove(caminhoUCD)
}