aboutsummaryrefslogtreecommitdiff
path: root/parser/parser_test.go
blob: 2f98699bb5b1bfa2bf6fcb1ed96e3f32263c928f (plain)
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
package parser

import (
	"strings"
	"testing"

	"git.usebox.net/micro-lang/ast"
	"git.usebox.net/micro-lang/errors"
	"git.usebox.net/micro-lang/tokenizer"
)

func parse(input string) ([]ast.Expr, error) {
	tr := tokenizer.NewTokenizer("-", strings.NewReader(input))
	toks, err := tr.Scan()
	if err != nil {
		return nil, err
	}
	p := NewParser(nil)
	return p.Parse(toks)
}

func expectError(t *testing.T, input string, code errors.ErrCode) {
	_, errs := parse(input)
	if errs == nil {
		t.Errorf("expected error and it didn't happen (input: %s)", input)
	}
	el, ok := errs.(errors.ErrorList)
	if !ok {
		t.Errorf("error list expected (input: %s)", input)
	} else if len(el.Errors) == 0 {
		t.Errorf("error list is empty (input: %s)", input)
	} else {
		if first, ok := el.Errors[0].(errors.Error); !ok {
			t.Errorf("error in error list not an Error (input: %s)", input)
		} else {
			if first.Code != code {
				t.Errorf("error %d expected, got %d -> %s (input: %s)", code, first.Code, first, input)
			}
		}
	}
}

func TestErrorFailedNumeric(t *testing.T) {
	expectError(t, "var n number = 18446744073709551616;", errors.FailedNumeric)
}

func TestErrorExpectedRParen(t *testing.T) {
	expectError(t, "var n number = (1 + 2 ;", errors.ExpectedRParen)
}

func TestErrorExpectedExpr(t *testing.T) {
	expectError(t, ";", errors.ExpectedExpr)
}

func TestErrorExpectedVarName(t *testing.T) {
	expectError(t, "var number = 1;", errors.ExpectedIdent)
	expectError(t, "const false;", errors.ExpectedIdent)
}

func TestErrorExpectedType(t *testing.T) {
	expectError(t, "var n = 1;", errors.ExpectedType)
	expectError(t, "const n = 1;", errors.ExpectedType)
	expectError(t, "def fn(n) { }", errors.ExpectedType)
	expectError(t, "def fn() { }\nvar a number = fn();", errors.TypeMismatch)
}

func TestErrorDeclareUndefined(t *testing.T) {
	expectError(t, "var a number = a;", errors.UndefinedIdent)
}

func TestErrorExpectedSemiColon(t *testing.T) {
	expectError(t, "var n number = 1", errors.ExpectedSemicolon)
	expectError(t, "1 + 1", errors.ExpectedSemicolon)
}

func TestErrorExpectedFunc(t *testing.T) {
	expectError(t, "def ;", errors.ExpectedIdent)
	expectError(t, "def fn;", errors.ExpectedLParen)
	expectError(t, "def fn(number);", errors.ExpectedIdent)
	expectError(t, "def fn(a number, number);", errors.ExpectedIdent)
	expectError(t, "def fn(a, b);", errors.ExpectedType)
	expectError(t, "def fn(a bool, b);", errors.ExpectedType)
	expectError(t, "def fn() id;", errors.ExpectedType)
	expectError(t, "def fn(a number) id;", errors.ExpectedType)
	expectError(t, "def fn()", errors.ExpectedType)
	expectError(t, "def fn() {", errors.ExpectedRBrace)
	expectError(t, "def fn() number {", errors.ExpectedRBrace)
	expectError(t, "fn(;", errors.UndefinedIdent)
	expectError(t, "fn(0;", errors.UndefinedIdent)
	expectError(t, "fn()", errors.UndefinedIdent)
	expectError(t, "def fn() bool { return 1; }", errors.TypeMismatch)
	expectError(t, "def fn() { }\ndef fn() { }", errors.AlreadyDeclared)
}

func TestErrorReturn(t *testing.T) {
	expectError(t, "return", errors.InvalidOperation)
	expectError(t, "return true", errors.InvalidOperation)
	expectError(t, "def fn() { return }", errors.ExpectedExpr)
	expectError(t, "def fn() { return true }", errors.ExpectedSemicolon)
	expectError(t, `
    def fn() [5]number {
        var local [5]number;
        return local;
    }
    `, errors.InvalidOperation)
	expectError(t, `
    def A { var p number; }
    def fn() A {
        var local A;
        return local;
    }
    `, errors.InvalidOperation)
	expectError(t, `
    def A { var p number; }
    var g A;
    def fn() A {
        var local A;
        local = g;
        return local;
    }
    "OK";
    `, errors.TypeMismatch)
	expectError(t, `
    var g [3]bool;
    def fn() [3]bool {
        var local [3]bool;
        local = g;
        return local;
    }
    "OK";
    `, errors.TypeMismatch)
	expectError(t, `
    const a [3]number = [1, 2, 3];
    var b [3]number = a;
    `, errors.TypeMismatch)
	expectError(t, `
    const a [3]number = [1, 2, 3];
    var b [3]number;
    var c [3]number = b;
    c = a;
    `, errors.TypeMismatch)
}

