This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
operator_test.go
168 lines (159 loc) · 3.69 KB
/
operator_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
package mingo
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestQueryOperatorEq(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type.ranking": 10,
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": Object{
"ranking": 10,
},
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": "something",
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorNe(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type": Object{
"$ne": "ranking",
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": "something",
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": "ranking",
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorGt(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type": Object{
"$gt": 20,
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": 21,
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": 20,
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorGte(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type": Object{
"$gte": 20,
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": 20,
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": 19,
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorLt(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type": Object{
"$lt": 20,
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": 19,
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": 20,
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorLte(t *testing.T) {
Convey("Given an expression containing a comparison", t, func() {
query := Query{Criteria: Object{
"type": Object{
"$lte": 20,
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": 20,
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": 21,
}
So(query.Test(data), ShouldEqual, false)
})
})
}
func TestQueryOperatorAnd(t *testing.T) {
Convey("Given an expression containing an AND operator", t, func() {
query := Query{Criteria: Object{
"type": "ranking",
"$and": []Object{
Object{
"score": Object{
"$gt": 5,
},
},
},
}}
Convey("Where the dataset matches the expression", func() {
data := Object{
"type": "ranking",
"score": 10,
}
So(query.Test(data), ShouldEqual, true)
})
Convey("Where the dataset does not match the expression", func() {
data := Object{
"type": "ranking",
"score": 5,
}
So(query.Test(data), ShouldEqual, false)
})
})
}