gitstack

grindlemire/go-tui code browser

3.7 KB Go 200 lines 2026-03-21 · 158ef0a raw
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package lsp

import (
	"testing"
)

func TestGetLineText(t *testing.T) {
	type tc struct {
		content string
		line    int
		want    string
	}

	tests := map[string]tc{
		"first line": {
			content: "package test\n\ntempl Foo() {\n}\n",
			line:    0,
			want:    "package test",
		},
		"empty line": {
			content: "package test\n\ntempl Foo() {\n}\n",
			line:    1,
			want:    "",
		},
		"third line": {
			content: "package test\n\ntempl Foo() {\n}\n",
			line:    2,
			want:    "templ Foo() {",
		},
		"last line no newline": {
			content: "line1\nline2",
			line:    1,
			want:    "line2",
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			got := getLineText(tt.content, tt.line)
			if got != tt.want {
				t.Errorf("getLineText line %d = %q, want %q", tt.line, got, tt.want)
			}
		})
	}
}

func TestGetWordAtOffset(t *testing.T) {
	type tc struct {
		content string
		offset  int
		want    string
	}

	tests := map[string]tc{
		"simple word": {
			content: "hello world",
			offset:  2,
			want:    "hello",
		},
		"second word": {
			content: "hello world",
			offset:  7,
			want:    "world",
		},
		"hyphenated": {
			content: "class=\"flex-col\"",
			offset:  10,
			want:    "flex-col",
		},
		"at symbol": {
			content: "for i := range items",
			offset:  2,
			want:    "for",
		},
		"hash prefix": {
			content: "<div #Header>",
			offset:  7,
			want:    "Header",
		},
		"out of bounds": {
			content: "test",
			offset:  -1,
			want:    "",
		},
		"past end": {
			content: "test",
			offset:  10,
			want:    "",
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			got := getWordAtOffset(tt.content, tt.offset)
			if got != tt.want {
				t.Errorf("getWordAtOffset(%q, %d) = %q, want %q", tt.content, tt.offset, got, tt.want)
			}
		})
	}
}

func TestIsOffsetInGoExpr(t *testing.T) {
	type tc struct {
		content string
		offset  int
		want    bool
	}

	tests := map[string]tc{
		"inside braces": {
			content: "<span>{count}</span>",
			offset:  8,
			want:    true,
		},
		"outside braces": {
			content: "<span>{count}</span>",
			offset:  3,
			want:    false,
		},
		"at start": {
			content: "{expr}",
			offset:  0,
			want:    false,
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			got := isOffsetInGoExpr(tt.content, tt.offset)
			if got != tt.want {
				t.Errorf("isOffsetInGoExpr(%q, %d) = %v, want %v", tt.content, tt.offset, got, tt.want)
			}
		})
	}
}

func TestIsOffsetInClassAttr(t *testing.T) {
	type tc struct {
		content string
		offset  int
		want    bool
	}

	tests := map[string]tc{
		"inside class value": {
			content: `<div class="flex-col">`,
			offset:  15,
			want:    true,
		},
		"outside class": {
			content: `<div class="flex-col">`,
			offset:  3,
			want:    false,
		},
		"after closing quote": {
			content: `<div class="flex-col" id="x">`,
			offset:  25,
			want:    false,
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			got := isOffsetInClassAttr(tt.content, tt.offset)
			if got != tt.want {
				t.Errorf("isOffsetInClassAttr(%q, %d) = %v, want %v", tt.content, tt.offset, got, tt.want)
			}
		})
	}
}

func TestIsOffsetInElementTag(t *testing.T) {
	type tc struct {
		content string
		offset  int
		want    bool
	}

	tests := map[string]tc{
		"inside tag": {
			content: "<div class=\"p-1\">",
			offset:  6,
			want:    true,
		},
		"outside tag": {
			content: "<div>text</div>",
			offset:  8,
			want:    false,
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			got := isOffsetInElementTag(tt.content, tt.offset)
			if got != tt.want {
				t.Errorf("isOffsetInElementTag(%q, %d) = %v, want %v", tt.content, tt.offset, got, tt.want)
			}
		})
	}
}