summaryrefslogtreecommitdiff
path: root/lexer
diff options
context:
space:
mode:
Diffstat (limited to 'lexer')
-rw-r--r--lexer/lexer_test.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/lexer/lexer_test.go b/lexer/lexer_test.go
new file mode 100644
index 0000000..c7816b3
--- /dev/null
+++ b/lexer/lexer_test.go
@@ -0,0 +1,42 @@
+package lexer
+
+import (
+ "testing"
+
+ "github.com/mewsen/interpreter/token"
+)
+
+func TestNextToken(t *testing.T) {
+ input := `=+(){},;`
+
+ tests := []struct {
+ expectedType token.TokenType
+ expectedLiteral string
+ }{
+ {token.ASSIGN, "="},
+ {token.PLUS, "+"},
+ {token.LPAREN, "("},
+ {token.RPAREN, ")"},
+ {token.LBRACE, "{"},
+ {token.RBRACE, "}"},
+ {token.COMMA, ","},
+ {token.SEMICOLON, ";"},
+ {token.EOF, ""},
+ }
+
+ l := New(input)
+
+ for i, tt := range tests {
+ tok := l.NextToken()
+
+ if tok.Type != tt.expectedType {
+ t.Fatalf("tests[%d] - tokentype wrong, expected=%v, got=%v",
+ i, tt.expectedType, tok.Type)
+ }
+
+ if tok.Literal != tt.expectedLiteral {
+ t.Fatalf("tests[%d] - literal wrong, expected=%v, got=%v",
+ i, tt.expectedLiteral, tok.Literal)
+ }
+ }
+}