forked from xanzy/go-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group_labels_test.go
160 lines (130 loc) · 5.01 KB
/
group_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
package gitlab
import (
"fmt"
"log"
"net/http"
"reflect"
"testing"
)
func TestCreateGroupGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
fmt.Fprint(w, `{"id":1, "name": "My GroupLabel", "color" : "#11FF22"}`)
})
l := &CreateGroupLabelOptions{
Name: String("My GroupLabel"),
Color: String("#11FF22"),
}
label, _, err := client.GroupLabels.CreateGroupLabel("1", l)
if err != nil {
log.Fatal(err)
}
want := &GroupLabel{ID: 1, Name: "My GroupLabel", Color: "#11FF22"}
if !reflect.DeepEqual(want, label) {
t.Errorf("GroupLabels.CreateGroupLabel returned %+v, want %+v", label, want)
}
}
func TestDeleteGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "DELETE")
})
label := &DeleteGroupLabelOptions{
Name: String("My GroupLabel"),
}
_, err := client.GroupLabels.DeleteGroupLabel("1", label)
if err != nil {
log.Fatal(err)
}
}
func TestUpdateGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/1/labels", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "PUT")
fmt.Fprint(w, `{"id":1, "name": "New GroupLabel", "color" : "#11FF23" , "description":"This is updated label"}`)
})
l := &UpdateGroupLabelOptions{
Name: String("My GroupLabel"),
NewName: String("New GroupLabel"),
Color: String("#11FF23"),
Description: String("This is updated label"),
}
label, resp, err := client.GroupLabels.UpdateGroupLabel("1", l)
if resp == nil {
log.Fatal(err)
}
if err != nil {
log.Fatal(err)
}
want := &GroupLabel{ID: 1, Name: "New GroupLabel", Color: "#11FF23", Description: "This is updated label"}
if !reflect.DeepEqual(want, label) {
t.Errorf("GroupLabels.UpdateGroupLabel returned %+v, want %+v", label, want)
}
}
func TestSubscribeToGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/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.GroupLabels.SubscribeToGroupLabel("1", "5")
if err != nil {
log.Fatal(err)
}
want := &GroupLabel{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("GroupLabels.SubscribeToGroupLabel returned %+v, want %+v", label, want)
}
}
func TestUnsubscribeFromGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/1/labels/5/unsubscribe", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
})
_, err := client.GroupLabels.UnsubscribeFromGroupLabel("1", "5")
if err != nil {
log.Fatal(err)
}
}
func TestListGroupLabels(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/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 := &ListGroupLabelsOptions{
Page: 1,
PerPage: 10,
}
label, _, err := client.GroupLabels.ListGroupLabels("1", o)
if err != nil {
t.Log(err.Error() == "invalid ID type 1.1, the ID must be an int or a string")
}
want := []*GroupLabel{{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("GroupLabels.ListGroupLabels returned %+v, want %+v", label, want)
}
}
func TestGetGroupLabel(t *testing.T) {
mux, server, client := setup(t)
defer teardown(server)
mux.HandleFunc("/api/v4/groups/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.GroupLabels.GetGroupLabel("1", 5)
if err != nil {
t.Log(err)
}
want := &GroupLabel{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("GroupLabels.GetGroupLabel returned %+v, want %+v", label, want)
}
}