-
Notifications
You must be signed in to change notification settings - Fork 9
/
test.go
412 lines (346 loc) · 9.02 KB
/
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
package main
// Written in 2016 by Daniel Oaks <daniel@danieloaks.net>
//
// To the extent possible under law, the author(s) have dedicated all copyright
// and related and neighboring rights to this software to the public domain
// worldwide. This software is distributed without any warranty.
//
// You should have received a copy of the CC0 Public Domain Dedication along
// with this software. If not, see
// <http://creativecommons.org/publicdomain/zero/1.0/>.
import (
"fmt"
"io/ioutil"
"log"
"strings"
"gopkg.in/yaml.v2"
"github.com/DanielOaks/girc-go/ircmatch"
"github.com/DanielOaks/girc-go/ircmsg"
"github.com/DanielOaks/girc-go/ircutils"
"github.com/docopt/docopt-go"
)
// MsgSplitTests holds the test cases for IRC message splitting
type MsgSplitTests struct {
Tests []struct {
Input string
Atoms struct {
Source *string
Verb string
Params []string
Tags map[string]interface{}
}
}
}
// MsgJoinTests holds the test cases for IRC message assembly
type MsgJoinTests struct {
Tests []struct {
Atoms struct {
Source string
Verb string
Params []string
Tags map[string]interface{}
}
Matches []string
}
}
// MaskMatchTests holds the test cases for IRC mask matching.
type MaskMatchTests struct {
Tests []struct {
Mask string
Matches []string
Fails []string
}
}
// MaskSplitTests holds the test cases for IRC userhost splitting.
type MaskSplitTests struct {
Tests []struct {
Source string
Atoms struct {
Nick string
User string
Host string
}
}
}
// ValidateHostnameTests holds the test cases for IRC userhost splitting.
type ValidateHostnameTests struct {
Tests []struct {
Host string
Valid bool
}
}
func main() {
version := "irc-parser-tests 0.1.0"
usage := `irc-parser-tests Go script.
Usage:
test.go run
test.go -h | --help
test.go --version
Options:
-h --help Show this screen.
--version Show version.`
arguments, _ := docopt.Parse(usage, nil, true, version, false)
if arguments["run"].(bool) {
var passed int
var failed int
// msg-split tests
fmt.Println("Running split tests")
passed = 0
failed = 0
data, err := ioutil.ReadFile("tests/msg-split.yaml")
if err != nil {
log.Fatal("Could not open test file msg-split.yaml:", err.Error())
}
var msgSplitTests *MsgSplitTests
err = yaml.Unmarshal(data, &msgSplitTests)
if err != nil {
log.Fatal("Could not unmarshal msg-split.yaml test file:", err.Error())
}
for _, test := range msgSplitTests.Tests {
msg, err := ircmsg.ParseLine(test.Input)
if err != nil {
log.Fatal(
"msg-split: Test failed to parse: ",
test.Input,
)
}
if msg.Command != strings.ToUpper(test.Atoms.Verb) {
fmt.Println(
"msg.Command != test.Verb: expected",
test.Atoms.Verb,
"got",
msg.Command,
)
failed++
continue
}
if len(msg.Params) != len(test.Atoms.Params) {
fmt.Println(
"len(msg.Params) != len(test.Params): expected",
len(test.Atoms.Params),
"got",
len(msg.Params),
)
failed++
continue
}
for i, data := range test.Atoms.Params {
if msg.Params[i] != data {
fmt.Println(
"msg.Params != test.Params: expected",
test.Atoms.Params,
"got",
msg.Params,
)
failed++
continue
}
}
if test.Atoms.Source != nil && *test.Atoms.Source != msg.Prefix {
fmt.Println(
"msg.Prefix != test.Source: expected",
*test.Atoms.Source,
"got",
msg.Prefix,
)
failed++
continue
}
for name, value := range test.Atoms.Tags {
tag, exists := msg.Tags[name]
if !exists {
fmt.Println(
"Expected tag",
name,
"but does not exist",
)
failed++
continue
}
if value == nil {
if tag.HasValue {
fmt.Println(
"Tag",
name,
"is not supposed to have value, but does!",
)
failed++
continue
}
} else {
if !tag.HasValue {
fmt.Println(
"Tag",
name,
"is supposed to have value, but doesn't!",
)
failed++
continue
}
if tag.Value != value {
fmt.Println(
"Tag",
name,
"has wrong value. Expected",
value,
"got",
tag.Value,
)
failed++
continue
}
}
}
passed++
}
fmt.Println(" * Passed tests:", passed)
fmt.Println(" * Failed tests:", failed)
// msg-join tests
fmt.Println("Running join tests")
passed = 0
failed = 0
data, err = ioutil.ReadFile("tests/msg-join.yaml")
if err != nil {
log.Fatal("Could not open test file msg-join.yaml:", err.Error())
}
var msgJoinTests *MsgJoinTests
err = yaml.Unmarshal(data, &msgJoinTests)
if err != nil {
log.Fatal("Could not unmarshal msg-join.yaml test file:", err.Error())
}
for _, test := range msgJoinTests.Tests {
var tags *map[string]ircmsg.TagValue
if test.Atoms.Tags != nil {
tagsDict := make(map[string]ircmsg.TagValue)
for key, value := range test.Atoms.Tags {
if value == nil {
tagsDict[key] = ircmsg.NoTagValue()
} else {
tagsDict[key] = ircmsg.MakeTagValue(value.(string))
}
}
tags = &tagsDict
}
msg := ircmsg.MakeMessage(tags, test.Atoms.Source, test.Atoms.Verb, test.Atoms.Params...)
line, err := msg.Line()
if err != nil {
log.Fatal(
"msg-join: Test failed to parse: ",
err.Error(),
)
}
var hasPassed bool
for _, test := range test.Matches {
if strings.TrimRight(line, "\r\n") == test {
hasPassed = true
}
}
if hasPassed {
passed++
} else {
failed++
}
}
fmt.Println(" * Passed tests:", passed)
fmt.Println(" * Failed tests:", failed)
// mask matching tests
fmt.Println("Running mask matching tests")
passed = 0
failed = 0
data, err = ioutil.ReadFile("tests/mask-match.yaml")
if err != nil {
log.Fatal("Could not open test file mask-match.yaml:", err.Error())
}
var maskMatchTests *MaskMatchTests
err = yaml.Unmarshal(data, &maskMatchTests)
if err != nil {
log.Fatal("Could not unmarshal mask-match.yaml test file:", err.Error())
}
for _, test := range maskMatchTests.Tests {
mask := ircmatch.MakeMatch(test.Mask)
var testfailed bool
for _, matchString := range test.Matches {
if !mask.Match(matchString) {
fmt.Println(fmt.Sprintf("Expected mask [%s] to match input [%s] but it did not.", test.Mask, matchString))
testfailed = true
}
}
for _, matchString := range test.Fails {
if mask.Match(matchString) {
fmt.Println(fmt.Sprintf("Did not expect mask [%s] to match input [%s] but it did.", test.Mask, matchString))
testfailed = true
}
}
if testfailed {
failed++
} else {
passed++
}
}
fmt.Println(" * Passed tests:", passed)
fmt.Println(" * Failed tests:", failed)
// mask splitting tests
fmt.Println("Running userhost splitting tests")
passed = 0
failed = 0
data, err = ioutil.ReadFile("tests/userhost-split.yaml")
if err != nil {
log.Fatal("Could not open test file userhost-split.yaml:", err.Error())
}
var maskSplitTests *MaskSplitTests
err = yaml.Unmarshal(data, &maskSplitTests)
if err != nil {
log.Fatal("Could not unmarshal userhost-split.yaml test file:", err.Error())
}
for _, test := range maskSplitTests.Tests {
uh := ircutils.ParseUserhost(test.Source)
var testfailed bool
if uh.Nick != test.Atoms.Nick {
fmt.Println(fmt.Sprintf("Expected nick from userhost [%s] to match test [%s] but it was [%s].", test.Source, test.Atoms.Nick, uh.Nick))
testfailed = true
}
if uh.User != test.Atoms.User {
fmt.Println(fmt.Sprintf("Expected user from userhost [%s] to match test [%s] but it was [%s].", test.Source, test.Atoms.User, uh.User))
testfailed = true
}
if uh.Host != test.Atoms.Host {
fmt.Println(fmt.Sprintf("Expected host from userhost [%s] to match test [%s] but it was [%s].", test.Source, test.Atoms.Host, uh.Host))
testfailed = true
}
if testfailed {
failed++
} else {
passed++
}
}
fmt.Println(" * Passed tests:", passed)
fmt.Println(" * Failed tests:", failed)
// hostname validation tests
fmt.Println("Running hostname validation tests")
passed = 0
failed = 0
data, err = ioutil.ReadFile("tests/validate-hostname.yaml")
if err != nil {
log.Fatal("Could not open test file validate-hostname.yaml:", err.Error())
}
var validateHostnameTests *ValidateHostnameTests
err = yaml.Unmarshal(data, &validateHostnameTests)
if err != nil {
log.Fatal("Could not unmarshal validate-hostname.yaml test file:", err.Error())
}
for _, test := range validateHostnameTests.Tests {
isValid := ircutils.HostnameIsValid(test.Host)
if isValid == test.Valid {
passed++
} else if isValid {
fmt.Println(fmt.Sprintf("Expected host [%s] to fail validation but it passed.", test.Host))
failed++
} else {
fmt.Println(fmt.Sprintf("Expected host [%s] to pass validation but it failed.", test.Host))
failed++
}
}
fmt.Println(" * Passed tests:", passed)
fmt.Println(" * Failed tests:", failed)
}
}