forked from lokalise/go-lokalise-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvc_branch_test.go
131 lines (111 loc) · 3.08 KB
/
svc_branch_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
package lokalise
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"reflect"
"testing"
)
func TestBranchService_Create(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
branchName := "hotfix/really-important"
mux.HandleFunc(fmt.Sprintf("/projects/%s/branches", 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 := `{
"name": "` + branchName + `"
}`
req := new(bytes.Buffer)
_ = json.Compact(req, []byte(data))
testBody(t, r, req.String())
body := `{
"project_id": "` + testProjectID + `",
"branch": {
"branch_id": 995991,
"name": "` + branchName + `",
"created_at": "2019-10-03 14:15:50 (Etc/UTC)",
"created_at_timestamp": 1567001750,
"created_by": 1123,
"created_by_email": "[email protected]"
}
}`
_, _ = fmt.Fprint(w, string(body))
})
r, err := client.Branches().Create(testProjectID, "hotfix/really-important")
if err != nil {
t.Errorf("Branches.Create returned error: %v", err)
}
want := Branch{
WithCreationTime: WithCreationTime{
CreatedAt: "2019-10-03 14:15:50 (Etc/UTC)",
CreatedAtTs: 1567001750,
},
WithCreationUser: WithCreationUser{
CreatedBy: 1123,
CreatedByEmail: "[email protected]",
},
BranchID: 995991,
Name: branchName,
}
if !reflect.DeepEqual(r.Branch, want) {
t.Errorf("Branches.Create returned %+v, want %+v", r.Branch, want)
}
}
func TestBranchService_List(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/projects/%s/branches", testProjectID), func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "GET")
testHeader(t, r, apiTokenHeader, testApiToken)
body := `{
"project_id": "` + testProjectID + `",
"branches": [
{
"branch_id": 1234
}
]
}`
_, _ = fmt.Fprint(w, string(body))
})
r, err := client.Branches().List(testProjectID)
if err != nil {
t.Errorf("Branches.List returned error: %v", err)
}
want := []Branch{
{
BranchID: 1234,
},
}
if !reflect.DeepEqual(r.Branches, want) {
t.Errorf("Branches.List returned %+v, want %+v", r.Branches, want)
}
}
func TestBranchService_Delete(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/projects/%s/branches/1", testProjectID), func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
testMethod(t, r, "DELETE")
testHeader(t, r, apiTokenHeader, testApiToken)
body := `{
"project_id": "` + testProjectID + `",
"branch_deleted": true
}`
_, _ = fmt.Fprint(w, string(body))
})
r, err := client.Branches().Delete(testProjectID, 1)
if err != nil {
t.Errorf("Branches.Delete returned error: %v", err)
}
want := DeleteBranchResponse{
WithProjectID: WithProjectID{ProjectID: testProjectID},
BranchDeleted: true,
}
if !reflect.DeepEqual(r, want) {
t.Errorf("Branches.Delete returned %+v, want %+v", r, want)
}
}