-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
bucket_lifecycle_test.go
136 lines (117 loc) · 2.84 KB
/
bucket_lifecycle_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
package cos
import (
"context"
"encoding/xml"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestBucketService_GetLifecycle(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
vs := values{
"lifecycle": "",
}
testFormValues(t, r, vs)
fmt.Fprint(w, `<LifecycleConfiguration>
<Rule>
<ID>1234</ID>
<Prefix>test</Prefix>
<Status>Enabled</Status>
<Transition>
<Days>10</Days>
<StorageClass>Standard</StorageClass>
</Transition>
</Rule>
<Rule>
<ID>123422</ID>
<Prefix>gg</Prefix>
<Status>Disabled</Status>
<Expiration>
<Days>10</Days>
</Expiration>
</Rule>
</LifecycleConfiguration>`)
})
ref, _, err := client.Bucket.GetLifecycle(context.Background())
if err != nil {
t.Fatalf("Bucket.GetLifecycle returned error: %v", err)
}
want := &BucketGetLifecycleResult{
XMLName: xml.Name{Local: "LifecycleConfiguration"},
Rules: []BucketLifecycleRule{
{
ID: "1234",
Prefix: "test",
Status: "Enabled",
Transition: &BucketLifecycleTransition{Days: 10, StorageClass: "Standard"},
},
{
ID: "123422",
Prefix: "gg",
Status: "Disabled",
Expiration: &BucketLifecycleExpiration{Days: 10},
},
},
}
if !reflect.DeepEqual(ref, want) {
t.Errorf("Bucket.GetLifecycle returned %+v, want %+v", ref, want)
}
}
func TestBucketService_PutLifecycle(t *testing.T) {
setup()
defer teardown()
opt := &BucketPutLifecycleOptions{
Rules: []BucketLifecycleRule{
{
ID: "1234",
Prefix: "test",
Status: "Enabled",
Transition: &BucketLifecycleTransition{Days: 10, StorageClass: "Standard"},
},
{
ID: "123422",
Prefix: "gg",
Status: "Disabled",
Expiration: &BucketLifecycleExpiration{Days: 10},
},
},
}
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
v := new(BucketPutLifecycleOptions)
xml.NewDecoder(r.Body).Decode(v)
testMethod(t, r, http.MethodPut)
vs := values{
"lifecycle": "",
}
testFormValues(t, r, vs)
want := opt
want.XMLName = xml.Name{Local: "LifecycleConfiguration"}
if !reflect.DeepEqual(v, want) {
t.Errorf("Bucket.PutLifecycle request body: %+v, want %+v", v, want)
}
})
_, err := client.Bucket.PutLifecycle(context.Background(), opt)
if err != nil {
t.Fatalf("Bucket.PutLifecycle returned error: %v", err)
}
}
func TestBucketService_DeleteLifecycle(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodDelete)
vs := values{
"lifecycle": "",
}
testFormValues(t, r, vs)
w.WriteHeader(http.StatusNoContent)
})
_, err := client.Bucket.DeleteLifecycle(context.Background())
if err != nil {
t.Fatalf("Bucket.DeleteLifecycle returned error: %v", err)
}
}