-
Notifications
You must be signed in to change notification settings - Fork 91
/
bucket_logging_test.go
75 lines (67 loc) · 1.7 KB
/
bucket_logging_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
package cos
import (
"context"
"encoding/xml"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestBucketService_PutLogging(t *testing.T) {
setup()
defer teardown()
opt := &BucketPutLoggingOptions{
LoggingEnabled: &BucketLoggingEnabled{
TargetBucket: "logs",
},
}
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPut)
vs := values{
"logging": "",
}
testFormValues(t, r, vs)
body := &BucketPutLoggingOptions{}
xml.NewDecoder(r.Body).Decode(body)
want := opt
want.XMLName = xml.Name{Local: "BucketLoggingStatus"}
if !reflect.DeepEqual(want, body) {
t.Fatalf("Bucket.PutLogging request\n body: %+v\n, want %+v\n", body, want)
}
})
_, err := client.Bucket.PutLogging(context.Background(), opt)
if err != nil {
t.Fatalf("Bucket.PutLogging failed, error: %v", err)
}
}
func TestBucketService_GetLogging(t *testing.T) {
setup()
defer teardown()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
vs := values{
"logging": "",
}
testFormValues(t, r, vs)
fmt.Fprint(w, `<BucketLoggingStatus>
<LoggingEnabled>
<TargetBucket>logs</TargetBucket>
<TargetPrefix>mylogs</TargetPrefix>
</LoggingEnabled>
</BucketLoggingStatus>`)
})
res, _, err := client.Bucket.GetLogging(context.Background())
if err != nil {
t.Fatalf("Bucket.GetLogging failed, error: %v", err)
}
want := &BucketGetLoggingResult{
XMLName: xml.Name{Local: "BucketLoggingStatus"},
LoggingEnabled: &BucketLoggingEnabled{
TargetBucket: "logs",
TargetPrefix: "mylogs",
},
}
if !reflect.DeepEqual(res, want) {
t.Errorf("Bucket.GetLogging returned\n%+v, want\n%+v", res, want)
}
}