Files
gopass-mirror/pkg/termio/progress_test.go
Dominik Schulz 670b772350 Fix new lint issues (#2378)
RELEASE_NOTES=n/a

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
2022-10-04 22:17:54 +02:00

46 lines
764 B
Go

package termio
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func ExampleProgressBar() { //nolint:testableexamples
max := 100
pb := NewProgressBar(int64(max))
for i := 0; i < max+20; i++ {
pb.Inc()
pb.Add(23)
pb.Set(42)
time.Sleep(150 * time.Millisecond)
}
time.Sleep(5 * time.Second)
pb.Done()
}
func TestProgress(t *testing.T) { //nolint:paralleltest
max := 2
pb := NewProgressBar(int64(max))
pb.Hidden = true
pb.Inc()
assert.Equal(t, int64(1), pb.current)
}
func TestProgressBytes(t *testing.T) { //nolint:paralleltest
max := 2 << 24
pb := NewProgressBar(int64(max))
pb.Hidden = true
pb.Bytes = true
for i := 0; i < 24; i++ {
pb.Set(2 << (i + 1))
}
assert.Equal(t, int64(max), pb.current)
pb.Done()
}