-
Notifications
You must be signed in to change notification settings - Fork 91
/
bucket_version_test.go
67 lines (59 loc) · 1.52 KB
/
bucket_version_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
package cos
import (
"context"
"encoding/xml"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestBucketService_PutVersioning(t *testing.T) {
setup()
defer teardown()
opt := &BucketPutVersionOptions{
Status: "Suspended",
}
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPut)
vs := values{
"versioning": "",
}
testFormValues(t, r, vs)
body := &BucketPutVersionOptions{}
xml.NewDecoder(r.Body).Decode(body)
want := opt
want.XMLName = xml.Name{Local: "VersioningConfiguration"}
if !reflect.DeepEqual(want, body) {
t.Fatalf("Bucket.PutVersioning request\nbody: %+v\nwant %+v\n", body, want)
}
})
_, err := client.Bucket.PutVersioning(context.Background(), opt)
if err != nil {
t.Fatalf("Bucket.PutVersioning failed, error: %v", err)
}
}
func TestBucketService_GetVersioning(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
vs := values{
"versioning": "",
}
testFormValues(t, r, vs)
fmt.Fprint(w, `<VersioningConfiguration>
<Status>Suspended</Status>
</VersioningConfiguration>`)
})
res, _, err := client.Bucket.GetVersioning(context.Background())
if err != nil {
t.Fatalf("Bucket.GetVersioning failed, error: %v", err)
}
want := &BucketGetVersionResult{
XMLName: xml.Name{Local: "VersioningConfiguration"},
Status: "Suspended",
}
if !reflect.DeepEqual(res, want) {
t.Errorf("Bucket.GetVersioning returned\n%+v, want\n%+v", res, want)
}
}