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
|
package highlight
import (
"reflect"
"testing"
)
func TestLexBash(t *testing.T) {
type tc struct {
code string
want [][]Token
}
tests := map[string]tc{
"comment and variable": {
code: `echo $HOME # hi`,
want: [][]Token{{
{KindPlain, "echo"},
{KindPlain, " "},
{KindLiteral, "$HOME"},
{KindPlain, " "},
{KindComment, "# hi"},
}},
},
"keyword and string": {
code: `if "x"`,
want: [][]Token{{
{KindKeyword, "if"},
{KindPlain, " "},
{KindString, `"x"`},
}},
},
"braced variable": {
code: `${FOO}`,
want: [][]Token{{{KindLiteral, "${FOO}"}}},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
got := Tokenize("bash", tt.code)
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("got %#v, want %#v", got, tt.want)
}
})
}
}
|