-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelpers_test.go
88 lines (75 loc) · 1.9 KB
/
helpers_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
package connor_test
import (
"encoding/json"
"fmt"
"strings"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/SierraSoftworks/connor"
)
type TestCases map[string][]TestCase
type TestCase struct {
Name string
Conditions interface{}
ShouldMatch bool
ShouldHaveError bool
}
func (t TestCases) Generate(test func(conditions, data map[string]interface{}) (bool, error)) {
if test == nil {
test = Match
}
for d, casesl := range t {
d := d
cases := casesl
var data map[string]interface{}
BeforeEach(func() {
Expect(json.NewDecoder(strings.NewReader(d)).Decode(&data)).To(Succeed())
})
Describe(fmt.Sprintf("with %s as data", d), func() {
for _, tc := range cases {
tc := tc
var conditions map[string]interface{}
BeforeEach(func() {
switch c := tc.Conditions.(type) {
case string:
Expect(json.NewDecoder(strings.NewReader(c)).Decode(&conditions)).To(Succeed())
case map[string]interface{}:
conditions = c
default:
Expect(tc.Conditions).To(Or(BeAssignableToTypeOf(string("")), BeAssignableToTypeOf(map[string]interface{}{})))
}
})
var (
match bool
err error
)
JustBeforeEach(func() {
match, err = test(conditions, data)
})
Context(fmt.Sprintf("and %s as a condition", tc.Conditions), func() {
Describe(fmt.Sprintf("should %s", tc.Name), func() {
if tc.ShouldHaveError {
It("should return an error", func() {
Expect(err).ToNot(Succeed())
Expect(match).To(BeFalse())
})
} else {
It("should not return an error", func() {
Expect(err).To(Succeed())
})
if tc.ShouldMatch {
It("should match", func() {
Expect(match).To(BeTrue())
})
} else {
It("shouldn't match", func() {
Expect(match).To(BeFalse())
})
}
}
})
})
}
})
}
}