forked from vbauerster/mpb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbar_test.go
326 lines (265 loc) · 6.43 KB
/
bar_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
package mpb_test
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"strings"
"sync/atomic"
"testing"
"time"
"unicode/utf8"
"github.com/vbauerster/mpb/v7"
"github.com/vbauerster/mpb/v7/decor"
)
func TestBarCompleted(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(ioutil.Discard))
total := 80
bar := p.AddBar(int64(total))
if bar.Completed() {
t.Fail()
}
bar.IncrBy(total)
if !bar.Completed() {
t.Error("bar isn't completed after increment")
}
p.Wait()
}
func TestBarAborted(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(ioutil.Discard))
total := 80
bar := p.AddBar(int64(total))
if bar.Aborted() {
t.Fail()
}
bar.Abort(false)
if !bar.Aborted() {
t.Error("bar isn't aborted after abort call")
}
p.Wait()
}
func TestBarEnableTriggerCompleteAndIncrementBefore(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(ioutil.Discard))
bar := p.AddBar(0) // never complete bar
for _, f := range []func(){
func() { bar.SetTotal(40, false) },
func() { bar.IncrBy(60) },
func() { bar.SetTotal(80, false) },
func() { bar.IncrBy(20) },
} {
f()
if bar.Completed() {
t.Fail()
}
}
bar.EnableTriggerComplete()
if !bar.Completed() {
t.Fail()
}
p.Wait()
}
func TestBarEnableTriggerCompleteAndIncrementAfter(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(ioutil.Discard))
bar := p.AddBar(0) // never complete bar
for _, f := range []func(){
func() { bar.SetTotal(40, false) },
func() { bar.IncrBy(60) },
func() { bar.SetTotal(80, false) },
func() { bar.EnableTriggerComplete() },
} {
f()
if bar.Completed() {
t.Fail()
}
}
bar.IncrBy(20)
if !bar.Completed() {
t.Fail()
}
p.Wait()
}
func TestBarID(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(ioutil.Discard))
total := 100
wantID := 11
bar := p.AddBar(int64(total), mpb.BarID(wantID))
gotID := bar.ID()
if gotID != wantID {
t.Errorf("Expected bar id: %d, got %d\n", wantID, gotID)
}
bar.IncrBy(total)
p.Wait()
}
func TestBarSetRefill(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(mpb.WithOutput(&buf), mpb.WithWidth(100))
total := 100
till := 30
refiller := "+"
bar := p.New(int64(total), mpb.BarStyle().Refiller(refiller), mpb.BarFillerTrim())
bar.SetRefill(int64(till))
bar.IncrBy(till)
bar.IncrBy(total - till)
p.Wait()
wantBar := fmt.Sprintf("[%s%s]",
strings.Repeat(refiller, till-1),
strings.Repeat("=", total-till-1),
)
got := string(bytes.Split(buf.Bytes(), []byte("\n"))[0])
if !strings.Contains(got, wantBar) {
t.Errorf("Want bar: %q, got bar: %q\n", wantBar, got)
}
}
func TestBarHas100PercentWithBarRemoveOnComplete(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(&buf))
total := 50
bar := p.AddBar(int64(total),
mpb.BarRemoveOnComplete(),
mpb.AppendDecorators(decor.Percentage()),
)
bar.IncrBy(total)
p.Wait()
hundred := "100 %"
if !bytes.Contains(buf.Bytes(), []byte(hundred)) {
t.Errorf("Bar's buffer does not contain: %q\n", hundred)
}
}
func TestBarStyle(t *testing.T) {
var buf bytes.Buffer
customFormat := "╢▌▌░╟"
runes := []rune(customFormat)
total := 80
p := mpb.New(mpb.WithWidth(total), mpb.WithOutput(&buf))
bs := mpb.BarStyle()
bs.Lbound(string(runes[0]))
bs.Filler(string(runes[1]))
bs.Tip(string(runes[2]))
bs.Padding(string(runes[3]))
bs.Rbound(string(runes[4]))
bar := p.New(int64(total), bs, mpb.BarFillerTrim())
bar.IncrBy(total)
p.Wait()
wantBar := fmt.Sprintf("%s%s%s%s",
string(runes[0]),
strings.Repeat(string(runes[1]), total-3),
string(runes[2]),
string(runes[4]),
)
got := string(bytes.Split(buf.Bytes(), []byte("\n"))[0])
if !strings.Contains(got, wantBar) {
t.Errorf("Want bar: %q:%d, got bar: %q:%d\n", wantBar, utf8.RuneCountInString(wantBar), got, utf8.RuneCountInString(got))
}
}
func TestBarPanicBeforeComplete(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(
mpb.WithWidth(80),
mpb.WithDebugOutput(&buf),
mpb.WithOutput(ioutil.Discard),
)
total := 100
panicMsg := "Upps!!!"
var pCount uint32
bar := p.AddBar(int64(total),
mpb.PrependDecorators(panicDecorator(panicMsg,
func(st decor.Statistics) bool {
if st.Current >= 42 {
atomic.AddUint32(&pCount, 1)
return true
}
return false
},
)),
)
bar.IncrBy(total)
p.Wait()
if pCount != 1 {
t.Errorf("Decorator called after panic %d times, expected 1\n", pCount)
}
barStr := buf.String()
if !strings.Contains(barStr, panicMsg) {
t.Errorf("%q doesn't contain %q\n", barStr, panicMsg)
}
}
func TestBarPanicAfterComplete(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(
mpb.WithWidth(80),
mpb.WithDebugOutput(&buf),
mpb.WithOutput(ioutil.Discard),
)
total := 100
panicMsg := "Upps!!!"
var pCount uint32
bar := p.AddBar(int64(total),
mpb.PrependDecorators(panicDecorator(panicMsg,
func(st decor.Statistics) bool {
if st.Completed {
atomic.AddUint32(&pCount, 1)
return true
}
return false
},
)),
)
bar.IncrBy(total)
p.Wait()
if pCount != 1 {
t.Errorf("Decorator called after panic %d times, expected 1\n", pCount)
}
barStr := buf.String()
if !strings.Contains(barStr, panicMsg) {
t.Errorf("%q doesn't contain %q\n", barStr, panicMsg)
}
}
func TestDecorStatisticsAvailableWidth(t *testing.T) {
var called [2]bool
td1 := func(s decor.Statistics) string {
if s.AvailableWidth != 80 {
t.Errorf("expected AvailableWidth %d got %d\n", 80, s.AvailableWidth)
}
called[0] = true
return fmt.Sprintf("\x1b[31;1;4m%s\x1b[0m", strings.Repeat("0", 20))
}
td2 := func(s decor.Statistics) string {
if s.AvailableWidth != 40 {
t.Errorf("expected AvailableWidth %d got %d\n", 40, s.AvailableWidth)
}
called[1] = true
return ""
}
ctx, cancel := context.WithCancel(context.Background())
refresh := make(chan interface{})
p := mpb.NewWithContext(ctx, mpb.WithWidth(100),
mpb.WithManualRefresh(refresh),
mpb.WithOutput(ioutil.Discard),
)
_ = p.AddBar(0,
mpb.BarFillerTrim(),
mpb.PrependDecorators(
decor.Name(strings.Repeat("0", 20)),
decor.Any(td1),
),
mpb.AppendDecorators(
decor.Name(strings.Repeat("0", 20)),
decor.Any(td2),
),
)
refresh <- time.Now()
cancel()
p.Wait()
for i, ok := range called {
if !ok {
t.Errorf("Decorator %d isn't called", i+1)
}
}
}
func panicDecorator(panicMsg string, cond func(decor.Statistics) bool) decor.Decorator {
return decor.Any(func(st decor.Statistics) string {
if cond(st) {
panic(panicMsg)
}
return ""
})
}