-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighlight_test.go
92 lines (77 loc) · 2.31 KB
/
highlight_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
87
88
89
90
91
92
package highlight
import (
"context"
"fmt"
"os"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/tree-sitter/go-tree-sitter"
"github.com/tree-sitter/tree-sitter-go/bindings/go"
)
// Minimal theme for testing
var theme = map[string]int{
"variable": 15,
"function": 14,
"string": 10,
"keyword": 13,
"comment": 245,
}
// resetStyle resets the terminal color
const resetStyle = "\x1b[0m"
// colorStyle returns the ANSI escape sequence for the given ANSI color code
func colorStyle(color int) string {
if color == -1 {
return ""
}
return fmt.Sprintf("\x1b[38;5;%dm", color)
}
func TestHighlighter_Highlight(t *testing.T) {
// Get the capture names from the theme
captureNames := make([]string, 0, len(theme))
for name := range theme {
captureNames = append(captureNames, name)
}
source, err := os.ReadFile("testdata/test.go")
require.NoError(t, err)
language := tree_sitter.NewLanguage(tree_sitter_go.Language())
highlightsQuery, err := os.ReadFile("testdata/highlights.scm")
require.NoError(t, err)
cfg, err := NewConfiguration(language, "go", highlightsQuery, nil, nil)
require.NoError(t, err)
cfg.Configure(captureNames)
highlighter := New()
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
events := highlighter.Highlight(ctx, *cfg, source, func(name string) *Configuration {
return nil
})
var styles []int
for event, err := range events {
require.NoError(t, err)
switch e := event.(type) {
// New language layer found, push a new style (white) so we don't inherit the previous style as fallback
case EventLayerStart:
styles = append(styles, 15)
// End of language layer, pop the style
case EventLayerEnd:
styles = styles[:len(styles)-1]
// Start of a capture, push the style
case EventCaptureStart:
styles = append(styles, theme[captureNames[e.Highlight]])
// End of a capture, pop the style
case EventCaptureEnd:
styles = styles[:len(styles)-1]
// Source code event, print the source code with the current style.
case EventSource:
// Get the current style, there should always be at least one style
style := styles[len(styles)-1]
// print the style
print(colorStyle(style))
// print the source code
print(string(source[e.StartByte:e.EndByte]))
// reset the style
print(resetStyle)
}
}
}