-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep_test.go
150 lines (141 loc) · 4.6 KB
/
step_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
package batcher
import (
"errors"
"fmt"
"log"
"reflect"
"testing"
"time"
)
type dummyStateReader struct {
index int
}
func (d *dummyStateReader) Read(buffer []int) (int, error) {
itemsRead := 0
for i := 0; i < len(buffer) && d.index > 0; i++ {
buffer[i] = d.index
d.index--
time.Sleep(time.Second * 1)
itemsRead++
}
if d.index <= 0 {
return itemsRead, ErrEnd
}
return itemsRead, nil
}
func (d *dummyStateReader) Write(data []int) error {
fmt.Printf("write: %v\n", data)
return nil
}
type errReaderAndWriter struct{}
func (d errReaderAndWriter) Read(buffer []int) (int, error) {
log.Println(buffer)
return 0, errors.New("err1")
}
func (d errReaderAndWriter) Write(data []int) error {
fmt.Printf("write: %v\n", data)
return errors.New("err")
}
var simpleReaderWriter = &dummyStateReader{2}
var errorReaderWriter = &errReaderAndWriter{}
func TestNewStep(t *testing.T) {
type args[IType any] struct {
reader ItemReader[IType]
writer ItemWriter[IType]
options []StepOption
}
tests := []struct {
name string
args args[int]
want *UniStep[int]
}{
{"simple step without option", args[int]{simpleReaderWriter, simpleReaderWriter, nil}, &UniStep[int]{nil, simpleReaderWriter, simpleReaderWriter}},
{"simple step with option", args[int]{simpleReaderWriter, simpleReaderWriter, []StepOption{}}, &UniStep[int]{nil, simpleReaderWriter, simpleReaderWriter}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := NewStep(tt.args.reader, tt.args.writer, tt.args.options...)
if reflect.ValueOf(got.prop).IsZero() {
t.Errorf("prop is nil = %v", got.prop)
}
if reflect.ValueOf(got.reader).IsZero() {
t.Errorf("NewStep() reader is nil= %v", got.reader)
}
if reflect.ValueOf(got.writer).IsZero() {
t.Errorf("NewStep() writer is nil= %v", got.writer)
}
})
}
}
func TestUniStep_execute(t *testing.T) {
type fields[IType any] struct {
prop *coreStep
reader ItemReader[IType]
writer ItemWriter[IType]
}
tests := []struct {
name string
fields fields[int]
wantErr bool
}{
{"reader execution error", fields[int]{&coreStep{chunkSize: 1}, errorReaderWriter, simpleReaderWriter}, true},
{"writer execution error", fields[int]{&coreStep{chunkSize: 1}, simpleReaderWriter, errorReaderWriter}, true},
{"execution without error", fields[int]{&coreStep{chunkSize: 1}, simpleReaderWriter, simpleReaderWriter}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
step := &UniStep[int]{
prop: tt.fields.prop,
reader: tt.fields.reader,
writer: tt.fields.writer,
}
if err := step.execute(); ((err != nil) != tt.wantErr) || ((err == ErrEnd) && !tt.wantErr) {
t.Errorf("execute() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestNewStep_withNameOption(t *testing.T) {
tests := []struct {
name string
step *UniStep[int]
wantedName string
wantedSize int
}{
{"should have step1 and size 1", NewStep[int](simpleReaderWriter, simpleReaderWriter, WithName("step1"), WithChunkSize(1)), "step1", 1},
{"should have step2 name and size 90", NewStep[int](simpleReaderWriter, simpleReaderWriter, WithName("step2"), WithChunkSize(90)), "step2", 90},
{"should have step2 name and default size 90", NewStep[int](simpleReaderWriter, simpleReaderWriter, WithName("step2")), "step2", 10},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.step.prop.name != tt.wantedName {
t.Errorf("NewStep with incorrect name Option actual = %v, want %v", tt.step.prop.name, tt.wantedName)
}
if tt.step.prop.chunkSize != tt.wantedSize {
t.Errorf("NewStep with incorrect name Option actual = %v, want %v", tt.step.prop.chunkSize, tt.wantedSize)
}
})
}
}
func TestNewStepAction_withNameOption(t *testing.T) {
tests := []struct {
name string
step *UniStep[int]
wantedName string
wantedSize int
}{
{"should have step1 and size 1", NewStepAction[int](simpleReaderWriter, WithName("step1"), WithChunkSize(1)), "step1", 1},
{"should have step2 name and size 90", NewStepAction[int](simpleReaderWriter, WithName("step2"), WithChunkSize(90)), "step2", 90},
{"should have step2 name and default size 90", NewStepAction[int](simpleReaderWriter, WithName("step2")), "step2", 10},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.step.prop.name != tt.wantedName {
t.Errorf("NewStep with incorrect name Option actual = %v, want %v", tt.step.prop.name, tt.wantedName)
}
if tt.step.prop.chunkSize != tt.wantedSize {
t.Errorf("NewStep with incorrect name Option actual = %v, want %v", tt.step.prop.chunkSize, tt.wantedSize)
}
})
}
}