-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathstyle_test.go
More file actions
313 lines (284 loc) · 7.7 KB
/
style_test.go
File metadata and controls
313 lines (284 loc) · 7.7 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// Copyright 2022-2026 Salesforce, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package style
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestRemoveANSI(t *testing.T) {
tests := map[string]struct {
input string
expected string
}{
"normal strings are left unmodified": {
input: "sometimes strings are plain",
expected: "sometimes strings are plain",
},
"stylized strings have ansi removed": {
input: "sometimes \x1b[1;30mstrings are\x1b[0m bold",
expected: "sometimes strings are bold",
},
"sequences without space are removed": {
input: "executable file not found in $PATH\x1b[1;38;5;178m\x1b[0m",
expected: "executable file not found in $PATH",
},
"characters before ansi are included": {
input: "exit status 1\x1b[1;38;5;178m\x1b[0m",
expected: "exit status 1",
},
"uppercase escapes are removed": {
input: "exit status \x1B[1mnone\x1B[0m",
expected: "exit status none",
},
"unexpected spacing is still escaped": {
input: "script was not found\x1b[1;38;5;178m (sdk_hook_not_found)\x1b[0m",
expected: "script was not found (sdk_hook_not_found)",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
actual := RemoveANSI(tc.input)
assert.Equal(t, tc.expected, actual)
})
}
}
func TestRemoveEmoji(t *testing.T) {
tests := map[string]struct {
input string
expected string
}{
"plain text is unchanged": {
input: "A simple description",
expected: "A simple description",
},
"emoji flags are removed": {
input: "A translation bot 🇨🇳 🇮🇹 🇹🇭 🇫🇷",
expected: "A translation bot",
},
"mixed emoji and text": {
input: "Hello 🌍 world 🚀 test",
expected: "Hello world test",
},
"empty string": {
input: "",
expected: "",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
actual := RemoveEmoji(tc.input)
assert.Equal(t, tc.expected, actual)
})
}
}
func TestToggleStyles(t *testing.T) {
defer func() {
ToggleStyles(false)
}()
t.Run("false sets to false", func(t *testing.T) {
isStyleEnabled = true
isColorShown = true
isLinkShown = true
ToggleStyles(false)
assert.False(t, isStyleEnabled)
assert.False(t, isColorShown)
assert.False(t, isLinkShown)
})
t.Run("true sets to true", func(t *testing.T) {
isStyleEnabled = false
isColorShown = false
isLinkShown = false
ToggleStyles(true)
assert.True(t, isStyleEnabled)
assert.True(t, isColorShown)
assert.True(t, isLinkShown)
})
}
func TestPluralize(t *testing.T) {
tests := map[string]struct {
singular string
plural string
count int
expectedResult string
}{
"0 should be plural": {
singular: "cat",
plural: "cats",
count: 0,
expectedResult: "cats",
},
"1 should be singular": {
singular: "workspace",
plural: "workspaces",
count: 1,
expectedResult: "workspace",
},
"2 should be plural": {
singular: "shoe",
plural: "shoes",
count: 2,
expectedResult: "shoes",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
if s := Pluralize(tc.singular, tc.plural, tc.count); s != tc.expectedResult {
t.Errorf("expected: %s, actual: %s", tc.expectedResult, s)
}
})
}
}
func TestToggleCharm(t *testing.T) {
tests := map[string]struct {
initial bool
toggle bool
expected bool
}{
"enables charm styling": {
initial: false,
toggle: true,
expected: true,
},
"disables charm styling": {
initial: true,
toggle: false,
expected: false,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
isCharmEnabled = tc.initial
defer func() { isCharmEnabled = false }()
ToggleCharm(tc.toggle)
assert.Equal(t, tc.expected, isCharmEnabled)
})
}
}
// testStyleFunc verifies a style function returns the original text (stripped of ANSI)
// and behaves correctly across all three modes: colors off, legacy aurora, and charm lipgloss.
func testStyleFunc(t *testing.T, name string, fn func(string) string) {
t.Helper()
defer func() {
ToggleStyles(false)
ToggleCharm(false)
}()
input := "hello"
t.Run(name+" returns plain text when colors are off", func(t *testing.T) {
ToggleStyles(false)
ToggleCharm(false)
result := fn(input)
assert.Equal(t, input, RemoveANSI(result))
})
t.Run(name+" returns styled text with legacy aurora", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(false)
result := fn(input)
assert.Contains(t, RemoveANSI(result), input)
})
t.Run(name+" returns styled text with charm lipgloss", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(true)
result := fn(input)
assert.Contains(t, RemoveANSI(result), input)
})
}
func TestColorStyleFunctions(t *testing.T) {
testStyleFunc(t, "Secondary", Secondary)
testStyleFunc(t, "CommandText", CommandText)
testStyleFunc(t, "LinkText", LinkText)
testStyleFunc(t, "Selector", Selector)
testStyleFunc(t, "Error", Error)
testStyleFunc(t, "Warning", Warning)
testStyleFunc(t, "Input", Input)
testStyleFunc(t, "Green", Green)
testStyleFunc(t, "Red", Red)
testStyleFunc(t, "Yellow", Yellow)
testStyleFunc(t, "Gray", Gray)
}
func TestTextStyleFunctions(t *testing.T) {
testStyleFunc(t, "Bright", Bright)
testStyleFunc(t, "Bold", Bold)
testStyleFunc(t, "Darken", Darken)
testStyleFunc(t, "Highlight", Highlight)
testStyleFunc(t, "Underline", Underline)
}
func TestHeader(t *testing.T) {
defer func() {
ToggleStyles(false)
ToggleCharm(false)
}()
t.Run("uppercases text", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(true)
result := Header("commands")
assert.Contains(t, RemoveANSI(result), "COMMANDS")
})
t.Run("uppercases text with legacy", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(false)
result := Header("commands")
assert.Contains(t, RemoveANSI(result), "COMMANDS")
})
}
func TestFaint(t *testing.T) {
defer func() {
ToggleStyles(false)
ToggleCharm(false)
}()
t.Run("returns plain text when colors are off", func(t *testing.T) {
ToggleStyles(false)
result := Faint("hello")
assert.Equal(t, "hello", result)
})
t.Run("returns styled text with legacy", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(false)
result := Faint("hello")
assert.Contains(t, result, "hello")
assert.NotEqual(t, "hello", result)
})
t.Run("returns styled text with charm", func(t *testing.T) {
ToggleStyles(true)
ToggleCharm(true)
result := Faint("hello")
assert.Contains(t, RemoveANSI(result), "hello")
})
}
func TestStyler(t *testing.T) {
t.Run("returns an aurora instance", func(t *testing.T) {
s := Styler()
assert.NotNil(t, s)
})
}
func TestEmoji(t *testing.T) {
defer func() {
ToggleStyles(false)
}()
t.Run("returns empty when colors are off", func(t *testing.T) {
ToggleStyles(false)
assert.Equal(t, "", Emoji("gear"))
})
t.Run("returns empty for empty alias", func(t *testing.T) {
assert.Equal(t, "", Emoji(""))
})
t.Run("returns empty for whitespace alias", func(t *testing.T) {
ToggleStyles(true)
assert.Equal(t, "", Emoji(" "))
})
t.Run("returns emoji with padding for known aliases", func(t *testing.T) {
ToggleStyles(true)
result := Emoji("gear")
assert.NotEmpty(t, result)
})
}