-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogressbar_test.go
194 lines (164 loc) · 3.62 KB
/
progressbar_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
package progressbar
import (
"os"
"testing"
)
func TestBarWidth(t *testing.T) {
cases := []struct {
value int
throwsErr bool
}{
{10, false},
{100, false},
{0, true},
{-10, true},
}
for _, c := range cases {
bar, err := New(10)
err = BarWidth(c.value)(bar)
if (err != nil) != c.throwsErr {
t.Errorf("Input: %d. Error expected: %t. Error thrown: %t", c.value, c.throwsErr, (err != nil))
}
}
}
func TestBarTheme(t *testing.T) {
cases := []struct {
value Theme
throwsErr bool
}{
{Theme{'|', '|', '▓'}, false},
{Theme{}, true},
{Theme{'|', 0, 0}, true},
{Theme{0, '|', 0}, true},
{Theme{0, 0, '▓'}, true},
}
for _, c := range cases {
bar, err := New(10)
err = BarTheme(c.value)(bar)
if (err != nil) != c.throwsErr {
t.Errorf("Input: %d. Error expected: %t. Error thrown: %t", c.value, c.throwsErr, (err != nil))
}
}
}
func TestNew(t *testing.T) {
// Case 1
_, err := New(-10)
if err == nil {
t.Errorf("Error expected! Invalid maxVal %d.", -10)
}
// Case 2
_, err = New(-10, BarWidth(-20))
if err == nil {
t.Errorf("Error expected! Invalid BarWidth %d.", -20)
}
// Case 3
theme := Theme{}
_, err = New(-10, BarTheme(theme))
if err == nil {
t.Errorf("Error expected! Invalid BarTheme %d.", theme)
}
// Case 4
_, err = New(10, BarWidth(50))
if err != nil {
t.Errorf("Error thrown, no error expected!")
}
}
func TestStartNew(t *testing.T) {
os.Stdout = nil
// Negative maxVal
_, err := StartNew(-10)
if err == nil {
t.Errorf("Error expected! Invalid maxVal %d.", -10)
}
// Error in varArgs
_, err = StartNew(-10, BarWidth(-20))
if err == nil {
t.Errorf("Error expected! Invalid BarWidth %d.", -20)
}
// Error in varArgs
theme := Theme{}
_, err = StartNew(-10, BarTheme(theme))
if err == nil {
t.Errorf("Error expected! Invalid BarTheme %d.", theme)
}
// Positive case
_, err = StartNew(10, BarWidth(50))
if err != nil {
t.Errorf("Error thrown, no error expected!")
}
}
func TestSet(t *testing.T) {
os.Stdout = nil
// Positive case
bar, _ := StartNew(10)
bar.Set(5)
if bar.isFinished {
t.Errorf("Bar should not be finished!")
}
if bar.val != 5 {
t.Errorf("Invalid value! Is: %d, should be: %d", bar.val, 5)
}
// Too large values should end the bar
bar, _ = StartNew(10)
bar.Set(20)
if !bar.isFinished {
t.Errorf("Bar should be finished!")
}
// Negative values should be interpreted as 0
bar, _ = StartNew(10)
bar.Set(-10)
if bar.isFinished {
t.Errorf("Bar should not be finished!")
}
if bar.val != 0 {
t.Errorf("Invalid value! Is: %d, should be: %d", bar.val, 0)
}
}
func TestIncrement(t *testing.T) {
os.Stdout = nil
// Positive case
bar, _ := StartNew(10)
bar.Increment()
if bar.isFinished {
t.Errorf("Bar should not be finished!")
}
if bar.val != 1 {
t.Errorf("Invalid value! Is: %d, should be: %d", bar.val, 1)
}
// Too large values should end the bar
bar, _ = StartNew(10)
bar.Set(9)
bar.Increment()
if !bar.isFinished {
t.Errorf("Bar should be finished!")
}
}
func TestAdd(t *testing.T) {
os.Stdout = nil
// Positive case
bar, _ := StartNew(10)
bar.Add(5)
if bar.isFinished {
t.Errorf("Bar should not be finished!")
}
if bar.val != 5 {
t.Errorf("Invalid value! Is: %d, should be: %d", bar.val, 5)
}
// Too large values should end the bar
bar, _ = StartNew(10)
bar.Set(9)
bar.Add(5)
if !bar.isFinished {
t.Errorf("Bar should be finished!")
}
// Negative values should be interpreted as 0
bar, _ = StartNew(10)
bar.Set(2)
bar.Add(-5)
if bar.isFinished {
t.Errorf("Bar should not be finished!")
}
if bar.val != 0 {
t.Errorf("Invalid value! Is: %d, should be: %d", bar.val, 0)
}
}