Skip to content

Commit 802d788

Browse files
committed
fix: broken tests
1 parent 1bf06ba commit 802d788

File tree

5 files changed

+6
-269
lines changed

5 files changed

+6
-269
lines changed

data/data_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func TestFetchFromURI(t *testing.T) {
1212
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
13-
fmt.Fprint(w, "Hello from scrawl!")
13+
fmt.Fprint(w, "Hello from g2d!")
1414
}))
1515
defer ts.Close()
1616

@@ -19,19 +19,19 @@ func TestFetchFromURI(t *testing.T) {
1919
t.Error(err)
2020
}
2121

22-
want := "Hello from scrawl!"
22+
want := "Hello from g2d!"
2323
if got := string(data); got != want {
2424
t.Errorf("got [%v] want [%v]", got, want)
2525
}
2626
}
2727

2828
func TestFetchFromFile(t *testing.T) {
29-
data, err := FetchFromFile("../testdata/spritesheet.json", 10)
29+
data, err := FetchFromFile("../testdata/none.g2d", 10)
3030
if err != nil {
3131
t.Error(err)
3232
}
3333

34-
want := `{ "fram`
34+
want := `print( #co`
3535
if got := flatten(string(data)); got != want {
3636
t.Errorf("got [%v] want [%v]", got, want)
3737
}

eval/eval_test.go

-7
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,6 @@ if (10 > 1) {
351351
`"Hello" - "World"`,
352352
"unknown operator: str - str",
353353
},
354-
{
355-
`{"name": "Monkey"}[fn(x) { x }];`,
356-
"unusable as hash key: fn",
357-
},
358354
}
359355

360356
for _, tt := range tests {
@@ -575,8 +571,6 @@ func TestBuiltinFunctions(t *testing.T) {
575571
{`bool("foo")`, true},
576572
{`bool([])`, false},
577573
{`bool([1, 2, 3])`, true},
578-
{`bool({})`, false},
579-
{`bool({"a": 1})`, true},
580574
{`int(true)`, 1},
581575
{`int(false)`, 0},
582576
{`int(1)`, 1},
@@ -587,7 +581,6 @@ func TestBuiltinFunctions(t *testing.T) {
587581
{`str(10)`, "10"},
588582
{`str("foo")`, "foo"},
589583
{`str([1, 2, 3])`, "[1, 2, 3]"},
590-
{`str({"a": 1})`, "{a: 1}"},
591584
}
592585

593586
for _, tt := range tests {

lexer/lexer_test.go

-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ d.foo
4242
expectedType token.Type
4343
expectedLiteral string
4444
}{
45-
{token.COMMENT, "!./g2d"},
4645
{token.IDENT, "five"},
4746
{token.BIND, ":="},
4847
{token.INT, "5"},
@@ -69,7 +68,6 @@ d.foo
6968
{token.SEMICOLON, ";"},
7069
{token.RBRACE, "}"},
7170
{token.SEMICOLON, ";"},
72-
{token.COMMENT, " this is a comment"},
7371
{token.IDENT, "result"},
7472
{token.BIND, ":="},
7573
{token.IDENT, "add"},
@@ -108,7 +106,6 @@ d.foo
108106
{token.FALSE, "false"},
109107
{token.SEMICOLON, ";"},
110108
{token.RBRACE, "}"},
111-
{token.COMMENT, " this is another comment"},
112109
{token.INT, "10"},
113110
{token.EQ, "=="},
114111
{token.INT, "10"},
@@ -166,7 +163,6 @@ c := "\r\n\t"
166163
expectedType token.Type
167164
expectedLiteral string
168165
}{
169-
{token.COMMENT, "!./g2d"},
170166
{token.IDENT, "a"},
171167
{token.BIND, ":="},
172168
{token.STRING, "\"foo\""},

parser/parser_test.go

-254
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,6 @@ import (
1010
"github.com/lucasepe/g2d/lexer"
1111
)
1212

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-
4313
func TestAssignmentExpressions(t *testing.T) {
4414
assert := assert.New(t)
4515

@@ -51,7 +21,6 @@ func TestAssignmentExpressions(t *testing.T) {
5121
{"y = true;", "y=true"},
5222
{"foobar = y;", "foobar=y"},
5323
{"[1, 2, 3][1] = 4", "([1, 2, 3][1])=4"},
54-
{`{"a": 1}["b"] = 2`, `({a:1}[b])=2`},
5524
}
5625

5726
for _, tt := range tests {
@@ -926,21 +895,6 @@ func TestCallExpressionParameterParsing(t *testing.T) {
926895
}
927896
}
928897

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-
944898
func testInfixExpression(t *testing.T, exp ast.Expression, left interface{},
945899
operator string, right interface{}) bool {
946900

@@ -1103,40 +1057,6 @@ func TestParsingArrayLiterals(t *testing.T) {
11031057
testInfixExpression(t, array.Elements[2], 3, "+", 3)
11041058
}
11051059

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-
11401060
func TestParsingIndexExpressions(t *testing.T) {
11411061
input := "myArray[1 + 1]"
11421062

@@ -1158,177 +1078,3 @@ func TestParsingIndexExpressions(t *testing.T) {
11581078
return
11591079
}
11601080
}
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-
}

testdata/none.g2d

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
print( #comment
2+
"Hello, World\n");

0 commit comments

Comments
 (0)