-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathtestable_expressions.go
267 lines (221 loc) · 7.91 KB
/
testable_expressions.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
//+build !release
package ast
import "testing"
// testableExpression interface implements basic Expression's functions, and helper functions to assert node's type
type testableExpression interface {
Expression
// Test Helpers
IsArrayExpression(t *testing.T) *testableArrayExpression
IsAssignExpression(t *testing.T) *testableAssignExpression
IsBooleanExpression(t *testing.T) *testableBooleanExpression
IsCallExpression(t *testing.T) *testableCallExpression
IsConditionalExpression(t *testing.T) *testableConditionalExpression
IsConstant(t *testing.T) *testableConstant
IsHashExpression(t *testing.T) *testableHashExpression
IsIdentifier(t *testing.T) *testableIdentifier
IsIfExpression(t *testing.T) *testableIfExpression
IsInfixExpression(t *testing.T) *testableInfixExpression
IsInstanceVariable(t *testing.T) *testableInstanceVariable
IsIntegerLiteral(t *testing.T) *testableIntegerLiteral
IsSelfExpression(t *testing.T) *testableSelfExpression
IsStringLiteral(t *testing.T) *testableStringLiteral
IsYieldExpression(t *testing.T) *testableYieldExpression
}
type testableArrayExpression struct {
*ArrayExpression
t *testing.T
}
// TestableElements returns array expression's element nodes and assert them as testableExpression
func (tae *testableArrayExpression) TestableElements() (tes []testableExpression) {
for _, elem := range tae.Elements {
tes = append(tes, elem.(testableExpression))
}
return
}
type testableAssignExpression struct {
*AssignExpression
t *testing.T
}
// NthVariable returns the nth variable of the assignment as a testableExpression
func (tae *testableAssignExpression) NthVariable(n int) testableExpression {
return tae.Variables[n-1].(testableExpression)
}
// TestableValue returns the assignment's value as a testableExpression
func (tae *testableAssignExpression) TestableValue() testableExpression {
return tae.Value.(testableExpression)
}
type testableBooleanExpression struct {
*BooleanExpression
t *testing.T
}
// ShouldEqualTo compares if the boolean expression's value equals to the expected value
func (tbe *testableBooleanExpression) ShouldEqualTo(expected bool) {
if tbe.Value != expected {
tbe.t.Helper()
tbe.t.Fatalf("Expect boolean literal to be %t, got %t", expected, tbe.Value)
}
}
type testableCallExpression struct {
*CallExpression
t *testing.T
}
// NthArgument returns n-th argument of the call expression as TestingExpression
func (tce *testableCallExpression) NthArgument(n int) testableExpression {
return tce.Arguments[n-1].(testableExpression)
}
// ReceiverExpression returns call expression's receiver as TestingExpression
func (tce *testableCallExpression) TestableReceiver() testableExpression {
return tce.Receiver.(testableExpression)
}
// ShouldHaveMethodName checks if the method's name is same as we expected
func (tce *testableCallExpression) ShouldHaveMethodName(expectedName string) {
if tce.Method != expectedName {
tce.t.Helper()
tce.t.Fatalf("expect call expression's method name to be '%s', got '%s'", expectedName, tce.Method)
}
}
// ShouldHaveNumbersOfArguments checks if the method call's argument number is same we expected
func (tce *testableCallExpression) ShouldHaveNumbersOfArguments(n int) {
if len(tce.Arguments) != n {
tce.t.Helper()
tce.t.Fatalf("expect call expression to have %d arguments, got %d", n, len(tce.Arguments))
}
}
type testableConditionalExpression struct {
*ConditionalExpression
t *testing.T
}
func (tce *testableConditionalExpression) TestableCondition() testableExpression {
return tce.Condition.(testableExpression)
}
func (tce *testableConditionalExpression) TestableConsequence() CodeBlock {
var tss []TestableStatement
for _, stmt := range tce.Consequence.Statements {
tss = append(tss, stmt.(TestableStatement))
}
return tss
}
type testableConstant struct {
*Constant
t *testing.T
}
// ShouldHaveName checks if the constant's name is same as we expected
func (tc *testableConstant) ShouldHaveName(expectedName string) {
if tc.Value != expectedName {
tc.t.Helper()
tc.t.Fatalf("expect current identifier to be '%s', got '%s'", expectedName, tc.Value)
}
}
type testableHashExpression struct {
*HashExpression
t *testing.T
}
// TestableDataPairs returns a map of hash expression's element and assert them as testableExpression
func (the *testableHashExpression) TestableDataPairs() (pairs map[string]testableExpression) {
pairs = make(map[string]testableExpression)
for k, v := range the.Data {
pairs[k] = v.(testableExpression)
}
return
}
type testableIdentifier struct {
*Identifier
t *testing.T
}
// ShouldHaveName checks if the identifier's name is same as we expected
func (ti *testableIdentifier) ShouldHaveName(expectedName string) {
if ti.Value != expectedName {
ti.t.Helper()
ti.t.Fatalf("expect current identifier to be '%s', got '%s'", expectedName, ti.Value)
}
}
type testableIfExpression struct {
*IfExpression
t *testing.T
}
// ShouldHaveNumberOfConditionals checks if the number of condition matches the specified one.
func (tie *testableIfExpression) ShouldHaveNumberOfConditionals(n int) {
if len(tie.Conditionals) != n {
tie.t.Helper()
tie.t.Fatalf("Expect if expression to have %d conditionals, got %d", n, len(tie.Conditionals))
}
}
// TestableConditionals returns if expression's conditionals and assert them as testableExpression
func (tie *testableIfExpression) TestableConditionals() (tes []testableExpression) {
for _, cond := range tie.Conditionals {
tes = append(tes, cond)
}
return
}
// TestableAlternative returns if expression's alternative code block as testableExpression
func (tie *testableIfExpression) TestableAlternative() CodeBlock {
var tss []TestableStatement
for _, stmt := range tie.Alternative.Statements {
tss = append(tss, stmt.(TestableStatement))
}
return tss
}
type testableInfixExpression struct {
*InfixExpression
t *testing.T
}
// ShouldHaveOperator checks if the infix expression has expected operator
func (tie *testableInfixExpression) ShouldHaveOperator(expectedOperator string) {
if tie.Operator != expectedOperator {
tie.t.Helper()
tie.t.Fatalf("Expect infix expression to have %s operator, got %s", expectedOperator, tie.Operator)
}
}
// LeftExpression returns infix expression's left expression as TestingExpression
func (tie *testableInfixExpression) TestableLeftExpression() testableExpression {
return tie.Left.(testableExpression)
}
// RightExpression returns infix expression's right expression as TestingExpression
func (tie *testableInfixExpression) TestableRightExpression() testableExpression {
return tie.Right.(testableExpression)
}
type testableInstanceVariable struct {
*InstanceVariable
t *testing.T
}
// ShouldHaveName checks if the instance variable's name is same as we expected
func (tiv *testableInstanceVariable) ShouldHaveName(expectedName string) {
if tiv.Value != expectedName {
tiv.t.Helper()
tiv.t.Fatalf("expect current instance variable to be '%s', got '%s'", expectedName, tiv.Value)
}
}
type testableIntegerLiteral struct {
*IntegerLiteral
t *testing.T
}
// ShouldEqualTo compares if the integer literal's value equals to the expected value
func (til *testableIntegerLiteral) ShouldEqualTo(expectedInt int) {
if til.Value != expectedInt {
til.t.Helper()
til.t.Fatalf("Expect integer literal to be %d, got %d", expectedInt, til.Value)
}
}
type testableSelfExpression struct {
*SelfExpression
t *testing.T
}
type testableStringLiteral struct {
*StringLiteral
t *testing.T
}
// ShouldEqualTo compares if the string literal's value equals to the expected value
func (tsl *testableStringLiteral) ShouldEqualTo(expected string) {
if tsl.Value != expected {
tsl.t.Helper()
tsl.t.Fatalf("Expect string literal to be %s, got %s", expected, tsl.Value)
}
}
type testableYieldExpression struct {
*YieldExpression
t *testing.T
}
// NthArgument returns n-th argument of the yield expression as TestingExpression
func (tye *testableYieldExpression) NthArgument(n int) testableExpression {
return tye.Arguments[n-1].(testableExpression)
}