-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblock_test.go
More file actions
301 lines (259 loc) · 7.43 KB
/
block_test.go
File metadata and controls
301 lines (259 loc) · 7.43 KB
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
* Copyright 2021 National Library of Norway.
*
* 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 gowarc
import (
"fmt"
"io"
"strings"
"testing"
"testing/iotest"
"github.com/nlnwa/gowarc/v3/internal/diskbuffer"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_genericBlock_BlockDigest(t *testing.T) {
content := "foo"
digest := "sha1:0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33"
tests := []blockDigestTest{
{
"strings.Reader",
strings.NewReader(content),
},
{
"diskbuffer.Buffer",
func() io.Reader { d := diskbuffer.New(); _, _ = d.WriteString(content); return d }(),
},
{
"iotest.HalfReader",
iotest.HalfReader(strings.NewReader(content)),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, tt.data, d)
validateBlockDigestTest(t, block, digest)
})
}
}
func Test_genericBlock_Cache(t *testing.T) {
content := "foo"
digest := "sha1:0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33"
tests := []cacheTest{
{
"strings.Reader",
strings.NewReader(content),
false,
},
{
"diskbuffer.Buffer",
func() io.Reader { d := diskbuffer.New(); _, _ = d.WriteString(content); return d }(),
false,
},
{
"iotest.HalfReader",
iotest.HalfReader(strings.NewReader(content)),
false,
},
{
"ReplaceErrReader",
ReplaceErrReader(strings.NewReader(content), io.ErrUnexpectedEOF),
true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, tt.data, d)
validateCacheTest(t, block, content, digest, tt.wantCacheErr)
})
}
}
func Test_genericBlock_IsCached(t *testing.T) {
content := "foo"
tests := []isCachedTest{
{
"strings.Reader",
strings.NewReader(content),
true,
},
{
"diskbuffer.Buffer",
func() io.Reader { d := diskbuffer.New(); _, _ = d.WriteString(content); return d }(),
true,
},
{
"iotest.HalfReader",
iotest.HalfReader(strings.NewReader(content)),
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, tt.data, d)
got := block.IsCached()
assert.Equal(t, tt.want, got)
})
}
}
func Test_genericBlock_RawBytes(t *testing.T) {
content := "foo"
digest := "sha1:0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33"
tests := []rawBytesTest{
{
"strings.Reader",
strings.NewReader(content),
false,
},
{
"diskbuffer.Buffer",
func() io.Reader { d := diskbuffer.New(); _, _ = d.WriteString(content); return d }(),
false,
},
{
"iotest.HalfReader",
iotest.HalfReader(strings.NewReader(content)),
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, tt.data, d)
validateRawBytesTest(t, tt, block, content, digest)
})
}
}
func Test_genericBlock_RawBytes_NonCached_ReAccess(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
// Use strings.Reader which is NOT a Seeker (wrapped)
block := newGenericBlock(&warcRecordOptions{}, iotest.HalfReader(strings.NewReader("foo")), d)
r, err := block.RawBytes()
require.NoError(t, err)
_, _ = io.ReadAll(r)
// Second access on non-cached block should fail
_, err = block.RawBytes()
require.Error(t, err)
assert.Equal(t, errContentReAccessed, err)
}
func Test_genericBlock_RawBytes_Cached_ReAccess(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, strings.NewReader("foo"), d)
require.NoError(t, block.Cache())
assert.True(t, block.IsCached())
r1, err := block.RawBytes()
require.NoError(t, err)
data1, _ := io.ReadAll(r1)
// Re-access on cached block should succeed
r2, err := block.RawBytes()
require.NoError(t, err)
data2, _ := io.ReadAll(r2)
assert.Equal(t, string(data1), string(data2))
}
func Test_genericBlock_Close_NonCloser(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
// strings.Reader does not implement io.Closer
block := newGenericBlock(&warcRecordOptions{}, strings.NewReader("foo"), d)
err = block.Close()
assert.NoError(t, err)
}
func Test_genericBlock_Close_Closer(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
buf := diskbuffer.New()
_, _ = buf.WriteString("foo")
block := newGenericBlock(&warcRecordOptions{}, buf, d)
err = block.Close()
assert.NoError(t, err)
}
func Test_genericBlock_Cache_AlreadyCached(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
buf := diskbuffer.New()
_, _ = buf.WriteString("foo")
block := newGenericBlock(&warcRecordOptions{}, buf, d)
assert.True(t, block.IsCached())
require.NoError(t, block.Cache())
}
func Test_genericBlock_Size(t *testing.T) {
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, strings.NewReader("hello"), d)
assert.Equal(t, int64(5), block.Size())
}
// pipeReader is a simple reader that does NOT implement io.Seeker.
type pipeReader struct {
data []byte
pos int
}
func (p *pipeReader) Read(b []byte) (int, error) {
if p.pos >= len(p.data) {
return 0, io.EOF
}
n := copy(b, p.data[p.pos:])
p.pos += n
return n, nil
}
func Test_genericBlock_Cache_RawBytesError(t *testing.T) {
// Exercise the Cache() error path where RawBytes() fails.
// Use a non-seekable reader so IsCached() returns false.
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
block := newGenericBlock(&warcRecordOptions{}, &pipeReader{data: []byte("hello")}, d)
assert.False(t, block.IsCached())
// First RawBytes() succeeds (creates and returns filter reader)
r, err := block.RawBytes()
require.NoError(t, err)
_, _ = io.ReadAll(r)
// Now calling Cache() should fail because RawBytes() returns errContentReAccessed
err = block.Cache()
assert.Error(t, err)
assert.ErrorIs(t, err, errContentReAccessed)
}
type failSeeker struct {
*strings.Reader
seekErr error
}
func (f *failSeeker) Seek(offset int64, whence int) (int64, error) {
return 0, f.seekErr
}
func Test_genericBlock_RawBytes_SeekError(t *testing.T) {
// Exercise the Seek error path in RawBytes() for a cached (seekable) block
d, err := newDigest("sha1", Base16)
require.NoError(t, err)
fs := &failSeeker{Reader: strings.NewReader("hello"), seekErr: fmt.Errorf("seek failed")}
block := &genericBlock{
rawBytes: fs,
blockDigest: d,
opts: &warcRecordOptions{},
}
// First call succeeds (creates filterReader)
r, err := block.RawBytes()
require.NoError(t, err)
_, _ = io.ReadAll(r)
// Second call attempts Seek, which fails
_, err = block.RawBytes()
assert.Error(t, err)
assert.Contains(t, err.Error(), "seek failed")
}