-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathoptions_test.go
114 lines (109 loc) · 1.93 KB
/
options_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
// Copyright 2020 Frederik Zipp. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package canvas
import (
"image/color"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestOptionsApplyDefaults(t *testing.T) {
tests := []struct {
name string
opts *Options
want *Options
}{
{
"empty options",
&Options{},
&Options{
Width: 300,
Height: 150,
PageBackground: color.White,
},
},
{
"width and height given",
&Options{
Width: 800,
Height: 600,
},
&Options{
Width: 800,
Height: 600,
PageBackground: color.White,
},
},
{
"background color given",
&Options{
PageBackground: color.Black,
},
&Options{
Width: 300,
Height: 150,
PageBackground: color.Black,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := *tt.opts
got.applyDefaults()
if diff := cmp.Diff(tt.want, &got, cmp.AllowUnexported(Options{})); diff != "" {
t.Errorf("mismatch (-want +got):\n%s", diff)
}
})
}
}
func TestOptionsEventMask(t *testing.T) {
tests := []struct {
name string
opts *Options
want eventMask
}{
{
"empty options",
&Options{},
0,
},
{
"multiple events",
&Options{
EnabledEvents: []Event{
KeyUpEvent{},
MouseMoveEvent{},
TouchStartEvent{},
},
},
0b1000010001,
},
{
"keyboard events",
&Options{
EnabledEvents: []Event{
KeyboardEvent{},
},
},
0b00011000,
},
{
"mouse events",
&Options{
EnabledEvents: []Event{
MouseEvent{},
},
},
0b11100111,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.opts.eventMask()
if got != tt.want {
t.Errorf("opts.EnabledEvents = %#v\nopts.eventMask() = %#b, want: %#b",
tt.opts.EnabledEvents, got, tt.want)
}
})
}
}