This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
barista_test.go
723 lines (587 loc) · 22.3 KB
/
barista_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
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
// Copyright 2017 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package barista
import (
"encoding/json"
"errors"
"fmt"
"image/color"
"os"
"os/signal"
"testing"
"time"
"barista.run/bar"
"barista.run/outputs"
"barista.run/testing/mockio"
testModule "barista.run/testing/module"
"barista.run/timing"
"github.com/stretchr/testify/require"
"golang.org/x/sys/unix"
)
func TestHeader(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
require.Empty(t, mockStdout.ReadNow(), "Nothing written before Run")
go Run()
out, err := mockStdout.ReadUntil('}', time.Second)
require.Nil(t, err, "header was written")
header := make(map[string]interface{})
require.Nil(t, json.Unmarshal([]byte(out), &header), "header is valid json")
// JSON deserialises all numbers as float64.
require.Equal(t, 1, int(header["version"].(float64)), "header version == 1")
require.Equal(t, true, header["click_events"].(bool), "header click_events == true")
require.Equal(t, int(unix.SIGUSR1), int(header["stop_signal"].(float64)), "header stop_signal == USR1")
require.Equal(t, int(unix.SIGUSR2), int(header["cont_signal"].(float64)), "header cont_signal == USR2")
}
func readOutput(t *testing.T, stdout *mockio.Writable) []map[string]interface{} {
var jsonOutputs []map[string]interface{}
out, err := stdout.ReadUntil(']', time.Second)
require.Nil(t, err, "No error while reading output")
require.Nil(t, json.Unmarshal([]byte(out), &jsonOutputs), "Output is valid json")
_, err = stdout.ReadUntil(',', time.Second)
require.Nil(t, err, "outputs a comma after full bar")
_, err = stdout.ReadUntil('\n', time.Second)
require.Nil(t, err, "outputs a newline after full bar")
return jsonOutputs
}
func readOutputTexts(t *testing.T, stdout *mockio.Writable) []string {
jsonOutputs := readOutput(t, stdout)
outputs := make([]string, len(jsonOutputs))
for idx, jsonOutput := range jsonOutputs {
outputs[idx] = jsonOutput["full_text"].(string)
}
return outputs
}
func debugEvents(kind ...debugEventKind) <-chan debugEvent {
ch := make(chan debugEvent, 10)
mask := 0
for _, k := range kind {
mask |= int(k)
}
instance.debugChan = ch
instance.debugMask = mask
return ch
}
func TestSingleModule(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module := testModule.New(t)
Add(module)
go Run()
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module.AssertStarted()
module.OutputText("test")
out := readOutputTexts(t, mockStdout)
require.Equal(t, []string{"test"}, out,
"output contains an element for the module")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module.OutputText("other")
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"other"}, out,
"output updates when module sends an update")
require.Panics(t,
func() { Add(testModule.New(t)) },
"adding a module to a running bar")
}
func TestEmptyOutputs(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module1 := testModule.New(t)
module2 := testModule.New(t)
go Run(module1, module2)
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module1.AssertStarted()
module1.Output(nil)
out := readOutputTexts(t, mockStdout)
require.Empty(t, out, "all modules are empty")
module2.AssertStarted()
module2.Output(nil)
out = readOutputTexts(t, mockStdout)
require.Empty(t, out, "all modules are empty")
}
func TestMultipleModules(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module1 := testModule.New(t)
module2 := testModule.New(t)
module3 := testModule.New(t)
go Run(module1, module2, module3)
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module1.AssertStarted()
module1.OutputText("test")
out := readOutputTexts(t, mockStdout)
require.Equal(t, []string{"test"}, out,
"output contains elements only for modules that have output")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module3.AssertStarted()
module3.OutputText("module3")
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"test", "module3"}, out,
"new output repeats previous value for other modules")
module3.OutputText("new value")
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"test", "new value"}, out,
"updated output repeats previous value for other modules")
module2.AssertStarted()
module2.OutputText("middle")
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"test", "middle", "new value"}, out,
"newly updated module correctly repositions other modules")
module1.Output(nil)
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"middle", "new value"}, out,
"nil output correctly repositions other modules")
}
func multiOutput(texts ...string) bar.Output {
m := outputs.Group()
for _, text := range texts {
m.Append(bar.TextSegment(text))
}
return m
}
func TestMultiSegmentModule(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module := testModule.New(t)
go Run(module)
module.AssertStarted()
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
_, err = mockStdout.ReadUntil(']', time.Millisecond)
require.Error(t, err, "no output until module updates")
module.Output(multiOutput("1", "2", "3"))
out := readOutputTexts(t, mockStdout)
require.Equal(t, []string{"1", "2", "3"}, out,
"output contains an element for each segment")
// Implicit in the previous assertion is the fact that all segments
// are output together, not one at a time. That is, only one array is
// output with all three segments, rather than an array with 1, then
// with 1,2, then with 1,2,3, which is what would happen if we had
// three modules each output 1,2,3 respectively.
module.Output(multiOutput("2", "3"))
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"2", "3"}, out,
"bar handles a disappearing segment correctly")
module.Output(multiOutput("2", "3", "4", "5", "6"))
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"2", "3", "4", "5", "6"}, out,
"bar handles additional segments correctly")
}
func TestPauseResume(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
pauseChan := debugEvents(dEvtPaused, dEvtResumed)
module1 := testModule.New(t)
module2 := testModule.New(t)
go Run(module1, module2)
// bar resumes on start.
<-pauseChan
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
module1.AssertStarted()
module2.AssertStarted()
module1.OutputText("1")
out := readOutputTexts(t, mockStdout)
require.Equal(t, []string{"1"}, out, "Outputs before pause")
sch1 := timing.NewScheduler().After(time.Millisecond)
select {
case <-sch1.C:
case <-time.After(time.Second):
require.Fail(t, "Scheduler not triggered while bar is running")
}
unix.Kill(unix.Getpid(), unix.SIGUSR1)
require.Equal(t, dEvtPaused, (<-pauseChan).kind)
module1.OutputText("a")
module2.OutputText("b")
require.False(t, mockStdout.WaitForWrite(10*time.Millisecond),
"No output while paused, got %s", mockStdout.ReadNow())
sch1.After(time.Millisecond)
sch2 := timing.NewScheduler().After(time.Millisecond)
select {
case <-sch1.C:
require.Fail(t, "Scheduler triggered while bar is paused")
case <-sch2.C:
require.Fail(t, "Scheduler triggered while bar is paused")
case <-time.After(10 * time.Millisecond): // test passed
}
unix.Kill(unix.Getpid(), unix.SIGUSR1)
select {
case <-pauseChan:
require.Fail(t, "Pausing a paused bar is a nop")
case <-time.After(10 * time.Millisecond): // test passed.
}
unix.Kill(unix.Getpid(), unix.SIGUSR2)
require.Equal(t, dEvtResumed, (<-pauseChan).kind)
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"a", "b"}, out,
"Outputs while paused printed on resume")
select {
case <-sch1.C:
case <-time.After(time.Second):
require.Fail(t, "Scheduler not triggered after bar is resumed")
}
select {
case <-sch2.C:
case <-time.After(time.Second):
require.Fail(t, "Scheduler not triggered after bar is resumed")
}
unix.Kill(unix.Getpid(), unix.SIGUSR2)
select {
case <-pauseChan:
require.Fail(t, "Resuming a running bar is a nop")
case <-time.After(10 * time.Millisecond): // test passed.
}
unix.Kill(unix.Getpid(), unix.SIGUSR1)
require.Equal(t, dEvtPaused, (<-pauseChan).kind)
module2.OutputText("c")
require.False(t, mockStdout.WaitForWrite(10*time.Millisecond),
"No output while paused, got %s", mockStdout.ReadNow())
unix.Kill(unix.Getpid(), unix.SIGUSR2)
require.Equal(t, dEvtResumed, (<-pauseChan).kind)
out = readOutputTexts(t, mockStdout)
require.Equal(t, []string{"a", "c"}, out,
"Partial updates while paused")
}
func TestClickEvents(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module1 := testModule.New(t)
module2 := testModule.New(t)
go Run(module1, module2)
_, err := mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
mockStdin.WriteString("[")
module1.AssertStarted()
module2.AssertStarted()
module1.Output(multiOutput("1", "2", "3"))
readOutput(t, mockStdout)
module2.Output(multiOutput("a", "b", "c", "d"))
out := readOutput(t, mockStdout)
require.Equal(t, 7, len(out), "All segments in output")
module1Name := out[0]["name"].(string)
module2Name := out[3]["name"].(string)
module1.AssertNotClicked("when no click event")
module2.AssertNotClicked("when no click event")
mockStdin.WriteString(
fmt.Sprintf("{\"name\": \"%s\", \"x\": %d, \"y\": %d, \"button\": %d},",
module1Name, 13, 24, 3))
evt := module1.AssertClicked("when getting a click event")
require.Equal(t, 13, evt.ScreenX, "event value is passed through")
require.Equal(t, 24, evt.ScreenY, "event value is passed through")
require.Equal(t, bar.ButtonRight, evt.Button, "event value is passed through")
module2.AssertNotClicked("only target module receives the event")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\", ", module2Name))
module2.AssertNotClicked("until event is completely written")
mockStdin.WriteString("\"relative_x\": 9, \"relative_y\": 7")
module2.AssertNotClicked("until event is completely written")
mockStdin.WriteString("},")
evt = module2.AssertClicked("when getting a click event")
require.Equal(t, bar.Event{X: 9, Y: 7}, evt, "event values are passed through")
module1.AssertNotClicked("only target module receives the event")
mockStdin.WriteString("{\"name\":\"m/foo/bar\",\"x\":9},")
module1.AssertNotClicked("with weird module name")
module2.AssertNotClicked("with weird module name")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\"},", module1Name))
module1.AssertClicked("events are received after the weird name")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\"},", module2Name))
module2.AssertClicked("events are received after the weird name")
mockStdin.WriteString("{\"name\":\"m/8\",\"x\":9},")
module1.AssertNotClicked("with weird module name")
module2.AssertNotClicked("with weird module name")
mockStdin.WriteString("{\"name\":\"e/2/-45\",\"x\":9},")
module1.AssertNotClicked("with weird module name")
module2.AssertNotClicked("with weird module name")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\"},", module1Name))
module1.AssertClicked("events are received after the weird name")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\"},", module2Name))
module2.AssertClicked("events are received after the weird name")
module1.Close()
readOutput(t, mockStdout)
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\"},", module2Name))
module2.AssertClicked()
module1.AssertNotStarted("When a different module is clicked")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\", \"button\": 7},", module1Name))
module1.AssertNotClicked("After Close()")
module1.AssertNotStarted("On Button7 click")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\", \"button\": 1},", module1Name))
module1.AssertNotClicked("After Close(), before restart")
module1.AssertStarted("On Button1 click")
mockStdin.WriteString(fmt.Sprintf("{\"name\": \"%s\", \"button\": 1},", module1Name))
module1.AssertClicked("After restart")
}
func TestSignalHandlingSuppression(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
module := testModule.New(t)
Add(module)
require.NotPanics(t,
func() { SuppressSignals(true) },
"Can suppress signal handling before Run")
go Run()
signalChan := make(chan os.Signal, 2)
signal.Notify(signalChan, unix.SIGUSR1, unix.SIGUSR2)
out, err := mockStdout.ReadUntil('}', time.Second)
require.Nil(t, err, "header was written")
header := make(map[string]interface{})
require.Nil(t, json.Unmarshal([]byte(out), &header), "header is valid json")
// JSON deserialises all numbers as float64.
require.Equal(t, 1, int(header["version"].(float64)), "header version == 1")
require.Equal(t, true, header["click_events"].(bool), "header click_events == true")
// Ensure no signals are written in header.
_, ok := header["stop_signal"]
require.False(t, ok, "No stop_signal in header")
_, ok = header["cont_signal"]
require.False(t, ok, "No cont_signal in header")
_, err = mockStdout.ReadUntil('[', time.Second)
require.Nil(t, err, "output array started without any errors")
module.AssertStarted()
unix.Kill(unix.Getpid(), unix.SIGUSR1)
<-signalChan
module.OutputText("a")
outs := readOutputTexts(t, mockStdout)
require.Equal(t, []string{"a"}, outs,
"Not paused on USR1")
unix.Kill(unix.Getpid(), unix.SIGUSR2)
<-signalChan
require.False(t, mockStdout.WaitForWrite(10*time.Millisecond),
"USR2 is a nop")
unix.Kill(unix.Getpid(), unix.SIGUSR1)
<-signalChan
require.False(t, mockStdout.WaitForWrite(10*time.Millisecond),
"USR1 is a nop")
require.Panics(t,
func() { SuppressSignals(false) },
"Cannot suppress signal handling after Run")
signal.Stop(signalChan)
}
func TestErrorHandling(t *testing.T) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
errChan := make(chan bar.ErrorEvent)
SetErrorHandler(func(e bar.ErrorEvent) { errChan <- e })
module := testModule.New(t)
go Run(module)
module.AssertStarted()
mockStdin.WriteString("[")
mockStdout.ReadUntil('[', time.Second)
outputsWithError := outputs.Group().
Append(outputs.Errorf("foo")).
Append(outputs.Text("regular")).
Append(outputs.Text("other").Error(errors.New("bar")))
module.Output(outputsWithError)
out := readOutput(t, mockStdout)
require.Equal(t, 3, len(out), "All segments in output")
errorSegmentName := out[0]["name"].(string)
regularSegmentName := out[1]["name"].(string)
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s"},`, regularSegmentName))
module.AssertClicked("on click of regular segment")
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s"},`, errorSegmentName))
module.AssertClicked("on click of error segment")
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s", "x": 4, "button": 3},`, errorSegmentName))
module.AssertNotClicked("on right click of error segment")
select {
case e := <-errChan:
require.Equal(t, "foo", e.Error.Error())
require.Equal(t, bar.Event{ScreenX: 4, Button: bar.ButtonRight}, e.Event)
case <-time.After(time.Second):
require.Fail(t, "should trigger error handler on right click")
}
require.False(t, mockStdout.WaitForWrite(10*time.Millisecond),
"click events do not cause any updates")
module.Close()
require.Equal(t, []string{"Error", "regular", "other"}, readOutputTexts(t, mockStdout),
"new outputs on module close (for updated click handling)")
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s", "button": 3},`, errorSegmentName))
module.AssertNotClicked("on right click of error segment")
select {
case e := <-errChan:
require.Equal(t, "foo", e.Error.Error())
case <-time.After(time.Second):
require.Fail(t, "should trigger error handler even after close")
}
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s", "button": 1},`, errorSegmentName))
require.Equal(t, []string{"regular"}, readOutputTexts(t, mockStdout),
"restarting clears error outputs immediately")
module.AssertStarted()
module.Output(outputsWithError)
out = readOutput(t, mockStdout)
require.Equal(t, 3, len(out), "All segments in output")
module.Close()
out = readOutput(t, mockStdout)
require.Equal(t, 3, len(out), "All segments in output")
regularSegmentName = out[1]["name"].(string)
mockStdin.WriteString(fmt.Sprintf(`{"name": "%s", "button": 1},`, regularSegmentName))
require.Equal(t, []string{"regular"}, readOutputTexts(t, mockStdout),
"restarting from regular segment also clears errors")
}
func testIoError(
t *testing.T,
setup func(*mockio.Readable, *mockio.Writable),
test func(*mockio.Readable, *mockio.Writable, *testModule.TestModule),
formatAndArgs ...interface{},
) {
mockStdin := mockio.Stdin()
mockStdout := mockio.Stdout()
TestMode(mockStdin, mockStdout)
if setup == nil {
mockStdin.WriteString("[")
} else {
setup(mockStdin, mockStdout)
}
m := testModule.New(t)
errChan := make(chan error)
Add(m)
go func(e chan<- error) {
e <- Run()
}(errChan)
if test != nil {
test(mockStdin, mockStdout, m)
}
select {
case e := <-errChan:
require.Error(t, e, formatAndArgs...)
case <-time.After(time.Second):
require.Fail(t, "Expected an error", formatAndArgs...)
}
}
func TestIOErrors(t *testing.T) {
testIoError(t,
func(in *mockio.Readable, out *mockio.Writable) {
out.ShouldError(errors.New("foo"))
}, nil, "on stdout error during startup")
testIoError(t,
func(in *mockio.Readable, out *mockio.Writable) {
in.ShouldError(errors.New("foo"))
}, nil, "on stdin error during startup")
testIoError(t,
func(in *mockio.Readable, out *mockio.Writable) {
in.WriteString("!!!")
}, nil, "on stdin starting incorrectly")
testIoError(t, nil,
func(in *mockio.Readable, out *mockio.Writable, m *testModule.TestModule) {
m.AssertStarted()
in.WriteString(`{"button":0},`)
in.ShouldError(errors.New("something"))
}, "on stdin error")
testIoError(t, nil,
func(in *mockio.Readable, out *mockio.Writable, m *testModule.TestModule) {
m.AssertStarted()
m.Output(outputs.Text("clickme"))
// consume header.
out.ReadUntil('[', time.Second)
var jsonO []map[string]interface{}
o, _ := out.ReadUntil(']', time.Second)
json.Unmarshal([]byte(o), &jsonO)
name := jsonO[0]["name"].(string)
in.WriteString(`{"button":0, "name": "` + name + `"}`)
m.AssertClicked()
in.ShouldError(errors.New("something"))
}, "on stdin error")
testIoError(t, nil,
func(in *mockio.Readable, out *mockio.Writable, m *testModule.TestModule) {
m.AssertStarted()
out.ShouldError(errors.New("something"))
m.OutputText("foo")
}, "on stdout error")
testIoError(t, nil,
func(in *mockio.Readable, out *mockio.Writable, m *testModule.TestModule) {
in.WriteString(`{"foo": $$}`)
}, "on stdin invalid json")
}
type segmentAssertions struct {
*testing.T
actual *bar.Segment
Expected map[string]string
}
func (s segmentAssertions) AssertEqual(message string) {
actualMap := make(map[string]string)
for k, v := range i3map(s.actual) {
actualMap[k] = fmt.Sprintf("%v", v)
}
require.Equal(s.T, s.Expected, actualMap, message)
}
func TestI3Map(t *testing.T) {
segment := bar.TextSegment("test")
a := segmentAssertions{t, segment, make(map[string]string)}
a.Expected["full_text"] = "test"
a.Expected["markup"] = "none"
a.AssertEqual("sets full_text")
segment2 := segment.ShortText("t")
a2 := segmentAssertions{t, segment2, make(map[string]string)}
a2.Expected["full_text"] = "test"
a2.Expected["short_text"] = "t"
a2.Expected["markup"] = "none"
a2.AssertEqual("sets short_text, does not lose full_text")
segment3 := bar.PangoSegment("<b>bold</b>")
a3 := segmentAssertions{t, segment3, make(map[string]string)}
a3.Expected["full_text"] = "<b>bold</b>"
a3.Expected["markup"] = "pango"
a3.AssertEqual("markup set for pango segment")
a.Expected["short_text"] = "t"
a.AssertEqual("mutates in place")
segment.Color(color.RGBA{0xff, 0x00, 0x00, 0xff})
a.Expected["color"] = "#ff0000"
a.AssertEqual("sets color value")
segment.Color(nil)
delete(a.Expected, "color")
a.AssertEqual("clears color value when blank")
segment.Background(nil)
a.AssertEqual("clearing unset color works")
segment.Background(color.RGBA{0x00, 0x77, 0x00, 0x77})
a.Expected["background"] = "#00ff00"
a.AssertEqual("sets background color")
segment.Border(color.Transparent)
// i3 doesn't support alpha in colours yet.
a.Expected["border"] = "#000000"
a.AssertEqual("sets border color")
segment.Align(bar.AlignStart)
a.Expected["align"] = "left"
a.AssertEqual("alignment strings are preserved")
segment.MinWidth(10)
a.Expected["min_width"] = "10"
a.AssertEqual("sets min width in px")
segment.MinWidthPlaceholder("00:00")
a.Expected["min_width"] = "00:00"
a.AssertEqual("sets min width placeholder")
// sanity check default go values.
segment.Separator(false)
a.Expected["separator"] = "false"
a.AssertEqual("separator = false")
segment.Padding(0)
a.Expected["separator_block_width"] = "0"
a.AssertEqual("separator width = 0")
segment.Urgent(false)
a.Expected["urgent"] = "false"
a.AssertEqual("urgent = false")
}