forked from pterm/pterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prefix_printer_test.go
427 lines (373 loc) · 9.77 KB
/
prefix_printer_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
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
package pterm_test
import (
"errors"
"fmt"
"io"
"os"
"testing"
"github.com/MarvinJWendt/testza"
"github.com/overmindtech/pterm"
)
var prefixPrinters = []pterm.PrefixPrinter{pterm.Info, pterm.Success, pterm.Warning, pterm.Error, *pterm.Fatal.WithFatal(false)}
func TestPrefixPrinterNilPrint(t *testing.T) {
proxyToDevNull()
p := pterm.PrefixPrinter{}
p.Println("Hello, World!")
}
func TestPrefixPrinterPrintMethods(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("Print", func(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
p.Print(a)
})
})
t.Run("PrintWithScope", func(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
p2 := p.WithScope(pterm.Scope{
Text: "test",
Style: pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold),
})
p2.Print(a)
})
})
t.Run("PrintWithShowLineNumber", func(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
p2 := p.WithShowLineNumber()
p2.Print(a)
})
})
t.Run("PrintWithMultipleLines", func(t *testing.T) {
p2 := p.WithScope(pterm.Scope{
Text: "test",
Style: pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold),
})
p2.Print("This text\nhas\nmultiple\nlines")
})
t.Run("Printf", func(t *testing.T) {
testPrintfContains(t, func(w io.Writer, format string, a interface{}) {
p.Printf(format, a)
})
})
t.Run("Printfln", func(t *testing.T) {
testPrintflnContains(t, func(w io.Writer, format string, a interface{}) {
p.Printfln(format, a)
})
})
t.Run("Println", func(t *testing.T) {
testPrintlnContains(t, func(w io.Writer, a interface{}) {
p.Println(a)
})
})
t.Run("Sprint", func(t *testing.T) {
testSprintContains(t, func(a interface{}) string {
return p.Sprint(a)
})
})
t.Run("Sprintf", func(t *testing.T) {
testSprintfContains(t, func(format string, a interface{}) string {
return p.Sprintf(format, a)
})
})
t.Run("Sprintfln", func(t *testing.T) {
testSprintflnContains(t, func(format string, a interface{}) string {
return p.Sprintfln(format, a)
})
})
t.Run("Sprintln", func(t *testing.T) {
testSprintlnContains(t, func(a interface{}) string {
return p.Sprintln(a)
})
})
t.Run("PrintOnError", func(t *testing.T) {
result := captureStdout(func(w io.Writer) {
p.PrintOnError(errors.New("hello world"))
})
testza.AssertContains(t, result, "hello world")
})
t.Run("PrintIfError_WithoutError", func(t *testing.T) {
result := captureStdout(func(w io.Writer) {
p.PrintOnError(nil)
})
testza.AssertZero(t, result)
})
t.Run("PrintOnErrorf", func(t *testing.T) {
result := captureStdout(func(w io.Writer) {
p.PrintOnErrorf("wrapping error : %w", errors.New("hello world"))
})
testza.AssertContains(t, result, "hello world")
})
t.Run("PrintIfError_WithoutErrorf", func(t *testing.T) {
result := captureStdout(func(w io.Writer) {
p.PrintOnErrorf("", nil)
})
testza.AssertZero(t, result)
})
}
}
func TestPrefixPrinterWithoutPrefix(t *testing.T) {
pterm.DisableStyling()
for _, p := range prefixPrinters {
p2 := p.WithPrefix(pterm.Prefix{})
t.Run("", func(t *testing.T) {
for _, printable := range printables {
ret := captureStdout(func(w io.Writer) {
p2.Print(printable)
})
testza.AssertEqual(t, ret, fmt.Sprint(printable))
}
})
}
pterm.EnableStyling()
}
func TestSprintfWithNewLineEnding(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
testza.AssertNotContains(t, "\n\n", p.Sprintf("%s\n\n\n\n", "Hello, World!"))
})
}
}
func TestPrefixPrinter_GetFormattedPrefix(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
testza.AssertNotZero(t, p.GetFormattedPrefix())
})
}
}
func TestPrefixPrinter_WithFatal(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithFatal()
testza.AssertEqual(t, true, p2.Fatal)
})
}
}
func TestPrefixPrinter_WithShowLineNumber(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithShowLineNumber()
testza.AssertEqual(t, true, p2.ShowLineNumber)
})
}
}
func TestPrefixPrinter_WithMessageStyle(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
s := pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold)
p2 := p.WithMessageStyle(s)
testza.AssertEqual(t, s, p2.MessageStyle)
})
}
}
func TestPrefixPrinter_WithPrefix(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
s := pterm.Prefix{
Text: "test",
Style: pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold),
}
p2 := p.WithPrefix(s)
testza.AssertEqual(t, s, p2.Prefix)
})
}
}
func TestPrefixPrinter_WithScope(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
s := pterm.Scope{
Text: "test",
Style: pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold),
}
p2 := p.WithScope(s)
testza.AssertEqual(t, s, p2.Scope)
})
}
}
func Test_checkFatal(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithFatal()
testza.AssertPanics(t, func() {
p2.Println("Hello, World!")
})
})
}
}
func TestPrefixPrinter_WithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
testza.AssertTrue(t, p2.Debugger)
})
}
}
func TestPrefixPrinter_PrintWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testPrintContains(t, func(w io.Writer, a interface{}) {
p2.Print(a)
})
})
}
}
func TestPrefixPrinter_PrintlnWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testPrintlnContains(t, func(w io.Writer, a interface{}) {
p2.Println(a)
})
})
}
}
func TestPrefixPrinter_PrintfWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testPrintfContains(t, func(w io.Writer, format string, a interface{}) {
p2.Printf(format, a)
})
})
}
}
func TestPrefixPrinter_SprintWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testSprintContains(t, func(a interface{}) string {
return p2.Sprint(a)
})
})
}
}
func TestPrefixPrinter_SprintlnWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testSprintlnContains(t, func(a interface{}) string {
return p2.Sprintln(a)
})
})
}
}
func TestPrefixPrinter_SprintfWithDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.EnableDebugMessages()
testSprintfContains(t, func(format string, a interface{}) string {
return p2.Sprintf(format, a)
})
})
}
}
func TestPrefixPrinter_PrintWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testDoesNotOutput(t, func(w io.Writer) {
p2.Print("Hello, World!")
})
})
}
}
func TestPrefixPrinter_PrintlnWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testDoesNotOutput(t, func(w io.Writer) {
p2.Println("Hello, World!")
})
})
}
}
func TestPrefixPrinter_PrintfWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testDoesNotOutput(t, func(w io.Writer) {
p2.Printf("Hello, World!")
})
})
}
}
func TestPrefixPrinter_PrintflnWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testDoesNotOutput(t, func(w io.Writer) {
p2.Printfln("Hello, World!")
})
})
}
}
func TestPrefixPrinter_SprintWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
testEmpty(t, func(a interface{}) string {
return p2.Sprint(a)
})
})
}
}
func TestPrefixPrinter_SprintlnWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testEmpty(t, func(a interface{}) string {
return p2.Sprintln(a)
})
})
}
}
func TestPrefixPrinter_SprintfWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testEmpty(t, func(a interface{}) string {
return p2.Sprintf("Hello, %s!", a)
})
})
}
}
func TestPrefixPrinter_SprintflnWithoutDebugger(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithDebugger()
pterm.DisableDebugMessages()
testEmpty(t, func(a interface{}) string {
return p2.Sprintfln("Hello, %s!", a)
})
})
}
}
func TestPrefixPrinter_WithLineNumberOffset(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
p2 := p.WithLineNumberOffset(1337)
testza.AssertEqual(t, 1337, p2.LineNumberOffset)
})
}
}
func TestPrefixPrinter_WithWriter(t *testing.T) {
for _, p := range prefixPrinters {
t.Run("", func(t *testing.T) {
s := os.Stderr
p2 := p.WithWriter(s)
testza.AssertEqual(t, s, p2.Writer)
testza.AssertZero(t, p.Writer)
})
}
}