-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontains_test.go
59 lines (54 loc) · 1.02 KB
/
contains_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
package connor_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/SierraSoftworks/connor"
)
var _ = Describe("$contains", func() {
It("should be registered as an operator", func() {
Expect(Operators()).To(ContainElement("contains"))
})
cases := TestCases{
`{"x":1}`: []TestCase{
{
"error if a non-string value is provided",
`{"x":{"$contains":"abc"}}`,
false,
true,
},
},
`{"x":"abc"}`: []TestCase{
{
"match a complete string",
`{"x":{"$contains":"abc"}}`,
true,
false,
},
{
"match a partial suffix",
`{"x":{"$contains":"bc"}}`,
true,
false,
},
{
"match a partial prefix",
`{"x":{"$contains":"ab"}}`,
true,
false,
},
{
"not match a different string",
`{"x":{"$contains":"xyz"}}`,
false,
false,
},
{
"not match a missing field",
`{"y":{"$contains":"xyz"}}`,
false,
false,
},
},
}
cases.Generate(nil)
})