func TestErrorExpectedAssign(t *testing.T) {
	expectError(t, "a = ", errors.UndefinedIdent)
	expectError(t, "1 = 1;", errors.InvalidTarget)
	expectError(t, "const a number = 0; a = 1;", errors.AssignConst)
	expectError(t, "const a [2]number = [0, 1]; a[0] = 1;", errors.AssignConst)
	expectError(t, `
    def fn() { }
    const a func () = fn;
    a = fn;
        `, errors.AssignConst)
}

func TestErrorLoops(t *testing.T) {
	expectError(t, "continue;", errors.InvalidOperation)
	expectError(t, "break;", errors.InvalidOperation)
}

func TestErrorArray(t *testing.T) {
	expectError(t, "var a [false]number;", errors.InvalidValue)
	expectError(t, "var a [1]number = 1;", errors.TypeMismatch)
	expectError(t, "var a []number = [1, 2, 3];", errors.ExpectedExpr)
	expectError(t, "var a [2]number; var b [5]number = a;", errors.TypeMismatch)
}

func TestErrorExprList(t *testing.T) {
	expectError(t, "var a number = [1];", errors.InvalidValue)
	expectError(t, "var a [1]number = [];", errors.InvalidValue)
	expectError(t, "var a [2]number = [1, false];", errors.TypeMismatch)
	expectError(t, "var a [2]number = [1, 2, 3];", errors.InvalidValue)
	expectError(t, "var a [1]number = [false];", errors.TypeMismatch)
	expectError(t, "const a number = [1];", errors.InvalidValue)
	expectError(t, "const a [1]number = [];", errors.InvalidValue)
	expectError(t, "const a [2]number = [1, false];", errors.TypeMismatch)
	expectError(t, "const a [2]number = [1, 2, 3];", errors.InvalidValue)
	expectError(t, "const a [1]number = [false];", errors.TypeMismatch)
}

func TestErrorIndex(t *testing.T) {
	expectError(t, "var a [10]number; a[false];", errors.InvalidValue)
	expectError(t, "var a [10]number; a[\"bad\"];", errors.InvalidValue)
	expectError(t, "var i bool; var a [10]number; a[i];", errors.InvalidValue)
	expectError(t, "def fn() { } var a [10]number; a[fn];", errors.InvalidValue)
	expectError(t, "def fn() bool { return false; } var a [10]number; a[fn()];", errors.InvalidValue)
	expectError(t, "false[0];", errors.NotIndexable)
	expectError(t, "10[0];", errors.NotIndexable)
	expectError(t, "false[0] = 10;", errors.NotIndexable)
}

func TestErrorFor(t *testing.T) {
	expectError(t, "for a { }", errors.UndefinedIdent)
	expectError(t, "for a != 0 { }", errors.UndefinedIdent)
	expectError(t, "for a in { }", errors.ExpectedExpr)
	expectError(t, "for a in a { }", errors.UndefinedIdent)
	expectError(t, "var a number; for i in a { }", errors.TypeMismatch)
}

func TestErrorStruct(t *testing.T) {
	expectError(t, "def A { }", errors.InvalidValue)
	expectError(t, "var a number; a.b;", errors.NotStruct)
	expectError(t, "def A { var a number; }\nvar a A; a.1;", errors.ExpectedIdent)
	expectError(t, "def A { var a number; }\ndef A { }", errors.AlreadyDeclared)
	expectError(t, "def A { var a A; }", errors.RecursiveStruct)
	expectError(t, "def A { var a number; }\nvar a A;\na.x;", errors.UndefinedIdent)
	expectError(t, "def A { var a number; }\nA.a;", errors.InvalidValue)
	expectError(t, "def A { var a number; }\nvar a number; a = A;", errors.InvalidValue)
	expectError(t, "def A { var a number; }\nvar a A; var b number = a;", errors.TypeMismatch)
	expectError(t, "def A { var a number; }\nvar a A; var b a;", errors.ExpectedType)
	expectError(t, `
    def A { var a number; }
    def B { var a number; }
    var a A;
    var b B = a;
        `, errors.TypeMismatch)
	expectError(t, `
    def fn() {
        def A {
            return;
        }
    }
        `, errors.ExpectedDefinition)
	expectError(t, `
    for {
        def A {
            break;
        }
    }
        `, errors.ExpectedDefinition)
	expectError(t, `
    for {
        def A {
            continue;
        }
    }
        `, errors.ExpectedDefinition)
	expectError(t, `
    def A {
        var p number;
        p = 10;
    }
        `, errors.ExpectedDefinition)
	expectError(t, `
    def A {
        var p number;
        println("error");
    }
        `, errors.ExpectedDefinition)
}