forked from irccom/script-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testfw.go
499 lines (422 loc) · 12.6 KB
/
testfw.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
// 2019 Daniel Oaks <daniel@danieloaks.net>
// released under the MIT license
package main
import (
"crypto/tls"
"fmt"
"io"
"io/ioutil"
"log"
"sort"
"strings"
"github.com/pkg/browser"
"github.com/goshuirc/irc-go/ircmsg"
colorable "github.com/mattn/go-colorable"
docopt "github.com/docopt/docopt-go"
"github.com/irccom/script-runner/lib"
"github.com/mgutz/ansi"
)
// client colour, server colour
var ansiColorSchemes = [][]string{
{"red+b", "red"},
{"cyan+b", "cyan"},
{"green+b", "green"},
{"magenta+b", "magenta"},
{"blue+b", "blue"},
{"yellow+b", "yellow"},
}
func main() {
usage := `testfw.
Usage:
testfw run [options] <address> <script-filename>
testfw run-multi [options] <settings-filename> <script-filename>
testfw print <script-filename>
testfw -h | --help
testfw --version
Options:
--tls Connect using TLS.
--tls-noverify Don't verify the provided TLS certificates.
--no-colours Disable coloured output.
--browser Open the result HTML in the browser.
--debug Output extra debug lines.
-h --help Show this screen.
--version Show version.`
arguments, _ := docopt.ParseDoc(usage)
scriptFilename := arguments["<script-filename>"].(string)
if arguments["print"].(bool) {
// read script
scriptBytes, err := ioutil.ReadFile(scriptFilename) // just pass the file name
if err != nil {
log.Fatal(err)
}
scriptString := string(scriptBytes)
script, err := lib.ReadScript(scriptString)
if err != nil {
log.Fatal(err)
}
// print script
fmt.Println(script.String())
}
if arguments["run"].(bool) {
address := arguments["<address>"].(string)
useColours := !arguments["--no-colours"].(bool)
// read script
scriptBytes, err := ioutil.ReadFile(scriptFilename) // just pass the file name
if err != nil {
log.Fatal(err)
}
scriptString := string(scriptBytes)
script, err := lib.ReadScript(scriptString)
if err != nil {
log.Fatal(err)
}
// assign output colours to clients
clientColours := map[string][]string{}
colourableStdout := colorable.NewColorableStdout()
if useColours {
// ensure colours are applied consistently
var clientIDsSorted []string
for id := range script.Clients {
clientIDsSorted = append(clientIDsSorted, id)
}
sort.Strings(clientIDsSorted)
var colSchemeI int
for _, id := range clientIDsSorted {
clientColours[id] = ansiColorSchemes[colSchemeI]
colSchemeI++
if len(ansiColorSchemes) <= colSchemeI {
colSchemeI = 0
}
}
}
// get additional connection config
useTLS := arguments["--tls"].(bool)
var tlsConfig *tls.Config
if arguments["--tls-noverify"].(bool) {
tlsConfig = &tls.Config{
InsecureSkipVerify: true,
}
}
// make clients and connect 'em to the server
sockets := make(map[string]*lib.Socket)
for id := range script.Clients {
socket, err := lib.ConnectSocket(address, useTLS, tlsConfig)
if err != nil {
log.Fatal("Could not connect client:", err.Error())
}
sockets[id] = socket
}
// run through actions
for actionI, action := range script.Actions {
socket := sockets[action.Client]
// send line
if action.LineToSend != "" {
socket.SendLine(action.LineToSend)
line := fmt.Sprintf("%s -> %s", action.Client, action.LineToSend)
if useColours {
line = ansi.Color(line, clientColours[action.Client][0])
fmt.Fprintln(colourableStdout, line)
} else {
fmt.Println(line)
}
}
// wait for response
if 0 < len(action.WaitAfterFor) {
for {
lineString, err := socket.GetLine()
if err != nil {
log.Fatal(fmt.Sprintf("Could not get line from server on action %d (%s):", actionI, action.Client), err.Error())
}
line, err := ircmsg.ParseLine(lineString)
if err != nil {
log.Fatal(fmt.Sprintf("Got malformed line from server on action %d (%s): [%s]", actionI, action.Client, lineString), err.Error())
}
verb := strings.ToLower(line.Command)
// auto-respond to pings... in a dodgy, hacky way :<
if verb == "ping" {
socket.SendLine(fmt.Sprintf("PONG :%s", line.Params[0]))
continue
}
out := fmt.Sprintf("%s <- %s", action.Client, lineString)
if useColours {
out = ansi.Color(out, clientColours[action.Client][1])
fmt.Fprintln(colourableStdout, out)
} else {
fmt.Println(out)
}
// found an action we're waiting for
if action.WaitAfterFor[verb] {
break
}
}
}
}
// disconnect
for _, socket := range sockets {
socket.SendLine("QUIT")
socket.Disconnect()
}
}
if arguments["run-multi"].(bool) {
// read script
scriptBytes, err := ioutil.ReadFile(scriptFilename) // just pass the file name
if err != nil {
log.Fatal(err)
}
scriptString := string(scriptBytes)
script, err := lib.ReadScript(scriptString)
if err != nil {
log.Fatal(err)
}
// load config
config, err := lib.LoadConfigFromFile(arguments["<settings-filename>"].(string))
if err != nil {
log.Fatalf("Could not read config: %s", err.Error())
}
// test out each server in order
var serverIDsSorted []string
for id := range config.Servers {
serverIDsSorted = append(serverIDsSorted, id)
}
sort.Strings(serverIDsSorted)
// make ScriptResults store
scriptResults := make(map[string]*lib.ScriptResults)
// print debug lines to work out exact output issues
debug := arguments["--debug"].(bool)
for _, id := range serverIDsSorted {
info := config.Servers[id]
fmt.Print("- ", info.DisplayName, " ...")
// make script results
sr := lib.NewScriptResults()
// get additional connection config
var tlsConfig *tls.Config
if info.TLSSkipVerify {
tlsConfig = &tls.Config{
InsecureSkipVerify: true,
}
}
// make clients and connect 'em to the server
if debug {
fmt.Print("\n")
}
sockets := make(map[string]*lib.Socket)
for id := range script.Clients {
socket, err := lib.ConnectSocket(info.Address, info.UseTLS, tlsConfig)
if err != nil {
log.Fatal("Could not connect client:", err.Error())
}
sockets[id] = socket
if debug {
fmt.Println("Connected client", id)
}
}
// registered tracks so we can switch to ping tracking (much more accurate)
registered := make(map[string]bool)
// used to let clients properly wait for other clients to receive responses
var lastClientSent string
// run through actions
var isDisconnected bool
for actionI, action := range script.Actions {
socket := sockets[action.Client]
// plain wait for disconnection
if action.LineToSend == "" && action.SpecialActionType == lib.WaitForDisconnect {
if debug {
fmt.Println(action.Client, "waiting for disconnection")
}
for {
lineString, err := socket.GetLine()
if err != nil {
if err == io.EOF || err == lib.ErrorDisconnected {
isDisconnected = true
break
} else {
log.Fatal(fmt.Sprintf("Could not get line from server on action %d (%s):", actionI, action.Client), err.Error())
}
}
line, err := ircmsg.ParseLine(lineString)
if err != nil {
log.Fatal(fmt.Sprintf("Got malformed line from server on action %d (%s): [%s]", actionI, action.Client, lineString), err.Error())
}
verb := strings.ToLower(line.Command)
// auto-respond to pings... in a dodgy, hacky way :<
if verb == "ping" {
socket.SendLine(fmt.Sprintf("PONG :%s", line.Params[0]))
continue
}
srl := lib.ScriptResultLine{
Type: lib.ResultIRCMessage,
Client: action.Client,
RawLine: lineString,
}
sr.Lines = append(sr.Lines, srl)
if debug {
fmt.Println(" -", action.Client, "in:", verb, " ", lineString)
}
}
if isDisconnected {
srl := lib.ScriptResultLine{
Type: lib.ResultDisconnectedExpected,
Client: action.Client,
}
sr.Lines = append(sr.Lines, srl)
isDisconnected = false
break
}
continue
}
// send line
if action.LineToSend == "" {
srl := lib.ScriptResultLine{
Type: lib.ResultActionSync,
Client: action.Client,
RawLine: "",
}
sr.Lines = append(sr.Lines, srl)
} else {
if debug {
fmt.Println(action.Client, action.LineToSend)
}
socket.SendLine(action.LineToSend)
srl := lib.ScriptResultLine{
Type: lib.ResultActionSync,
Client: action.Client,
RawLine: action.LineToSend,
}
sr.Lines = append(sr.Lines, srl)
if debug {
fmt.Println(" -> sending")
}
lastClientSent = action.Client
}
// wait for response in old way
if 0 < len(action.WaitAfterFor) && (!registered[action.Client] || lastClientSent != action.Client) {
if debug {
fmt.Println(" -", action.Client, "waiting in old way")
}
for {
lineString, err := socket.GetLine()
if err != nil {
if err == io.EOF || err == lib.ErrorDisconnected {
isDisconnected = true
break
} else {
log.Fatal(fmt.Sprintf("Could not get line from server on action %d (%s):", actionI, action.Client), err.Error())
}
}
line, err := ircmsg.ParseLine(lineString)
if err != nil {
log.Fatal(fmt.Sprintf("Got malformed line from server on action %d (%s): [%s]", actionI, action.Client, lineString), err.Error())
}
verb := strings.ToLower(line.Command)
// auto-respond to pings... in a dodgy, hacky way :<
if verb == "ping" {
socket.SendLine(fmt.Sprintf("PONG :%s", line.Params[0]))
continue
}
// mark registered
if verb == "001" {
registered[action.Client] = true
}
srl := lib.ScriptResultLine{
Type: lib.ResultIRCMessage,
Client: action.Client,
RawLine: lineString,
}
sr.Lines = append(sr.Lines, srl)
if debug {
fmt.Println(" -", action.Client, "in:", verb, " ", lineString)
}
// found an action we're waiting for
if action.WaitAfterFor[verb] {
if debug {
fmt.Println(" -", action.Client, "in break")
}
break
}
}
}
// wait for response in new way once registered
syncPingString := fmt.Sprintf("sync%d", actionI)
if !isDisconnected && registered[action.Client] {
socket.Send(nil, "", "PING", syncPingString)
if debug {
fmt.Println(" -", action.Client, "waiting in new way")
}
for {
lineString, err := socket.GetLine()
if err != nil {
if err == io.EOF || err == lib.ErrorDisconnected {
isDisconnected = true
break
} else {
log.Fatal(fmt.Sprintf("Could not get new line from server on action %d (%s):", actionI, action.Client), err.Error())
}
}
line, err := ircmsg.ParseLine(lineString)
if err != nil {
log.Fatal(fmt.Sprintf("Got malformed new line from server on action %d (%s): [%s]", actionI, action.Client, lineString), err.Error())
}
verb := strings.ToLower(line.Command)
// if response
if verb == "pong" && line.Params[1] == syncPingString {
break
}
// auto-respond to pings... in a dodgy, hacky way :<
if verb == "ping" {
socket.SendLine(fmt.Sprintf("PONG :%s", line.Params[0]))
continue
}
srl := lib.ScriptResultLine{
Type: lib.ResultIRCMessage,
Client: action.Client,
RawLine: lineString,
}
sr.Lines = append(sr.Lines, srl)
if debug {
fmt.Println(" -", action.Client, "in:", verb, " ", lineString)
}
}
}
if isDisconnected {
if action.SpecialActionType == lib.WaitForDisconnect {
srl := lib.ScriptResultLine{
Type: lib.ResultDisconnectedExpected,
Client: action.Client,
}
sr.Lines = append(sr.Lines, srl)
isDisconnected = false
} else {
srl := lib.ScriptResultLine{
Type: lib.ResultDisconnected,
Client: action.Client,
}
sr.Lines = append(sr.Lines, srl)
break
}
}
}
// disconnect
for _, socket := range sockets {
socket.SendLine("QUIT")
socket.Disconnect()
}
// store results
scriptResults[id] = sr
// print done line
fmt.Println("OK!")
}
// create result file
output := lib.HTMLFromResults(script, config.Servers, scriptResults)
// output all results as a HTML file
tmpfile, err := ioutil.TempFile("", "irc-test-framework.*.html")
if err != nil {
log.Fatal(err)
}
tmpfile.WriteString(output)
tmpfile.Close()
fmt.Println("\nResults are in:", tmpfile.Name())
if arguments["--browser"].(bool) {
browser.OpenFile(tmpfile.Name())
}
}
}