@@ -17,6 +17,7 @@ import (
17
17
"context"
18
18
"testing"
19
19
20
+ "github.com/containerd/containerd/snapshots"
20
21
"github.com/hashicorp/go-multierror"
21
22
"github.com/pkg/errors"
22
23
@@ -55,13 +56,53 @@ func getCachedSnapshotter(uut *SnapshotterCache) error {
55
56
return nil
56
57
}
57
58
58
- func getSnapshotterPropogatesErrors (uut * SnapshotterCache ) error {
59
+ func getSnapshotterPropagatesErrors (uut * SnapshotterCache ) error {
59
60
if _ , err := uut .Get (context .Background (), "SnapshotterKey" , getSnapshotterErrorFunction ); err == nil {
60
61
return errors .New ("Get function did not propagate errors from snapshotter generator function" )
61
62
}
62
63
return nil
63
64
}
64
65
66
+ func successfulWalk (ctx context.Context , info snapshots.Info ) error {
67
+ return nil
68
+ }
69
+
70
+ func applyWalkFunctionOnEmptyCache (uut * SnapshotterCache ) error {
71
+ if err := uut .WalkAll (context .Background (), successfulWalk ); err != nil {
72
+ return errors .New ("WalkAll on empty cache incorrectly resulted in error" )
73
+ }
74
+ return nil
75
+ }
76
+
77
+ func applyWalkFunctionToAllCachedSnapshotters (uut * SnapshotterCache ) error {
78
+ if _ , err := uut .Get (context .Background (), "Snapshotter-A" , getSnapshotterOkFunction ); err != nil {
79
+ return errors .Wrap (err , "Adding snapshotter A to empty cache incorrectly resulted in error" )
80
+ }
81
+ if _ , err := uut .Get (context .Background (), "Snapshotter-B" , getSnapshotterOkFunction ); err != nil {
82
+ return errors .Wrap (err , "Adding snapshotter B to empty cache incorrectly resulted in error" )
83
+ }
84
+ if err := uut .WalkAll (context .Background (), successfulWalk ); err != nil {
85
+ return errors .New ("WalkAll on populated cache incorrectly resulted in error" )
86
+ }
87
+ return nil
88
+ }
89
+
90
+ func applyWalkFunctionPropagatesErrors (uut * SnapshotterCache ) error {
91
+ if _ , err := uut .Get (context .Background (), "Snapshotter-A" , getFailingSnapshotterOkFunction ); err != nil {
92
+ return errors .Wrap (err , "Adding snapshotter A to empty cache incorrectly resulted in error" )
93
+ }
94
+ // The failing snapshotter mock will fail all Walk calls before applying
95
+ // the snapshots.WalkFunc, but for the purposes of this test that is fine.
96
+ // In which case, any function will do.
97
+ walkFunc := func (ctx context.Context , info snapshots.Info ) error {
98
+ return nil
99
+ }
100
+ if err := uut .WalkAll (context .Background (), walkFunc ); err == nil {
101
+ return errors .New ("WalkAll did not propagate errors from walk function" )
102
+ }
103
+ return nil
104
+ }
105
+
65
106
func evictSnapshotterFromEmptyCache (uut * SnapshotterCache ) error {
66
107
if err := uut .Evict ("SnapshotterKey" ); err == nil {
67
108
return errors .New ("Evict function did not return error on call on empty cache" )
@@ -80,7 +121,7 @@ func evictSnapshotterFromCache(uut *SnapshotterCache) error {
80
121
return nil
81
122
}
82
123
83
- func evictSnapshotterFromCachePropogatesCloseError (uut * SnapshotterCache ) error {
124
+ func evictSnapshotterFromCachePropagatesCloseError (uut * SnapshotterCache ) error {
84
125
if _ , err := uut .Get (context .Background (), "SnapshotterKey" , getFailingSnapshotterOkFunction ); err != nil {
85
126
return errors .Wrap (err , "Adding snapshotter to empty cache incorrectly resulted in error" )
86
127
}
@@ -156,14 +197,36 @@ func TestGetSnapshotterFromCache(t *testing.T) {
156
197
}{
157
198
{"AddSnapshotterToCache" , getSnapshotterFromEmptyCache },
158
199
{"GetCachedSnapshotter" , getCachedSnapshotter },
159
- {"PropogateFetchSnapshotterErrors" , getSnapshotterPropogatesErrors },
200
+ {"PropogateFetchSnapshotterErrors" , getSnapshotterPropagatesErrors },
201
+ }
202
+
203
+ for _ , test := range tests {
204
+ t .Run (test .name , func (t * testing.T ) {
205
+ uut := NewSnapshotterCache ()
206
+ if err := test .run (uut ); err != nil {
207
+ t .Fatalf ("%s: %s" , test .name , err .Error ())
208
+ }
209
+ })
210
+ }
211
+ }
212
+
213
+ func TestWalkAllFunctionOnCache (t * testing.T ) {
214
+ t .Parallel ()
215
+
216
+ tests := []struct {
217
+ name string
218
+ run func (* SnapshotterCache ) error
219
+ }{
220
+ {"ApplyWalkFunctionOnEmptyCache" , applyWalkFunctionOnEmptyCache },
221
+ {"ApplyWalkFunctionToAllCachedSnapshotters" , applyWalkFunctionToAllCachedSnapshotters },
222
+ {"ApplyWalkFunctionPropogatesErrors" , applyWalkFunctionPropagatesErrors },
160
223
}
161
224
162
225
for _ , test := range tests {
163
226
t .Run (test .name , func (t * testing.T ) {
164
227
uut := NewSnapshotterCache ()
165
228
if err := test .run (uut ); err != nil {
166
- t .Fatal ( test . name + ": " + err .Error ())
229
+ t .Fatalf ( "%s: %s" , test . name , err .Error ())
167
230
}
168
231
})
169
232
}
@@ -178,14 +241,14 @@ func TestEvictSnapshotterFromCache(t *testing.T) {
178
241
}{
179
242
{"EvictSnapshotterFromEmptyCache" , evictSnapshotterFromEmptyCache },
180
243
{"EvictSnapshotterFromCache" , evictSnapshotterFromCache },
181
- {"PropogateEvictSnapshotterCloseErrors" , evictSnapshotterFromCachePropogatesCloseError },
244
+ {"PropogateEvictSnapshotterCloseErrors" , evictSnapshotterFromCachePropagatesCloseError },
182
245
}
183
246
184
247
for _ , test := range tests {
185
248
t .Run (test .name , func (t * testing.T ) {
186
249
uut := NewSnapshotterCache ()
187
250
if err := test .run (uut ); err != nil {
188
- t .Fatal ( test . name + ": " + err .Error ())
251
+ t .Fatalf ( "%s: %s" , test . name , err .Error ())
189
252
}
190
253
})
191
254
}
@@ -207,7 +270,7 @@ func TestCloseCache(t *testing.T) {
207
270
t .Run (test .name , func (t * testing.T ) {
208
271
uut := NewSnapshotterCache ()
209
272
if err := test .run (uut ); err != nil {
210
- t .Fatal ( test . name + ": " + err .Error ())
273
+ t .Fatalf ( "%s: %s" , test . name , err .Error ())
211
274
}
212
275
})
213
276
}
@@ -228,7 +291,7 @@ func TestListSnapshotters(t *testing.T) {
228
291
t .Run (test .name , func (t * testing.T ) {
229
292
uut := NewSnapshotterCache ()
230
293
if err := test .run (uut ); err != nil {
231
- t .Fatal ( test . name + ": " + err .Error ())
294
+ t .Fatalf ( "%s: %s" , test . name , err .Error ())
232
295
}
233
296
})
234
297
}
0 commit comments