forked from jianyuan/go-sentry
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganization_integrations_test.go
228 lines (217 loc) · 6.45 KB
/
organization_integrations_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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package sentry
import (
"context"
"encoding/json"
"fmt"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
)
func TestOrganizationIntegrationsService_List(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/api/0/organizations/the-interstellar-jurisdiction/integrations/", func(w http.ResponseWriter, r *http.Request) {
assertMethod(t, "GET", r)
assertQuery(t, map[string]string{"cursor": "100:-1:1", "provider_key": "github"}, r)
w.Header().Set("Content-Type", "application/json")
fmt.Fprint(w, `[
{
"id": "123456",
"name": "octocat",
"icon": "https://avatars.githubusercontent.com/u/583231?v=4",
"domainName": "github.com/octocat",
"accountType": "Organization",
"scopes": ["read", "write"],
"status": "active",
"provider": {
"key": "github",
"slug": "github",
"name": "GitHub",
"canAdd": true,
"canDisable": false,
"features": [
"codeowners",
"commits",
"issue-basic",
"stacktrace-link"
],
"aspects": {}
},
"configOrganization": [],
"configData": {},
"externalId": "87654321",
"organizationId": 2,
"organizationIntegrationStatus": "active",
"gracePeriodEnd": null
}
]`)
})
ctx := context.Background()
integrations, _, err := client.OrganizationIntegrations.List(ctx, "the-interstellar-jurisdiction", &ListOrganizationIntegrationsParams{
ListCursorParams: ListCursorParams{
Cursor: "100:-1:1",
},
ProviderKey: "github",
})
assert.NoError(t, err)
expected := []*OrganizationIntegration{
{
ID: "123456",
Name: "octocat",
Icon: String("https://avatars.githubusercontent.com/u/583231?v=4"),
DomainName: "github.com/octocat",
AccountType: String("Organization"),
Scopes: []string{"read", "write"},
Status: "active",
Provider: OrganizationIntegrationProvider{
Key: "github",
Slug: "github",
Name: "GitHub",
CanAdd: true,
CanDisable: false,
Features: []string{
"codeowners",
"commits",
"issue-basic",
"stacktrace-link",
},
},
ConfigData: &IntegrationConfigData{},
ExternalId: "87654321",
OrganizationId: 2,
OrganizationIntegrationStatus: "active",
GracePeriodEnd: nil,
},
}
assert.Equal(t, expected, integrations)
}
func TestOrganizationIntegrationsService_Get(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/api/0/organizations/the-interstellar-jurisdiction/integrations/456789/", func(w http.ResponseWriter, r *http.Request) {
assertMethod(t, "GET", r)
w.Header().Set("Content-Type", "application/json")
fmt.Fprint(w, `{
"id": "456789",
"name": "Interstellar PagerDuty",
"icon": null,
"domainName": "the-interstellar-jurisdiction",
"accountType": null,
"scopes": null,
"status": "active",
"provider": {
"key": "pagerduty",
"slug": "pagerduty",
"name": "PagerDuty",
"canAdd": true,
"canDisable": false,
"features": [
"alert-rule",
"incident-management"
],
"aspects": {
"alerts": [
{
"type": "info",
"text": "The PagerDuty integration adds a new Alert Rule action to all projects. To enable automatic notifications sent to PagerDuty you must create a rule using the PagerDuty action in your project settings."
}
]
}
},
"configOrganization": [
{
"name": "service_table",
"type": "table",
"label": "PagerDuty services with the Sentry integration enabled",
"help": "If services need to be updated, deleted, or added manually please do so here. Alert rules will need to be individually updated for any additions or deletions of services.",
"addButtonText": "",
"columnLabels": {
"service": "Service",
"integration_key": "Integration Key"
},
"columnKeys": [
"service",
"integration_key"
],
"confirmDeleteMessage": "Any alert rules associated with this service will stop working. The rules will still exist but will show a removed service."
}
],
"configData": {
"service_table": [
{
"service": "testing123",
"integration_key": "abc123xyz",
"id": 22222
}
]
},
"externalId": "999999",
"organizationId": 2,
"organizationIntegrationStatus": "active",
"gracePeriodEnd": null
}`)
})
ctx := context.Background()
integration, _, err := client.OrganizationIntegrations.Get(ctx, "the-interstellar-jurisdiction", "456789")
assert.NoError(t, err)
expected := OrganizationIntegration{
ID: "456789",
Name: "Interstellar PagerDuty",
Icon: nil,
DomainName: "the-interstellar-jurisdiction",
AccountType: nil,
Scopes: nil,
Status: "active",
Provider: OrganizationIntegrationProvider{
Key: "pagerduty",
Slug: "pagerduty",
Name: "PagerDuty",
CanAdd: true,
CanDisable: false,
Features: []string{
"alert-rule",
"incident-management",
},
},
ConfigData: &IntegrationConfigData{
"service_table": []interface{}{
map[string]interface{}{
"service": "testing123",
"integration_key": "abc123xyz",
"id": json.Number("22222"),
},
},
},
ExternalId: "999999",
OrganizationId: 2,
OrganizationIntegrationStatus: "active",
GracePeriodEnd: nil,
}
assert.Equal(t, &expected, integration)
}
func TestOrganizationIntegrationsService_UpdateConfig(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/api/0/organizations/the-interstellar-jurisdiction/integrations/456789/", func(w http.ResponseWriter, r *http.Request) {
assertMethod(t, "POST", r)
w.Header().Set("Content-Type", "application/json")
})
updateConfigOrganizationIntegrationsParams := UpdateConfigOrganizationIntegrationsParams{
"service_table": []interface{}{
map[string]interface{}{
"service": "testing123",
"integration_key": "abc123xyz",
"id": json.Number("22222"),
},
map[string]interface{}{
"service": "testing456",
"integration_key": "efg456lmn",
"id": "",
},
},
}
ctx := context.Background()
resp, err := client.OrganizationIntegrations.UpdateConfig(ctx, "the-interstellar-jurisdiction", "456789", &updateConfigOrganizationIntegrationsParams)
assert.NoError(t, err)
assert.Equal(t, int64(0), resp.ContentLength)
}