-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilterql_test.go
135 lines (128 loc) · 2.65 KB
/
filterql_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
package filterql
import (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestQuerStringParser(t *testing.T) {
testTable := []struct {
testName string
queryStr string
filters map[string]string
exp []FilteredResult
}{
{
testName: "Only one filter with no logical or comparison operator",
queryStr: "name=yanik%20blake",
filters: map[string]string{
"name": "string",
},
exp: []FilteredResult{
{
Field: "name",
Type: "string",
Value: "yanik blake",
Operator: " = ",
Condition: " AND ",
},
},
},
{
testName: "Only one filter with no logical or comparison operator",
queryStr: "first_name=yanik",
filters: map[string]string{
"first_name": "string",
"last_name": "string",
"age": "int",
},
exp: []FilteredResult{
{
Field: "first_name",
Type: "string",
Value: "yanik",
Operator: " = ",
Condition: " AND ",
},
},
},
{
testName: "Multiple Filters",
queryStr: "first_name=yanik:eq:and&last_name=black:eq&height=172.5",
filters: map[string]string{
"first_name": "string",
"last_name": "string",
"height": "float",
},
exp: []FilteredResult{
{
Field: "first_name",
Type: "string",
Value: "yanik",
Operator: " = ",
Condition: " AND ",
},
{
Field: "last_name",
Type: "string",
Value: "black",
Operator: " = ",
Condition: " AND ",
},
{
Field: "height",
Type: "float",
Value: float64(172.5),
Operator: " = ",
Condition: " AND ",
},
},
},
{
testName: "Duplicate filters",
queryStr: "age=18:gte:and&age=28:lt",
filters: map[string]string{
"first_name": "string",
"last_name": "string",
"age": "int",
},
exp: []FilteredResult{
{
Field: "age",
Type: "int",
Value: int64(18),
Operator: " >= ",
Condition: " AND ",
},
{
Field: "age",
Type: "int",
Value: int64(28),
Operator: " < ",
Condition: " AND ",
},
},
},
{
testName: "Without Value",
queryStr: "age",
filters: map[string]string{
"age": "int",
},
exp: []FilteredResult{
{
Field: "age",
Type: "int",
Value: int64(0),
Operator: " = ",
Condition: " AND ",
},
},
},
}
//run tests
for _, data := range testTable {
result := QueryStringParser(data.queryStr, data.filters)
if !cmp.Equal(data.exp, result) {
t.Errorf("\ninput -> %s \ngot -> %v \nexp -> %v", data.queryStr, result, data.exp)
}
}
}