forked from infobloxopen/atlas-app-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiltering_lexer_test.go
76 lines (69 loc) · 1.48 KB
/
filtering_lexer_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
package query
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFilteringLexer(t *testing.T) {
lexer := NewFilteringLexer(`()14 13.23 'abc'"bcd" field1 and or not == eq ne != match ~ nomatch !~ gt > ge >= lt < le <= null := ieq [1,5, 6] ['Hello','World'] in '''""' """''"`)
tests := []Token{
LparenToken{},
RparenToken{},
NumberToken{Value: 14},
NumberToken{Value: 13.23},
StringToken{Value: "abc"},
StringToken{Value: "bcd"},
FieldToken{Value: "field1"},
AndToken{},
OrToken{},
NotToken{},
EqToken{},
EqToken{},
NeToken{},
NeToken{},
MatchToken{},
MatchToken{},
NmatchToken{},
NmatchToken{},
GtToken{},
GtToken{},
GeToken{},
GeToken{},
LtToken{},
LtToken{},
LeToken{},
LeToken{},
NullToken{},
InsensitiveEqToken{},
InsensitiveEqToken{},
NumberArrayToken{Values: []float64{1, 5, 6}},
StringArrayToken{Values: []string{"Hello", "World"}},
InToken{},
// duplicate terminator to escape
StringToken{Value: `'""`},
StringToken{Value: `"''`},
EOFToken{},
}
for _, test := range tests {
token, err := lexer.NextToken()
assert.Equal(t, test, token)
assert.Nil(t, err)
}
}
func TestFilteringLexerNegative(t *testing.T) {
tests := []string{
"=!",
"!!",
"%",
"'string",
"[]",
"['Hello', 1, 2]",
"[1, 2",
"['Hello'",
}
for _, test := range tests {
lexer := NewFilteringLexer(test)
token, err := lexer.NextToken()
assert.Nil(t, token)
assert.IsType(t, &UnexpectedSymbolError{}, err)
}
}