-
Notifications
You must be signed in to change notification settings - Fork 0
/
stepdef.go
224 lines (184 loc) · 4.68 KB
/
stepdef.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
package gucumber
import (
"fmt"
"reflect"
"regexp"
"strconv"
"strings"
"github.com/gucumber/gucumber/gherkin"
)
var (
GlobalContext = Context{
Steps: []StepDefinition{},
World: map[string]interface{}{},
BeforeFilters: map[string]func(){},
AfterFilters: map[string]func(){},
Filters: []string{},
}
T Tester
World = GlobalContext.World
errNoMatchingStepFns = fmt.Errorf("no functions matched step.")
)
func Given(match string, fn interface{}) {
GlobalContext.Given(match, fn)
}
func Then(match string, fn interface{}) {
GlobalContext.Then(match, fn)
}
func When(match string, fn interface{}) {
GlobalContext.When(match, fn)
}
func And(match string, fn interface{}) {
GlobalContext.And(match, fn)
}
func Before(filter string, fn func()) {
GlobalContext.Before(filter, fn)
}
func After(filter string, fn func()) {
GlobalContext.After(filter, fn)
}
func BeforeMulti(filters []string, fn func()) {
GlobalContext.BeforeMulti(filters, fn)
}
func AfterMulti(filters []string, fn func()) {
GlobalContext.AfterMulti(filters, fn)
}
func BeforeAll(fn func()) {
GlobalContext.BeforeAll(fn)
}
func AfterAll(fn func()) {
GlobalContext.AfterAll(fn)
}
func Execute(t Tester, line string, arg string) (bool, error) {
return GlobalContext.Execute(t, line, arg)
}
type Context struct {
Filters []string
World map[string]interface{}
BeforeFilters map[string]func()
AfterFilters map[string]func()
BeforeAllFilter func()
AfterAllFilter func()
Steps []StepDefinition
T Tester
}
func (c *Context) addStep(match string, fn interface{}) {
c.Steps = append(c.Steps, StepDefinition{
Matcher: regexp.MustCompile(match),
Function: reflect.ValueOf(fn),
})
}
func (c *Context) Given(match string, fn interface{}) {
c.addStep(match, fn)
}
func (c *Context) Then(match string, fn interface{}) {
c.addStep(match, fn)
}
func (c *Context) When(match string, fn interface{}) {
c.addStep(match, fn)
}
func (c *Context) And(match string, fn interface{}) {
c.addStep(match, fn)
}
func (c *Context) Before(filter string, fn func()) {
c.BeforeFilters[filter] = fn
}
func (c *Context) After(filter string, fn func()) {
c.AfterFilters[filter] = fn
}
func (c *Context) BeforeMulti(filters []string, fn func()) {
c.BeforeFilters[strings.Join(filters, "|")] = fn
}
func (c *Context) AfterMulti(filters []string, fn func()) {
c.AfterFilters[strings.Join(filters, "|")] = fn
}
func (c *Context) BeforeAll(fn func()) {
c.BeforeAllFilter = fn
}
func (c *Context) AfterAll(fn func()) {
c.AfterAllFilter = fn
}
func (c *Context) Execute(t Tester, line string, arg string) (bool, error) {
T = t
c.T = t
found := false
for _, step := range c.Steps {
f, err := step.CallIfMatch(c, t, line, arg)
if err != nil {
return f, err
}
if f {
found = true
}
}
return found, nil
}
type StepDefinition struct {
Matcher *regexp.Regexp
Function reflect.Value
}
func (s *StepDefinition) CallIfMatch(c *Context, test Tester, line string, arg string) (bool, error) {
if match := s.Matcher.FindStringSubmatch(line); match != nil {
match = match[1:] // discard full line match
// adjust arity if there is step arg data
numArgs := len(match)
if arg != "" {
numArgs++
}
t := s.Function.Type()
if t.NumIn() > 0 && t.In(0).Kind() == reflect.Ptr {
e := t.In(0).Elem()
if e.String() == "testing.T" {
numArgs++ // first param is *testing.T
}
}
if numArgs != t.NumIn() { // function has different arity
return true, fmt.Errorf("matcher function has different arity %d != %d",
numArgs, t.NumIn())
}
values := make([]reflect.Value, numArgs)
for m, i := 0, 0; i < t.NumIn(); i++ {
param := t.In(i)
var v interface{}
switch param.Kind() {
case reflect.Slice:
param = param.Elem()
if param.String() == "gherkin.TabularData" {
v = gherkin.StringData(arg).ToTable()
} else if param.Kind() == reflect.Slice && param.Elem().Kind() == reflect.String {
// just a raw [][]string slice
v = gherkin.StringData(arg).ToTable()
}
case reflect.Ptr:
if param.Elem().String() == "testing.T" {
v = test
}
case reflect.Int:
i, _ := strconv.ParseInt(match[m], 10, 32)
v = int(i)
m++
case reflect.Int64:
v, _ = strconv.ParseInt(match[m], 10, 64)
m++
case reflect.String:
// this could be from `arg`, check match index
if m >= len(match) {
v = arg
} else {
v = match[m]
m++
}
case reflect.Float64:
v, _ = strconv.ParseFloat(match[m], 64)
m++
}
if v == nil {
panic("type " + t.String() + "is not supported.")
}
values[i] = reflect.ValueOf(v)
}
s.Function.Call(values)
return true, nil
}
return false, nil
}