-
Notifications
You must be signed in to change notification settings - Fork 18
/
svc_snapshot_test.go
170 lines (143 loc) · 3.88 KB
/
svc_snapshot_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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package lokalise
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestSnapshotService_Create(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(
fmt.Sprintf("/projects/%s/snapshots", testProjectID),
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "POST")
testHeader(t, r, apiTokenHeader, testApiToken)
data := `{
"title": "API snapshot"
}
`
req := new(bytes.Buffer)
_ = json.Compact(req, []byte(data))
testBody(t, r, req.String())
_, _ = fmt.Fprint(w, `{
"project_id": "`+testProjectID+`",
"snapshot": {
"snapshot_id": 1523966599,
"title": "API snapshot",
"created_at": "2018-12-31 12:00:00 (Etc/UTC)",
"created_at_timestamp": 1546257600,
"created_by": 420,
"created_by_email": "[email protected]"
}
}`)
})
r, err := client.Snapshots().Create(testProjectID, "API snapshot")
if err != nil {
t.Errorf("Snapshots.Create returned error: %v", err)
}
want := Snapshot{
WithCreationTime: WithCreationTime{
CreatedAt: "2018-12-31 12:00:00 (Etc/UTC)",
CreatedAtTs: 1546257600,
},
WithCreationUser: WithCreationUser{
CreatedBy: 420,
CreatedByEmail: "[email protected]",
},
SnapshotID: 1523966599,
Title: "API snapshot",
}
if !reflect.DeepEqual(r.Snapshot, want) {
t.Errorf("Snapshots.Create returned %+v, want %+v", r.Snapshot, want)
}
}
func TestSnapshotService_Delete(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(
fmt.Sprintf("/projects/%s/snapshots/%d", testProjectID, 1523966599),
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "DELETE")
testHeader(t, r, apiTokenHeader, testApiToken)
_, _ = fmt.Fprint(w, `{
"project_id": "`+testProjectID+`",
"snapshot_deleted": true
}`)
},
)
r, err := client.Snapshots().Delete(testProjectID, 1523966599)
if err != nil {
t.Errorf("Screenshots.Delete returned error: %v", err)
}
want := DeleteSnapshotResponse{
WithProjectID: WithProjectID{
ProjectID: testProjectID,
},
SnapshotDeleted: true,
}
if !reflect.DeepEqual(r, want) {
t.Errorf("Screenshots.Delete returned %+v, want %+v", r, want)
}
}
func TestSnapshotService_List(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(
fmt.Sprintf("/projects/%s/snapshots", testProjectID),
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "GET")
testHeader(t, r, apiTokenHeader, testApiToken)
_, _ = fmt.Fprint(w, `{
"project_id": "`+testProjectID+`",
"snapshots": [
{
"snapshot_id": 1523966589
}
]
}`)
})
r, err := client.Snapshots().List(testProjectID)
if err != nil {
t.Errorf("Snapshots.List returned error: %v", err)
}
want := []Snapshot{
{
SnapshotID: 1523966589,
},
}
if !reflect.DeepEqual(r.Snapshots, want) {
t.Errorf("Screenshots.List returned %+v, want %+v", r.Snapshots, want)
}
}
func TestSnapshotService_Restore(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(
fmt.Sprintf("/projects/%s/snapshots/%d", testProjectID, 1523966599),
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "POST")
testHeader(t, r, apiTokenHeader, testApiToken)
_, _ = fmt.Fprint(w, `{
"project_id": "`+testProjectID+`"
}`)
})
r, err := client.Snapshots().Restore(testProjectID, 1523966599)
if err != nil {
t.Errorf("Snapshots.Restore returned error: %v", err)
}
want := Project{
WithProjectID: WithProjectID{
ProjectID: testProjectID,
},
}
if !reflect.DeepEqual(r, want) {
t.Errorf("Screenshots.Restore returned %+v, want %+v", r, want)
}
}