forked from xanzy/go-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
labels_test.go
165 lines (135 loc) · 4.87 KB
/
labels_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
package gitlab
import (
"fmt"
"log"
"net/http"
"reflect"
"testing"
)
func TestCreateLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
fmt.Fprint(w, `{"id":1, "name": "My Label", "color" : "#11FF22"}`)
})
// Create new label
l := &CreateLabelOptions{
Name: String("My Label"),
Color: String("#11FF22"),
}
label, _, err := client.Labels.CreateLabel("1", l)
if err != nil {
log.Fatal(err)
}
want := &Label{ID: 1, Name: "My Label", Color: "#11FF22"}
if !reflect.DeepEqual(want, label) {
t.Errorf("Labels.CreateLabel returned %+v, want %+v", label, want)
}
}
func TestDeleteLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "DELETE")
})
// Delete label
label := &DeleteLabelOptions{
Name: String("My Label"),
}
_, err := client.Labels.DeleteLabel("1", label)
if err != nil {
log.Fatal(err)
}
}
func TestUpdateLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "PUT")
fmt.Fprint(w, `{"id":1, "name": "New Label", "color" : "#11FF23" , "description":"This is updated label"}`)
})
// Update label
l := &UpdateLabelOptions{
Name: String("My Label"),
NewName: String("New Label"),
Color: String("#11FF23"),
Description: String("This is updated label"),
}
label, resp, err := client.Labels.UpdateLabel("1", l)
if resp == nil {
log.Fatal(err)
}
if err != nil {
log.Fatal(err)
}
want := &Label{ID: 1, Name: "New Label", Color: "#11FF23", Description: "This is updated label"}
if !reflect.DeepEqual(want, label) {
t.Errorf("Labels.UpdateLabel returned %+v, want %+v", label, want)
}
}
func TestSubscribeToLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels/5/subscribe", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
fmt.Fprint(w, `{ "id" : 5, "name" : "bug", "color" : "#d9534f", "description": "Bug reported by user", "open_issues_count": 1, "closed_issues_count": 0, "open_merge_requests_count": 1, "subscribed": true,"priority": null}`)
})
label, _, err := client.Labels.SubscribeToLabel("1", "5")
if err != nil {
log.Fatal(err)
}
want := &Label{ID: 5, Name: "bug", Color: "#d9534f", Description: "Bug reported by user", OpenIssuesCount: 1, ClosedIssuesCount: 0, OpenMergeRequestsCount: 1, Subscribed: true}
if !reflect.DeepEqual(want, label) {
t.Errorf("Labels.SubscribeToLabel returned %+v, want %+v", label, want)
}
}
func TestUnsubscribeFromLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels/5/unsubscribe", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
})
_, err := client.Labels.UnsubscribeFromLabel("1", "5")
if err != nil {
log.Fatal(err)
}
}
func TestListLabels(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
fmt.Fprint(w, `[{ "id" : 5, "name" : "bug", "color" : "#d9534f", "description": "Bug reported by user", "open_issues_count": 1, "closed_issues_count": 0, "open_merge_requests_count": 1, "subscribed": true,"priority": null}]`)
})
o := &ListLabelsOptions{
ListOptions: ListOptions{
Page: 1,
PerPage: 10,
},
}
label, _, err := client.Labels.ListLabels("1", o)
if err != nil {
t.Log(err.Error() == "invalid ID type 1.1, the ID must be an int or a string")
}
want := []*Label{{ID: 5, Name: "bug", Color: "#d9534f", Description: "Bug reported by user", OpenIssuesCount: 1, ClosedIssuesCount: 0, OpenMergeRequestsCount: 1, Subscribed: true}}
if !reflect.DeepEqual(want, label) {
t.Errorf("Labels.ListLabels returned %+v, want %+v", label, want)
}
}
func TestGetLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/projects/1/labels/5", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
fmt.Fprint(w, `{ "id" : 5, "name" : "bug", "color" : "#d9534f", "description": "Bug reported by user", "open_issues_count": 1, "closed_issues_count": 0, "open_merge_requests_count": 1, "subscribed": true,"priority": null}`)
})
label, _, err := client.Labels.GetLabel("1", 5)
if err != nil {
t.Log(err)
}
want := &Label{ID: 5, Name: "bug", Color: "#d9534f", Description: "Bug reported by user", OpenIssuesCount: 1, ClosedIssuesCount: 0, OpenMergeRequestsCount: 1, Subscribed: true}
if !reflect.DeepEqual(want, label) {
t.Errorf("Labels.GetLabel returned %+v, want %+v", label, want)
}
}