-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser_test.go
76 lines (65 loc) · 1.27 KB
/
user_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
package sdump
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestCounter_TakeN(t *testing.T) {
tt := []struct {
name string
initialState int64
itemsToTake int64
expectedValue int64
hasError bool
}{
{
name: "can take from non zero counter",
initialState: 10,
itemsToTake: 1,
expectedValue: 9,
hasError: false,
},
{
name: "cannot take from zero counter",
initialState: 0,
itemsToTake: 1,
expectedValue: 0,
hasError: true,
},
}
for _, v := range tt {
t.Run(v.name, func(t *testing.T) {
c := Counter(v.initialState)
err := c.TakeN(v.itemsToTake)
if v.hasError {
require.Error(t, err)
return
}
require.Equal(t, Counter(v.expectedValue), c)
})
}
}
func TestCounter_Add(t *testing.T) {
tt := []struct {
name string
initialState int64
expectedValue int64
}{
{
name: "zero couner can be increased",
initialState: 0,
expectedValue: 1,
},
{
name: "non zero counter can be increased",
initialState: 1,
expectedValue: 2,
},
}
for _, v := range tt {
t.Run(v.name, func(t *testing.T) {
c := Counter(v.initialState)
c.Add()
require.Equal(t, Counter(v.expectedValue), c)
})
}
}