-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_test.go
More file actions
226 lines (201 loc) · 5.74 KB
/
main_test.go
File metadata and controls
226 lines (201 loc) · 5.74 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package main
import (
"strings"
"testing"
"github.com/dotcommander/statusline/internal/config"
)
func init() {
pal = normalPalette()
}
func TestProgressivePromptCollapse(t *testing.T) {
t.Parallel()
dot := pal.green + config.DefaultConfig.Dot + ansiReset
sep := config.DefaultConfig.Separator
makePromptSlots := func(prompts []string) []slot {
var slots []slot
shown := 0
for i := len(prompts) - 1; i >= 0 && shown < 3; i-- {
prompt := prompts[i]
icon := getPromptIcon(prompt)
wordCount := 3
color := pal.gray
style := ansiItalic
prefix := " "
if shown == 0 {
wordCount = 4
color = pal.prompt
style = ""
prefix = " "
}
content := prefix + color + style + icon + " " + strings.ToLower(truncateWords(prompt, wordCount))
w := plainLen(content)
seg := Segment{Content: content, FgAnsi: pal.prompt}
captured := seg
slots = append(slots, slot{
line: 1, width: w, noSep: true,
build: func(_ bool) Segment { return captured },
})
shown++
}
return slots
}
dirSlot := slot{
line: 1, width: 10,
build: func(active bool) Segment {
return dirSegment("statusline", active)
},
}
prompts := []string{
"add authentication to the api endpoint",
"fix the broken tests in auth module",
"review work done today on the project",
}
t.Run("all prompts fit at wide terminal", func(t *testing.T) {
pSlots := makePromptSlots(prompts)
allSlots := append([]slot{dirSlot}, pSlots...)
allSlots = append(allSlots, slot{
line: 2, width: 5,
build: func(_ bool) Segment { return Segment{Content: "line2", FgAnsi: ""} },
})
out := renderLines(dot, allSlots, 200, sep)
lines := strings.Split(out, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d: %q", len(lines), out)
}
line1Width := plainLen(lines[0])
if line1Width > 200 {
t.Errorf("line 1 width %d exceeds termWidth 200", line1Width)
}
})
t.Run("oldest prompt dropped at medium width", func(t *testing.T) {
pSlots := makePromptSlots(prompts)
allSlots := append([]slot{dirSlot}, pSlots...)
allSlots = append(allSlots, slot{
line: 2, width: 5,
build: func(_ bool) Segment { return Segment{Content: "line2", FgAnsi: ""} },
})
// Compute the full width of line 1 with all prompts
fullWidth := 2 // dotWidth
for _, s := range allSlots {
if s.line == 1 {
fullWidth += s.width
}
}
// Set termWidth so the oldest prompt must be dropped
termWidth := fullWidth - 5
out := renderLines(dot, allSlots, termWidth, sep)
lines := strings.Split(out, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d", len(lines))
}
line1Width := plainLen(lines[0])
if line1Width > termWidth {
t.Errorf("line 1 width %d exceeds termWidth %d", line1Width, termWidth)
}
// Should still contain the newest prompt text
if !strings.Contains(lines[0], "review work done") {
t.Error("newest prompt should be preserved")
}
})
t.Run("all prompts dropped at narrow width", func(t *testing.T) {
pSlots := makePromptSlots(prompts)
allSlots := append([]slot{dirSlot}, pSlots...)
allSlots = append(allSlots, slot{
line: 2, width: 5,
build: func(_ bool) Segment { return Segment{Content: "line2", FgAnsi: ""} },
})
out := renderLines(dot, allSlots, 20, sep)
lines := strings.Split(out, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d", len(lines))
}
line1Width := plainLen(lines[0])
if line1Width > 20 {
t.Errorf("line 1 width %d exceeds termWidth 20", line1Width)
}
})
t.Run("line 2 always present", func(t *testing.T) {
for _, tw := range []int{20, 40, 60, 80, 100, 120, 200} {
pSlots := makePromptSlots(prompts)
allSlots := append([]slot{dirSlot}, pSlots...)
allSlots = append(allSlots, slot{
line: 2, width: 5,
build: func(_ bool) Segment { return Segment{Content: "line2", FgAnsi: ""} },
})
out := renderLines(dot, allSlots, tw, sep)
lines := strings.Split(out, "\n")
if len(lines) != 2 {
t.Errorf("termWidth=%d: expected 2 lines, got %d", tw, len(lines))
}
if plainLen(lines[0]) > tw {
t.Errorf("termWidth=%d: line 1 width %d exceeds termWidth", tw, plainLen(lines[0]))
}
}
})
}
func TestPlainLen(t *testing.T) {
t.Parallel()
tests := []struct {
input string
want int
}{
{"hello", 5},
{"\x1b[38;2;100;200;50mhello\x1b[0m", 5},
{"\x1b[3m\x1b[38;2;86;95;137m› test\x1b[0m", 6},
{" " + "\x1b[38;2;86;95;137m" + "› hello", 9}, // " › hello"
{"●", 1},
}
for _, tt := range tests {
got := plainLen(tt.input)
if got != tt.want {
t.Errorf("plainLen(%q) = %d, want %d", tt.input, got, tt.want)
}
}
}
func TestPlainLenCellWidth(t *testing.T) {
t.Parallel()
tests := []struct {
name string
input string
want int
}{
{"ascii", "abc", 3},
{"ansi-wrapped ascii", "\x1b[31mred\x1b[0m", 3},
{"cjk wide chars", "日本", 4},
{"cjk plus ascii", "abc日", 5},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := plainLen(tt.input)
if got != tt.want {
t.Errorf("plainLen(%q) = %d, want %d", tt.input, got, tt.want)
}
})
}
}
func TestTruncateVisibleCellWidth(t *testing.T) {
t.Parallel()
tests := []struct {
name string
input string
maxWidth int
want string
}{
{"cjk truncated to width 4", "日本語", 4, "日本"},
{"cjk truncated to width 3 drops wide rune", "日本語", 3, "日"},
{"ansi preserved with truncation", "\x1b[31m日本語\x1b[0m", 2, "\x1b[31m日"},
{"ascii unchanged when within width", "hello", 10, "hello"},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := truncateVisible(tt.input, tt.maxWidth)
if got != tt.want {
t.Errorf("truncateVisible(%q, %d) = %q, want %q", tt.input, tt.maxWidth, got, tt.want)
}
})
}
}