forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexer_test.go
149 lines (143 loc) · 3.82 KB
/
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
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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package ottl // import "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl"
import (
"testing"
"github.com/alecthomas/participle/v2/lexer"
"github.com/stretchr/testify/assert"
)
func nameOf(def *lexer.StatefulDefinition, val lexer.TokenType) string {
for name, value := range def.Symbols() {
if val == value {
return name
}
}
return "unknown"
}
func Test_lexer(t *testing.T) {
type result struct {
typ string
val string
}
tests := []struct {
name string
input string
expectErr bool
output []result
}{
{"basic_lowercase", "abc", false, []result{
{"Lowercase", "abc"},
}},
{"basic_uppercase", "ABC", false, []result{
{"Uppercase", "ABC"},
}},
{"basic_equality", "3==4.9", false, []result{
{"Int", "3"},
{"OpComparison", "=="},
{"Float", "4.9"},
}},
{"basic_inequality", "3!=4.9", false, []result{
{"Int", "3"},
{"OpComparison", "!="},
{"Float", "4.9"},
}},
{"unambiguous_names", "foo bar BAZZ", false, []result{
{"Lowercase", "foo"},
{"Lowercase", "bar"},
{"Uppercase", "BAZZ"},
}},
{"name_containing_and", "iphone android", false, []result{
{"Lowercase", "iphone"},
{"Lowercase", "android"}, // should not parse "and" as an operator
}},
{"parse_and", "iphone and roid", false, []result{
{"Lowercase", "iphone"},
{"OpAnd", "and"}, // should parse "and" as an operator
{"Lowercase", "roid"},
}},
{"name_containing_or", "oreo corn", false, []result{
{"Lowercase", "oreo"},
{"Lowercase", "corn"}, // should not parse "or" as an operator
}},
{"parse_and_or", "if, and, or but", false, []result{
{"Lowercase", "if"},
{"Punct", ","},
{"OpAnd", "and"},
{"Punct", ","},
{"OpOr", "or"},
{"Lowercase", "but"},
}},
{"not", "true and not false", false, []result{
{"Boolean", "true"},
{"OpAnd", "and"},
{"OpNot", "not"},
{"Boolean", "false"},
}},
{"nothing_recognizable", "{}", true, []result{
{"", ""},
}},
{"basic_ident_expr", `set(attributes["bytes"], 0x0102030405060708)`, false, []result{
{"Lowercase", "set"},
{"LParen", "("},
{"Lowercase", "attributes"},
{"Punct", "["},
{"String", `"bytes"`},
{"Punct", "]"},
{"Punct", ","},
{"Bytes", "0x0102030405060708"},
{"RParen", ")"},
}},
{"string escape with trailing backslash", `a("\\", "b")`, false, []result{
{"Lowercase", "a"},
{"LParen", "("},
{"String", `"\\"`},
{"Punct", ","},
{"String", `"b"`},
{"RParen", ")"},
}},
{"string escape with mismatched backslash", `"\"`, true, nil},
{"Mixing case numbers and underscores", `aBCd_123E_4`, false, []result{
{"Lowercase", "a"},
{"Uppercase", "BC"},
{"Lowercase", "d_123"},
{"Uppercase", "E_4"},
}},
{"Math Operations", `+-*/`, false, []result{
{"OpAddSub", "+"},
{"OpAddSub", "-"},
{"OpMultDiv", "*"},
{"OpMultDiv", "/"},
}},
{"Math Equations", `1000 - 600`, false, []result{
{"Int", "1000"},
{"OpAddSub", "-"},
{"Int", "600"},
}},
{"Math Equations", `1.1 * 2.9`, false, []result{
{"Float", "1.1"},
{"OpMultDiv", "*"},
{"Float", "2.9"},
}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
lexDef := buildLexer()
symbols := lexDef.Symbols()
x, err := lexDef.LexString(tt.name, tt.input)
assert.NoError(t, err)
i := 0
for tok, err := x.Next(); tok.EOF() != true; tok, err = x.Next() {
if tt.expectErr {
// if we expected an error, just make sure there was one and don't check anything else
assert.Error(t, err)
break
}
assert.NoError(t, err)
assert.Equal(t, tt.output[i].val, tok.String())
assert.Equal(t, symbols[tt.output[i].typ], tok.Type,
"expected '%s' to be %s, got %v", tok.String(), tt.output[i].typ, nameOf(lexDef, tok.Type))
i++
}
})
}
}