-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisk_buffer_reader_test.go
246 lines (210 loc) · 4.84 KB
/
disk_buffer_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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package diskbufferreader
import (
"bytes"
"errors"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"testing"
)
func TestDiskBufferReader(t *testing.T) {
tests := map[string]struct {
iterations int
readSize int
content string
}{
"SingleReadSizeSmall": {
1,
3,
"OneTwoThree",
},
"SingleReadSizeEqual": {
1,
11,
"OneTwoThree",
},
"SingleReadSizeLarge": {
1,
64,
"OneTwoThree",
},
"DoubleReadSizeSmall": {
2,
3,
"OneTwoThree",
},
"DoubleReadSizeEqual": {
2,
11,
"OneTwoThree",
},
"DoubleReadSizeLarge": {
2,
64,
"OneTwoThree",
},
}
for testName, testCase := range tests {
readBytes := []byte(testCase.content)
bytesReader := bytes.NewBuffer(readBytes)
tmpReader := bytes.NewBuffer(readBytes)
dbr, err := New(tmpReader)
if err != nil {
t.Fatal(err)
}
defer dbr.Close()
testBytes := make([]byte, testCase.readSize)
baseBytes := make([]byte, testCase.readSize)
testN, testErr := dbr.Read(testBytes)
baseN, baseErr := bytesReader.Read(baseBytes)
for i := 0; i < testCase.iterations; i++ {
if string(testBytes) != string(baseBytes) {
t.Fatalf("%s: Unexpected read result. Got: %v, expected: %v", testName, testBytes, baseBytes)
}
if testN != baseN {
t.Fatalf("%s: Wrong number of bytes read. Got: %d, expected: %d", testName, testN, baseN)
}
if !errors.Is(testErr, baseErr) {
t.Fatalf("%s: Unexpected error. Got: %s, expected: %s", testName, testErr, baseErr)
}
}
}
}
func TestReadAll(t *testing.T) {
tests := map[string]struct {
content string
record bool
reset bool
}{
"RecordOnNoReset": {
"OneTwoThree",
true,
false,
},
"RecordOffNoReset": {
"OneTwoThree",
false,
false,
},
"RecordOnReset": {
"OneTwoThree",
true,
true,
},
"RecordOffReset": {
"OneTwoThree",
false,
true,
},
}
for testName, testCase := range tests {
readBytes := []byte(testCase.content)
bytesReader := bytes.NewBuffer(readBytes)
tmpReader := bytes.NewBuffer(readBytes)
dbr, err := New(tmpReader)
if err != nil {
t.Fatal(err)
}
defer dbr.Close()
if testCase.reset {
chunk := make([]byte, 3)
dbr.Read(chunk)
dbr.Reset()
}
if !testCase.record {
dbr.Stop()
}
baseBytes, baseErr := io.ReadAll(bytesReader)
testBytes, testErr := io.ReadAll(dbr)
if string(testBytes) != string(baseBytes) {
t.Fatalf("%s: Unexpected read result. Got: %v, expected: %v", testName, testBytes, baseBytes)
}
if !errors.Is(testErr, baseErr) {
t.Fatalf("%s: Unexpected error. Got: %s, expected: %s", testName, testErr, baseErr)
}
}
}
func TestReadAllLarge(t *testing.T) {
resp, err := http.Get("https://raw.githubusercontent.com/bill-rich/bad-secrets/master/FifteenMB.gz")
if err != nil {
t.Fatal(err)
}
defer resp.Body.Close()
readBytes, err := io.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
bytesReader := bytes.NewBuffer(readBytes)
tmpReader := bytes.NewBuffer(readBytes)
dbr, err := New(tmpReader)
if err != nil {
t.Fatal(err)
}
defer dbr.Close()
chunk := make([]byte, 3)
dbr.Read(chunk)
dbr.Reset()
dbr.Stop()
baseBytes, baseErr := io.ReadAll(bytesReader)
testBytes, testErr := io.ReadAll(dbr)
if len(testBytes) != len(baseBytes) {
t.Fatalf("Wrong number of bytes read. Got: %d, expected: %d", len(testBytes), len(baseBytes))
}
if string(testBytes) != string(baseBytes) {
t.Fatalf("Unexpected read result. Got: %v..%v, expected: %v..%v", testBytes[:1024], testBytes[len(testBytes)-16:], baseBytes[:1024], baseBytes[len(baseBytes)-16:])
}
if !errors.Is(testErr, baseErr) {
t.Fatalf("Unexpected error. Got: %s, expected: %s", testErr, baseErr)
}
}
func TestTmpDir(t *testing.T) {
tmpDir := "/tmp/dbrtest"
err := os.Mkdir(tmpDir, 0755)
if err != nil && !os.IsExist(err) {
t.Fatal(err)
}
defer os.RemoveAll(tmpDir)
os.Setenv("TMPDIR", tmpDir)
reader := strings.NewReader("TestString")
dbr, err := New(reader)
if err != nil {
t.Fatal(err)
}
defer dbr.Close()
testBytes := make([]byte, 1)
_, err = dbr.Read(testBytes)
if err != nil {
t.Fatal(err)
}
tmpFileName := filepath.Base(dbr.tmpFile.Name())
_, err = os.Stat(fmt.Sprintf("%s/%s", tmpDir, tmpFileName))
if err != nil {
t.Fatal(err)
}
}
func BenchmarkSeek(b *testing.B) {
// Use a fixed data source for consistent benchmarking.
data := make([]byte, 100000) // Example: 100KB of data
for i := range data {
data[i] = byte(i % 256)
}
tmpReader := bytes.NewBuffer(data)
dbr, err := New(tmpReader)
if err != nil {
b.Fatal(err)
}
defer dbr.Close()
whenceOptions := []int{io.SeekStart, io.SeekCurrent, io.SeekEnd}
offset := int64(100) // Example offset value
b.ResetTimer()
for i := 0; i < b.N; i++ {
whence := whenceOptions[i%len(whenceOptions)] // Vary whence to cover different cases
_, err := dbr.Seek(offset, whence)
if err != nil {
b.Fatal(err)
}
}
}