-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmock_test.go
181 lines (174 loc) · 3.71 KB
/
mock_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
package mock
import (
"testing"
)
type namedFunc struct {
Name string
Func func() string
}
func TestAdd(t *testing.T) {
cases := []struct {
Name string
Funcs []namedFunc
NextArgs []string
Expected []func() string
}{
{
Name: "single",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1"},
Expected: []func() string{f1},
},
{
Name: "multiple",
Funcs: []namedFunc{{"f1", f1}, {"f2", f2}},
NextArgs: []string{"f1", "f2"},
Expected: []func() string{f1, f2},
},
{
Name: "nofunc",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f2"},
Expected: []func() string{nil},
},
{
Name: "consumed",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1", "f1"},
Expected: []func() string{f1, nil},
},
{
Name: "out-of-order",
Funcs: []namedFunc{{"f1", f1}, {"f2", f2}, {"f1", f1}},
NextArgs: []string{"f1", "f2", "f2"},
Expected: []func() string{f1, f2, nil},
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
m := New()
for _, nf := range c.Funcs {
m.Add(nf.Name, nf.Func)
}
for i, a := range c.NextArgs {
got := m.Next(a)
compareFuncs(t, got, c.Expected[i])
}
})
}
}
func TestSet(t *testing.T) {
cases := []struct {
Name string
Funcs []namedFunc
NextArgs []string
Expected []func() string
}{
{
Name: "single",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1"},
Expected: []func() string{f1},
},
{
Name: "multiple",
Funcs: []namedFunc{{"f1", f1}, {"f2", f2}},
NextArgs: []string{"f1", "f2"},
Expected: []func() string{f1, f2},
},
{
Name: "nofunc",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f2"},
Expected: []func() string{nil},
},
{
Name: "permanent",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1", "f1"},
Expected: []func() string{f1, f1},
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
m := New()
for _, nf := range c.Funcs {
m.Set(nf.Name, nf.Func)
}
for i, a := range c.NextArgs {
got := m.Next(a)
compareFuncs(t, got, c.Expected[i])
}
})
}
}
func TestHasMore(t *testing.T) {
cases := []struct {
Name string
Funcs []namedFunc
NextArgs []string
Expected []bool
}{
{
Name: "no sequence",
Expected: []bool{false},
},
{
Name: "single",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1"},
Expected: []bool{true, false},
},
{
Name: "multiple",
Funcs: []namedFunc{{"f1", f1}, {"f2", f2}},
NextArgs: []string{"f1", "f2"},
Expected: []bool{true, true, false},
},
{
Name: "nofunc",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f2"},
Expected: []bool{true, true},
},
{
Name: "consumed",
Funcs: []namedFunc{{"f1", f1}},
NextArgs: []string{"f1", "f1"},
Expected: []bool{true, false, false},
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
m := New()
for _, nf := range c.Funcs {
m.Add(nf.Name, nf.Func)
}
if c.Expected[0] != m.HasMore() {
t.Errorf("HasMore() should be %v", c.Expected[0])
}
for i, a := range c.NextArgs {
m.Next(a)
got := m.HasMore()
if got != c.Expected[i+1] {
t.Errorf("got %v, want %v", got, c.Expected[i])
}
}
})
}
}
func compareFuncs(t *testing.T, got interface{}, expected func() string) {
if got == nil && expected == nil {
return
}
f, ok := got.(func() string)
if !ok {
t.Errorf("got %v, want func() string", got)
return
}
if f() != expected() {
t.Errorf("got %s %p, expected %s %p", f(), got, expected(), expected)
}
}
func f1() string { return "f1" }
func f2() string { return "f2" }