-
Notifications
You must be signed in to change notification settings - Fork 0
/
serial_test.go
173 lines (167 loc) · 3.21 KB
/
serial_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
// @Description
package kgo
import (
"errors"
"fmt"
"sync/atomic"
"testing"
"github.com/stretchr/testify/assert"
"go.uber.org/multierr"
)
func TestSerialE(t *testing.T) {
type args struct {
fns []func() error
}
fn := func() error {
return errors.New("error")
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
{
name: "serial",
args: args{
fns: []func() error{
fn, fn, fn, fn,
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := SerialWithError(tt.args.fns...)
assert.NotNil(t, got)
err := got()
assert.NotNil(t, err)
errs := multierr.Errors(err)
assert.Len(t, errs, 4)
for _, err := range errs {
assert.Equal(t, err.Error(), "error")
}
})
}
}
func TestSerialUntilError(t *testing.T) {
type args struct {
fns []func() error
}
var value int64
fn := func(arg int64) func() error {
return func() error {
if arg < 0 {
return errors.New("invalid")
}
atomic.AddInt64(&value, arg)
return nil
}
}
tests := []struct {
name string
args args
want func() error
}{
{
name: "until",
args: args{
fns: []func() error{
fn(1), fn(2), fn(-1), fn(4),
},
},
want: nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := SerialUntilError(tt.args.fns...)
err := got()
assert.NotNil(t, err)
assert.Equal(t, err.Error(), "invalid")
assert.Equal(t, atomic.LoadInt64(&value), int64(1+2))
})
}
}
func TestSerialWhenError(t *testing.T) {
type args struct {
fns []func() error
}
var value int64
fn := func(arg int64) func() error {
return func() error {
if arg < 0 {
return fmt.Errorf("invalid %+d", arg)
}
atomic.AddInt64(&value, arg)
return nil
}
}
tests := []struct {
name string
args args
we WhenError
}{
// TODO: Add test cases.
{
name: "panic when error",
args: args{
fns: []func() error{
fn(1), fn(-1), fn(3), fn(-2), fn(5),
},
},
we: PanicWhenError,
},
{
name: "continue when error",
args: args{
fns: []func() error{
fn(1), fn(-1), fn(3), fn(-2), fn(5),
},
},
we: ContinueWhenError,
},
{
name: "return when error",
args: args{
fns: []func() error{
fn(1), fn(-1), fn(3), fn(-2), fn(5),
},
},
we: ReturnWhenError,
},
{
name: "return last err when error",
args: args{
fns: []func() error{
fn(1), fn(-1), fn(3), fn(-2), fn(5),
},
},
we: LastErrorWhenError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
atomic.StoreInt64(&value, 0)
got := SerialWhenError(tt.we)
switch tt.we {
case ContinueWhenError:
err := got(tt.args.fns...)()
assert.NotNil(t, err)
assert.Equal(t, err.Error(), "invalid -1; invalid -2")
assert.Equal(t, atomic.LoadInt64(&value), int64(1+3+5))
case PanicWhenError:
assert.Panics(t, func() { _ = got(tt.args.fns...)() })
case LastErrorWhenError:
err := got(tt.args.fns...)()
assert.NotNil(t, err)
assert.Equal(t, err.Error(), "invalid -2")
case ReturnWhenError:
err := got(tt.args.fns...)()
assert.NotNil(t, err)
assert.Equal(t, atomic.LoadInt64(&value), int64(1))
default:
t.Fail()
}
})
}
}