-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlexer.spec.ts
126 lines (107 loc) · 2.73 KB
/
lexer.spec.ts
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
import test from "ava";
import HclLexer from "../src/lexer";
function stringChars(str: string, type = "stringChar") {
return str.split("").map((c: string) => [type, c]);
}
test("Should find tokens correctly", t => {
const SOURCE_TEXT = `
foo = {
bar = "baz \$\${quux} \${var.mumble}"
quux = 42
}
// Example of a heredoc
mumble = <<EOF
foo bar \${baz(2 + 2)}
EOF
more_content = true
`;
const lex = new HclLexer(SOURCE_TEXT);
const output = [];
let token;
while ((token = lex.next())) {
output.push(token);
}
t.deepEqual(
output
.filter(token => token.type !== "ws")
.map(token => [token.type, token.value]),
[
["identifier", "foo"],
["equal", "="],
["openBrace", "{"],
["identifier", "bar"],
["equal", "="],
["beginString", '"'],
...stringChars("baz "),
["escapedDollar", "$$"],
...stringChars("{quux} "),
["beginInterpolation", "${"],
["identifier", "var"],
["dot", "."],
["identifier", "mumble"],
["endInterpolation", "}"],
["endString", '"'],
["identifier", "quux"],
["equal", "="],
["baseTenNumber", "42"],
["closeBrace", "}"],
["beginLineComment", "//"],
...stringChars(" Example of a heredoc", "commentText"),
["endComment", "\n"],
["identifier", "mumble"],
["equal", "="],
["beginHeredoc", "<<EOF\n"],
...stringChars("foo bar ", "heredocChar"),
["beginInterpolation", "${"],
["identifier", "baz"],
["openParen", "("],
["baseTenNumber", "2"],
["plus", "+"],
["baseTenNumber", "2"],
["closeParen", ")"],
["endInterpolation", "}"],
["newline", "\n"],
["endHeredoc", "EOF"],
["identifier", "more_content"],
["equal", "="],
["boolean", "true"]
]
);
});
test("Should save state correctly", t => {
// Note that the source text ends in the middle of a heredoc
const SOURCE_TEXT = `
foo = {
bar = "baz \$\${quux} \${var.mumble}"
quux = 42
}
// Example of a heredoc
mumble = <<EOF
foo bar \${baz(2 + 2)}`;
const lex = new HclLexer(SOURCE_TEXT);
const output = [];
let token;
while ((token = lex.next())) {
output.push(token);
}
t.snapshot(output);
const state = lex.save();
const newLex = new HclLexer();
// Resume lexing from where we left off: middle of heredoc
newLex.reset("\nEOF\n\nmore_content=true", state);
while ((token = newLex.next())) {
output.push(token);
}
t.snapshot(output, "after break");
});
test("Should format errors correctly", t => {
const SOURCE_TEXT = `
foo = {
bar = "baz \$\${quux} \${var.mumble}"
quux = 42
}
`;
const lex = new HclLexer(SOURCE_TEXT);
const token = lex.next();
t.snapshot(lex.formatError(token));
});