@@ -10,36 +10,6 @@ import (
10
10
"github.com/lucasepe/g2d/lexer"
11
11
)
12
12
13
- func TestComments (t * testing.T ) {
14
- tests := []struct {
15
- input string
16
- expectedComment string
17
- }{
18
- {"// foo" , " foo" },
19
- {"#!g2d" , "!g2d" },
20
- {"# foo" , " foo" },
21
- {" # foo" , " foo" },
22
- {" // x := 1" , " x := 1" },
23
- }
24
-
25
- for _ , tt := range tests {
26
- l := lexer .New (tt .input )
27
- p := New (l )
28
- program := p .ParseProgram ()
29
- checkParserErrors (t , p )
30
-
31
- if len (program .Statements ) != 1 {
32
- t .Fatalf ("program.Statements does not contain 1 statements. got=%d" ,
33
- len (program .Statements ))
34
- }
35
-
36
- comment := program .Statements [0 ]
37
- if ! testComment (t , comment , tt .expectedComment ) {
38
- return
39
- }
40
- }
41
- }
42
-
43
13
func TestAssignmentExpressions (t * testing.T ) {
44
14
assert := assert .New (t )
45
15
@@ -51,7 +21,6 @@ func TestAssignmentExpressions(t *testing.T) {
51
21
{"y = true;" , "y=true" },
52
22
{"foobar = y;" , "foobar=y" },
53
23
{"[1, 2, 3][1] = 4" , "([1, 2, 3][1])=4" },
54
- {`{"a": 1}["b"] = 2` , `({a:1}[b])=2` },
55
24
}
56
25
57
26
for _ , tt := range tests {
@@ -926,21 +895,6 @@ func TestCallExpressionParameterParsing(t *testing.T) {
926
895
}
927
896
}
928
897
929
- func testComment (t * testing.T , s ast.Statement , expected string ) bool {
930
- comment , ok := s .(* ast.Comment )
931
- if ! ok {
932
- t .Errorf ("s not *ast.Comment. got=%T" , s )
933
- return false
934
- }
935
-
936
- if comment .Value != expected {
937
- t .Errorf ("comment.Value not '%s'. got=%s" , expected , comment .Value )
938
- return false
939
- }
940
-
941
- return true
942
- }
943
-
944
898
func testInfixExpression (t * testing.T , exp ast.Expression , left interface {},
945
899
operator string , right interface {}) bool {
946
900
@@ -1103,40 +1057,6 @@ func TestParsingArrayLiterals(t *testing.T) {
1103
1057
testInfixExpression (t , array .Elements [2 ], 3 , "+" , 3 )
1104
1058
}
1105
1059
1106
- func TestParsingSelectorExpressions (t * testing.T ) {
1107
- input := "myHash.foo"
1108
-
1109
- l := lexer .New (input )
1110
- p := New (l )
1111
- program := p .ParseProgram ()
1112
- checkParserErrors (t , p )
1113
- stmt , ok := program .Statements [0 ].(* ast.ExpressionStatement )
1114
- t .Logf ("stmt: %#v" , stmt )
1115
-
1116
- exp , ok := stmt .Expression .(* ast.IndexExpression )
1117
- if ! ok {
1118
- t .Fatalf ("exp not *ast.IndexExpression. got=%T" , stmt .Expression )
1119
- }
1120
-
1121
- ident , ok := exp .Left .(* ast.Identifier )
1122
- if ! ok {
1123
- t .Fatalf ("exp.Left not *ast.Identifier. got=%T" , stmt .Expression )
1124
- }
1125
-
1126
- if ! testIdentifier (t , ident , "myHash" ) {
1127
- return
1128
- }
1129
-
1130
- index , ok := exp .Index .(* ast.StringLiteral )
1131
- if ! ok {
1132
- t .Fatalf ("exp.Index not *ast.StringLiteral. got=%T" , stmt .Expression )
1133
- }
1134
-
1135
- if index .Value != "foo" {
1136
- t .Fatalf ("index.Value != \" foo\" " )
1137
- }
1138
- }
1139
-
1140
1060
func TestParsingIndexExpressions (t * testing.T ) {
1141
1061
input := "myArray[1 + 1]"
1142
1062
@@ -1158,177 +1078,3 @@ func TestParsingIndexExpressions(t *testing.T) {
1158
1078
return
1159
1079
}
1160
1080
}
1161
-
1162
- func TestParsingHashLiteralsStringKeys (t * testing.T ) {
1163
- input := `{"one": 1, "two": 2, "three": 3}`
1164
-
1165
- l := lexer .New (input )
1166
- p := New (l )
1167
- program := p .ParseProgram ()
1168
- checkParserErrors (t , p )
1169
-
1170
- stmt := program .Statements [0 ].(* ast.ExpressionStatement )
1171
- hash , ok := stmt .Expression .(* ast.HashLiteral )
1172
- if ! ok {
1173
- t .Fatalf ("exp is not ast.HashLiteral. got=%T" , stmt .Expression )
1174
- }
1175
-
1176
- if len (hash .Pairs ) != 3 {
1177
- t .Errorf ("hash.Pairs has wrong length. got=%d" , len (hash .Pairs ))
1178
- }
1179
-
1180
- expected := map [string ]int64 {
1181
- "one" : 1 ,
1182
- "two" : 2 ,
1183
- "three" : 3 ,
1184
- }
1185
-
1186
- for key , value := range hash .Pairs {
1187
- literal , ok := key .(* ast.StringLiteral )
1188
- if ! ok {
1189
- t .Errorf ("key is not ast.StringLiteral. got=%T" , key )
1190
- }
1191
-
1192
- expectedValue := expected [literal .String ()]
1193
-
1194
- testIntegerLiteral (t , value , expectedValue )
1195
- }
1196
- }
1197
-
1198
- func TestParsingHashLiteralsBooleanKeys (t * testing.T ) {
1199
- input := `{true: 1, false: 2}`
1200
-
1201
- l := lexer .New (input )
1202
- p := New (l )
1203
- program := p .ParseProgram ()
1204
- checkParserErrors (t , p )
1205
-
1206
- stmt := program .Statements [0 ].(* ast.ExpressionStatement )
1207
- hash , ok := stmt .Expression .(* ast.HashLiteral )
1208
- if ! ok {
1209
- t .Fatalf ("exp is not ast.HashLiteral. got=%T" , stmt .Expression )
1210
- }
1211
-
1212
- expected := map [string ]int64 {
1213
- "true" : 1 ,
1214
- "false" : 2 ,
1215
- }
1216
-
1217
- if len (hash .Pairs ) != len (expected ) {
1218
- t .Errorf ("hash.Pairs has wrong length. got=%d" , len (hash .Pairs ))
1219
- }
1220
-
1221
- for key , value := range hash .Pairs {
1222
- boolean , ok := key .(* ast.Boolean )
1223
- if ! ok {
1224
- t .Errorf ("key is not ast.BooleanLiteral. got=%T" , key )
1225
- continue
1226
- }
1227
-
1228
- expectedValue := expected [boolean .String ()]
1229
- testIntegerLiteral (t , value , expectedValue )
1230
- }
1231
- }
1232
-
1233
- func TestParsingHashLiteralsIntegerKeys (t * testing.T ) {
1234
- input := `{1: 1, 2: 2, 3: 3}`
1235
-
1236
- l := lexer .New (input )
1237
- p := New (l )
1238
- program := p .ParseProgram ()
1239
- checkParserErrors (t , p )
1240
-
1241
- stmt := program .Statements [0 ].(* ast.ExpressionStatement )
1242
- hash , ok := stmt .Expression .(* ast.HashLiteral )
1243
- if ! ok {
1244
- t .Fatalf ("exp is not ast.HashLiteral. got=%T" , stmt .Expression )
1245
- }
1246
-
1247
- expected := map [string ]int64 {
1248
- "1" : 1 ,
1249
- "2" : 2 ,
1250
- "3" : 3 ,
1251
- }
1252
-
1253
- if len (hash .Pairs ) != len (expected ) {
1254
- t .Errorf ("hash.Pairs has wrong length. got=%d" , len (hash .Pairs ))
1255
- }
1256
-
1257
- for key , value := range hash .Pairs {
1258
- integer , ok := key .(* ast.IntegerLiteral )
1259
- if ! ok {
1260
- t .Errorf ("key is not ast.IntegerLiteral. got=%T" , key )
1261
- continue
1262
- }
1263
-
1264
- expectedValue := expected [integer .String ()]
1265
-
1266
- testIntegerLiteral (t , value , expectedValue )
1267
- }
1268
- }
1269
-
1270
- func TestParsingEmptyHashLiteral (t * testing.T ) {
1271
- input := "{}"
1272
-
1273
- l := lexer .New (input )
1274
- p := New (l )
1275
- program := p .ParseProgram ()
1276
- checkParserErrors (t , p )
1277
-
1278
- stmt := program .Statements [0 ].(* ast.ExpressionStatement )
1279
- hash , ok := stmt .Expression .(* ast.HashLiteral )
1280
- if ! ok {
1281
- t .Fatalf ("exp is not ast.HashLiteral. got=%T" , stmt .Expression )
1282
- }
1283
-
1284
- if len (hash .Pairs ) != 0 {
1285
- t .Errorf ("hash.Pairs has wrong length. got=%d" , len (hash .Pairs ))
1286
- }
1287
- }
1288
-
1289
- func TestParsingHashLiteralsWithExpressions (t * testing.T ) {
1290
- input := `{"one": 0 + 1, "two": 10 - 8, "three": 15 / 5}`
1291
-
1292
- l := lexer .New (input )
1293
- p := New (l )
1294
- program := p .ParseProgram ()
1295
- checkParserErrors (t , p )
1296
-
1297
- stmt := program .Statements [0 ].(* ast.ExpressionStatement )
1298
- hash , ok := stmt .Expression .(* ast.HashLiteral )
1299
- if ! ok {
1300
- t .Fatalf ("exp is not ast.HashLiteral. got=%T" , stmt .Expression )
1301
- }
1302
-
1303
- if len (hash .Pairs ) != 3 {
1304
- t .Errorf ("hash.Pairs has wrong length. got=%d" , len (hash .Pairs ))
1305
- }
1306
-
1307
- tests := map [string ]func (ast.Expression ){
1308
- "one" : func (e ast.Expression ) {
1309
- testInfixExpression (t , e , 0 , "+" , 1 )
1310
- },
1311
- "two" : func (e ast.Expression ) {
1312
- testInfixExpression (t , e , 10 , "-" , 8 )
1313
- },
1314
- "three" : func (e ast.Expression ) {
1315
- testInfixExpression (t , e , 15 , "/" , 5 )
1316
- },
1317
- }
1318
-
1319
- for key , value := range hash .Pairs {
1320
- literal , ok := key .(* ast.StringLiteral )
1321
- if ! ok {
1322
- t .Errorf ("key is not ast.StringLiteral. got=%T" , key )
1323
- continue
1324
- }
1325
-
1326
- testFunc , ok := tests [literal .String ()]
1327
- if ! ok {
1328
- t .Errorf ("No test function for key %q found" , literal .String ())
1329
- continue
1330
- }
1331
-
1332
- testFunc (value )
1333
- }
1334
- }
0 commit comments