-
Notifications
You must be signed in to change notification settings - Fork 0
/
reader_test.go
86 lines (77 loc) · 2.17 KB
/
reader_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
// Copyright 2021 The s3iot authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package s3iot
import (
"bytes"
"fmt"
"io"
"testing"
"time"
)
func TestWaitReadInterceptor(t *testing.T) {
f := NewWaitReadInterceptorFactory(
2*time.Millisecond,
WaitReadInterceptorMaxChunkSize(8),
)
if f.maxChunkSize != 8 {
t.Errorf("MaxChunkSize is not configured. Expected 8, got %d", f.maxChunkSize)
}
f.SetMaxChunkSize(16)
if f.maxChunkSize != 16 {
t.Errorf("MaxChunkSize is not configured. Expected 16, got %d", f.maxChunkSize)
}
ri := f.New()
const tolerance = 50 * time.Millisecond
// Use slice to run in particular order
testCases := []struct {
name string
setWaitPerByte time.Duration
expectedWaitPerByte time.Duration
}{
{
name: "Argument",
expectedWaitPerByte: 2 * time.Millisecond,
},
{
name: "SetWaitPerByte",
setWaitPerByte: 4 * time.Millisecond,
expectedWaitPerByte: 4 * time.Millisecond,
},
}
for _, tt := range testCases {
tt := tt
t.Run(tt.name, func(t *testing.T) {
if tt.setWaitPerByte != 0 {
f.SetWaitPerByte(tt.setWaitPerByte)
}
for _, n := range []int{128, 256} {
n := n
t.Run(fmt.Sprintf("%dBytes", n), func(t *testing.T) {
r := bytes.NewReader(make([]byte, n))
r2 := ri.Reader(r)
ts := time.Now()
if _, err := io.ReadAll(r2); err != nil {
t.Fatal(err)
}
te := time.Now()
expected := time.Duration(n) * tt.expectedWaitPerByte
diff := te.Sub(ts) - expected
if diff < -tolerance || tolerance < diff {
t.Errorf("Expected duration: %v, actual: %v", expected, te.Sub(ts))
}
})
}
})
}
}