@@ -25,6 +25,7 @@ import (
25
25
"path/filepath"
26
26
"sort"
27
27
"testing"
28
+ "time"
28
29
29
30
"github.com/boltdb/bolt"
30
31
"github.com/containerd/containerd/gc"
@@ -63,6 +64,12 @@ func TestGCRoots(t *testing.T) {
63
64
addLeaseSnapshot ("ns2" , "l2" , "overlay" , "sn6" ),
64
65
addLeaseContent ("ns2" , "l1" , dgst (4 )),
65
66
addLeaseContent ("ns2" , "l2" , dgst (5 )),
67
+ addLease ("ns2" , "l3" , labelmap (string (labelGCExpire ), time .Now ().Add (3600 * time .Second ).Format (time .RFC3339 ))),
68
+ addLeaseContent ("ns2" , "l3" , dgst (6 )),
69
+ addLeaseSnapshot ("ns2" , "l3" , "overlay" , "sn7" ),
70
+ addLease ("ns2" , "l4" , labelmap (string (labelGCExpire ), time .Now ().Format (time .RFC3339 ))),
71
+ addLeaseContent ("ns2" , "l4" , dgst (7 )),
72
+ addLeaseSnapshot ("ns2" , "l4" , "overlay" , "sn8" ),
66
73
}
67
74
68
75
expected := []gc.Node {
@@ -71,6 +78,7 @@ func TestGCRoots(t *testing.T) {
71
78
gcnode (ResourceContent , "ns2" , dgst (2 ).String ()),
72
79
gcnode (ResourceContent , "ns2" , dgst (4 ).String ()),
73
80
gcnode (ResourceContent , "ns2" , dgst (5 ).String ()),
81
+ gcnode (ResourceContent , "ns2" , dgst (6 ).String ()),
74
82
gcnode (ResourceSnapshot , "ns1" , "overlay/sn2" ),
75
83
gcnode (ResourceSnapshot , "ns1" , "overlay/sn3" ),
76
84
gcnode (ResourceSnapshot , "ns1" , "overlay/sn4" ),
@@ -81,6 +89,10 @@ func TestGCRoots(t *testing.T) {
81
89
gcnode (ResourceSnapshot , "ns1" , "overlay/sn9" ),
82
90
gcnode (ResourceSnapshot , "ns2" , "overlay/sn5" ),
83
91
gcnode (ResourceSnapshot , "ns2" , "overlay/sn6" ),
92
+ gcnode (ResourceSnapshot , "ns2" , "overlay/sn7" ),
93
+ gcnode (ResourceLease , "ns2" , "l1" ),
94
+ gcnode (ResourceLease , "ns2" , "l2" ),
95
+ gcnode (ResourceLease , "ns2" , "l3" ),
84
96
}
85
97
86
98
if err := db .Update (func (tx * bolt.Tx ) error {
@@ -126,6 +138,8 @@ func TestGCRemove(t *testing.T) {
126
138
addSnapshot ("ns1" , "overlay" , "sn3" , "" , labelmap (string (labelGCRoot ), "always" )),
127
139
addSnapshot ("ns1" , "overlay" , "sn4" , "" , nil ),
128
140
addSnapshot ("ns2" , "overlay" , "sn1" , "" , nil ),
141
+ addLease ("ns1" , "l1" , labelmap (string (labelGCExpire ), time .Now ().Add (3600 * time .Second ).Format (time .RFC3339 ))),
142
+ addLease ("ns2" , "l2" , labelmap (string (labelGCExpire ), time .Now ().Format (time .RFC3339 ))),
129
143
}
130
144
131
145
all := []gc.Node {
@@ -139,6 +153,8 @@ func TestGCRemove(t *testing.T) {
139
153
gcnode (ResourceSnapshot , "ns1" , "overlay/sn3" ),
140
154
gcnode (ResourceSnapshot , "ns1" , "overlay/sn4" ),
141
155
gcnode (ResourceSnapshot , "ns2" , "overlay/sn1" ),
156
+ gcnode (ResourceLease , "ns1" , "l1" ),
157
+ gcnode (ResourceLease , "ns2" , "l2" ),
142
158
}
143
159
144
160
var deleted , remaining []gc.Node
@@ -425,6 +441,16 @@ func addContent(ns string, dgst digest.Digest, labels map[string]string) alterFu
425
441
}
426
442
}
427
443
444
+ func addLease (ns , lid string , labels map [string ]string ) alterFunc {
445
+ return func (bkt * bolt.Bucket ) error {
446
+ lbkt , err := createBuckets (bkt , ns , string (bucketKeyObjectLeases ), lid )
447
+ if err != nil {
448
+ return err
449
+ }
450
+ return boltutil .WriteLabels (lbkt , labels )
451
+ }
452
+ }
453
+
428
454
func addLeaseSnapshot (ns , lid , snapshotter , name string ) alterFunc {
429
455
return func (bkt * bolt.Bucket ) error {
430
456
sbkt , err := createBuckets (bkt , ns , string (bucketKeyObjectLeases ), lid , string (bucketKeyObjectSnapshots ), snapshotter )
0 commit comments