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
|
package mpb_test
import (
"bytes"
"context"
"fmt"
"io"
"strings"
"testing"
"time"
"unicode/utf8"
"github.com/vbauerster/mpb/v8"
"github.com/vbauerster/mpb/v8/decor"
)
func TestBarCompleted(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
total := 80
bar := p.AddBar(int64(total))
if bar.Completed() {
t.Error("expected bar not to complete")
}
bar.IncrBy(total)
if !bar.Completed() {
t.Error("expected bar to complete")
}
p.Wait()
}
func TestBarAborted(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
total := 80
bar := p.AddBar(int64(total))
if bar.Aborted() {
t.Error("expected bar not to be aborted")
}
bar.Abort(false)
if !bar.Aborted() {
t.Error("expected bar to be aborted")
}
p.Wait()
}
func TestBarSetTotal(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
bar := p.AddBar(0)
bar.SetTotal(0, false)
if bar.Completed() {
t.Error("expected bar not to complete")
}
bar.SetTotal(0, true)
if !bar.Completed() {
t.Error("expected bar to complete")
}
p.Wait()
}
func TestBarEnableTriggerCompleteZeroBar(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
bar := p.AddBar(0) // never complete bar
if bar.Completed() {
t.Error("expected bar not to complete")
}
// Calling bar.SetTotal(0, true) has same effect
// but this one is more concise and intuitive
bar.EnableTriggerComplete()
if !bar.Completed() {
t.Error("expected bar to complete")
}
p.Wait()
}
func TestBarEnableTriggerCompleteAndIncrementBefore(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
bar := p.AddBar(0) // never complete bar
targetTotal := int64(80)
for _, f := range []func(){
func() { bar.SetTotal(40, false) },
func() { bar.IncrBy(60) },
func() { bar.SetTotal(targetTotal, false) },
func() { bar.IncrBy(20) },
} {
f()
if bar.Completed() {
t.Error("expected bar not to complete")
}
}
bar.EnableTriggerComplete()
if !bar.Completed() {
t.Error("expected bar to complete")
}
if current := bar.Current(); current != targetTotal {
t.Errorf("Expected current: %d, got: %d", targetTotal, current)
}
p.Wait()
}
func TestBarEnableTriggerCompleteAndIncrementAfter(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.Discard))
bar := p.AddBar(0) // never complete bar
targetTotal := int64(80)
for _, f := range []func(){
func() { bar.SetTotal(40, false) },
func() { bar.IncrBy(60) },
func() { bar.SetTotal(targetTotal, false) },
func() { bar.EnableTriggerComplete() }, // disables any next SetTotal
func() { bar.SetTotal(100, true) }, // nop
} {
f()
if bar.Completed() {
t.Error("expected bar not to complete")
}
}
bar.IncrBy(20)
if !bar.Completed() {
t.Error("expected bar to complete")
}
if current := bar.Current(); current != targetTotal {
t.Errorf("Expected current: %d, got: %d", targetTotal, current)
}
p.Wait()
}
func TestBarID(t *testing.T) {
p := mpb.New(mpb.WithWidth(80), mpb.WithOutput(io.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", wantID, gotID)
}
bar.IncrBy(total)
p.Wait()
}
func TestBarSetRefill(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(
mpb.WithWidth(100),
mpb.WithOutput(&buf),
mpb.WithAutoRefresh(),
)
total := 100
till := 30
refiller := "+"
bar := p.New(int64(total), mpb.BarStyle().Refiller(refiller), mpb.BarFillerTrim())
bar.IncrBy(till)
bar.SetRefill(int64(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", wantBar, got)
}
}
func TestBarHas100PercentWithBarRemoveOnComplete(t *testing.T) {
var buf bytes.Buffer
p := mpb.New(
mpb.WithWidth(80),
mpb.WithOutput(&buf),
mpb.WithAutoRefresh(),
)
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", hundred)
}
}
func TestBarStyle(t *testing.T) {
var buf bytes.Buffer
customFormat := "╢▌▌░╟"
runes := []rune(customFormat)
total := 80
p := mpb.New(
mpb.WithWidth(80),
mpb.WithOutput(&buf),
mpb.WithAutoRefresh(),
)
bs := mpb.BarStyle()
bs = bs.Lbound(string(runes[0]))
bs = bs.Filler(string(runes[1]))
bs = bs.Tip(string(runes[2]))
bs = bs.Padding(string(runes[3]))
bs = 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", wantBar, utf8.RuneCountInString(wantBar), got, utf8.RuneCountInString(got))
}
}
func TestDecorStatisticsAvailableWidth(t *testing.T) {
ch := make(chan int, 2)
td1 := func(s decor.Statistics) string {
ch <- s.AvailableWidth
return strings.Repeat("0", 20)
}
td2 := func(s decor.Statistics) string {
ch <- s.AvailableWidth
return ""
}
ctx, cancel := context.WithCancel(context.Background())
refresh := make(chan interface{})
p := mpb.NewWithContext(ctx,
mpb.WithWidth(100),
mpb.WithManualRefresh(refresh),
mpb.WithOutput(io.Discard),
)
_ = p.AddBar(0,
mpb.BarFillerTrim(),
mpb.PrependDecorators(
decor.Name(strings.Repeat("0", 20)),
decor.Meta(
decor.Any(td1),
func(s string) string {
return "\x1b[31;1m" + s + "\x1b[0m"
},
),
),
mpb.AppendDecorators(
decor.Name(strings.Repeat("0", 20)),
decor.Any(td2),
),
)
refresh <- time.Now()
go func() {
time.Sleep(10 * time.Millisecond)
cancel()
}()
p.Wait()
if availableWidth := <-ch; availableWidth != 80 {
t.Errorf("expected AvailableWidth %d got %d", 80, availableWidth)
}
if availableWidth := <-ch; availableWidth != 40 {
t.Errorf("expected AvailableWidth %d got %d", 40, availableWidth)
}
}
func TestBarQueueAfterBar(t *testing.T) {
shutdown := make(chan interface{})
ctx, cancel := context.WithCancel(context.Background())
p := mpb.NewWithContext(ctx,
mpb.WithOutput(io.Discard),
mpb.WithAutoRefresh(),
mpb.WithShutdownNotifier(shutdown),
)
a := p.AddBar(100)
b := p.AddBar(100, mpb.BarQueueAfter(a))
identity := map[*mpb.Bar]string{
a: "a",
b: "b",
}
a.IncrBy(100)
a.Wait()
cancel()
bars := (<-shutdown).([]*mpb.Bar)
if l := len(bars); l != 1 {
t.Errorf("Expected len of bars: %d, got: %d", 1, l)
}
p.Wait()
if bars[0] != b {
t.Errorf("Expected bars[0] == b, got: %s", identity[bars[0]])
}
}
|