@@ -30,6 +30,7 @@ import (
30
30
"time"
31
31
32
32
"github.com/containerd/containerd/content"
33
+ "github.com/containerd/containerd/errdefs"
33
34
"github.com/containerd/containerd/pkg/testutil"
34
35
digest "github.com/opencontainers/go-digest"
35
36
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
@@ -41,6 +42,7 @@ import (
41
42
func ContentSuite (t * testing.T , name string , storeFn func (ctx context.Context , root string ) (context.Context , content.Store , func () error , error )) {
42
43
t .Run ("Writer" , makeTest (t , name , storeFn , checkContentStoreWriter ))
43
44
t .Run ("UpdateStatus" , makeTest (t , name , storeFn , checkUpdateStatus ))
45
+ t .Run ("CommitExists" , makeTest (t , name , storeFn , checkCommitExists ))
44
46
t .Run ("Resume" , makeTest (t , name , storeFn , checkResumeWriter ))
45
47
t .Run ("ResumeTruncate" , makeTest (t , name , storeFn , checkResume (resumeTruncate )))
46
48
t .Run ("ResumeDiscard" , makeTest (t , name , storeFn , checkResume (resumeDiscard )))
@@ -281,6 +283,39 @@ func checkResumeWriter(ctx context.Context, t *testing.T, cs content.Store) {
281
283
}
282
284
}
283
285
286
+ func checkCommitExists (ctx context.Context , t * testing.T , cs content.Store ) {
287
+ c1 , d1 := createContent (256 )
288
+ if err := content .WriteBlob (ctx , cs , "c1" , bytes .NewReader (c1 ), ocispec.Descriptor {Digest : d1 }); err != nil {
289
+ t .Fatal (err )
290
+ }
291
+
292
+ for i , tc := range []struct {
293
+ expected digest.Digest
294
+ }{
295
+ {
296
+ expected : d1 ,
297
+ },
298
+ {},
299
+ } {
300
+ w , err := cs .Writer (ctx , content .WithRef (fmt .Sprintf ("c1-commitexists-%d" , i )))
301
+ if err != nil {
302
+ t .Fatal (err )
303
+ }
304
+ if _ , err := w .Write (c1 ); err != nil {
305
+ w .Close ()
306
+ t .Fatal (err )
307
+ }
308
+ err = w .Commit (ctx , int64 (len (c1 )), tc .expected )
309
+ w .Close ()
310
+ if err == nil {
311
+ t .Errorf ("(%d) Expected already exists error" , i )
312
+ } else if ! errdefs .IsAlreadyExists (err ) {
313
+ t .Fatalf ("(%d) Unexpected error: %+v" , i , err )
314
+ }
315
+
316
+ }
317
+ }
318
+
284
319
func checkUpdateStatus (ctx context.Context , t * testing.T , cs content.Store ) {
285
320
c1 , d1 := createContent (256 )
286
321
@@ -353,7 +388,7 @@ func checkUpdateStatus(ctx context.Context, t *testing.T, cs content.Store) {
353
388
func checkLabels (ctx context.Context , t * testing.T , cs content.Store ) {
354
389
c1 , d1 := createContent (256 )
355
390
356
- w1 , err := cs .Writer (ctx , content .WithRef ("c1" ), content .WithDescriptor (ocispec.Descriptor {Size : 256 , Digest : d1 }))
391
+ w1 , err := cs .Writer (ctx , content .WithRef ("c1-checklabels " ), content .WithDescriptor (ocispec.Descriptor {Size : 256 , Digest : d1 }))
357
392
if err != nil {
358
393
t .Fatal (err )
359
394
}
0 commit comments