-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexer_test.go
86 lines (80 loc) · 1.72 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
package glambda
import "testing"
func TestLex(t *testing.T) {
tests := []struct {
input string
expected []token
}{
{
``,
[]token{
token{tokenEOF, ``},
},
},
{
`\`,
[]token{
token{tokenLambda, `\`},
token{tokenEOF, ``},
},
},
{
`0 = \ f x . f (f x)`,
[]token{
token{tokenIdentifier, `0`},
token{tokenEquals, `=`},
token{tokenLambda, `\`},
token{tokenIdentifier, `f`},
token{tokenIdentifier, `x`},
token{tokenDot, `.`},
token{tokenIdentifier, `f`},
token{tokenLeftParen, `(`},
token{tokenIdentifier, `f`},
token{tokenIdentifier, `x`},
token{tokenRightParen, `)`},
token{tokenEOF, ``},
},
},
{
`-- hey this is a test`,
[]token{
token{tokenComment, "-- hey this is a test"},
token{tokenEOF, ""},
},
},
{
`
-- there are spaces to the left of this comment
0 = \ f x . f (f x)
`,
[]token{
token{tokenNewLine, "\n"},
token{tokenComment, "-- there are spaces to the left of this comment"},
token{tokenNewLine, "\n\n"},
token{tokenIdentifier, `0`},
token{tokenEquals, `=`},
token{tokenLambda, `\`},
token{tokenIdentifier, `f`},
token{tokenIdentifier, `x`},
token{tokenDot, `.`},
token{tokenIdentifier, `f`},
token{tokenLeftParen, `(`},
token{tokenIdentifier, `f`},
token{tokenIdentifier, `x`},
token{tokenRightParen, `)`},
token{tokenNewLine, "\n\n\n"},
token{tokenEOF, ``},
},
},
}
for _, test := range tests {
t.Run(test.input, func(t *testing.T) {
lexer := lex(test.input)
var tokens []token
for token := range lexer.tokens {
tokens = append(tokens, token)
}
assertEqual(t, test.expected, tokens)
})
}
}