-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathalerts_test.go
More file actions
131 lines (123 loc) · 3.25 KB
/
Copy pathalerts_test.go
File metadata and controls
131 lines (123 loc) · 3.25 KB
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 scalingo
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"
)
func TestAlertsClient(t *testing.T) {
ctx := t.Context()
const appName = "my-app"
alertID := "my-id"
tests := []struct {
action string
testedClientCall func(c AlertsService) error
expectedEndpoint string
expectedMethod string
response any
responseStatus int
noBody bool
}{
{
action: "list",
testedClientCall: func(c AlertsService) error {
_, err := c.AlertsList(ctx, appName)
return err
},
expectedEndpoint: "/v1/apps/my-app/alerts",
expectedMethod: http.MethodGet,
response: AlertsRes{},
},
{
action: "add",
testedClientCall: func(c AlertsService) error {
_, err := c.AlertAdd(ctx, appName, AlertAddParams{})
return err
},
expectedEndpoint: "/v1/apps/my-app/alerts",
expectedMethod: http.MethodPost,
response: AlertsRes{},
responseStatus: http.StatusCreated,
},
{
action: "show",
testedClientCall: func(c AlertsService) error {
_, err := c.AlertShow(ctx, appName, alertID)
return err
},
expectedEndpoint: "/v1/apps/my-app/alerts/my-id",
expectedMethod: http.MethodGet,
response: AlertsRes{},
},
{
action: "update",
testedClientCall: func(c AlertsService) error {
_, err := c.AlertUpdate(ctx, appName, alertID, AlertUpdateParams{})
return err
},
expectedEndpoint: "/v1/apps/my-app/alerts/my-id",
expectedMethod: http.MethodPatch,
response: AlertsRes{},
},
{
action: "remove",
testedClientCall: func(c AlertsService) error {
return c.AlertRemove(ctx, appName, alertID)
},
expectedEndpoint: "/v1/apps/my-app/alerts/my-id",
expectedMethod: http.MethodDelete,
responseStatus: http.StatusNoContent,
},
}
for _, test := range tests {
for msg, run := range map[string]struct {
invalidResponse bool
}{
"it should fail if it fails to " + test.action + "the subresource": {
invalidResponse: true,
},
"it should succeed if it succeeds to " + test.action + " the subresource": {
invalidResponse: false,
},
} {
t.Run(msg, func(t *testing.T) {
ctrl := gomock.NewController(t)
defer ctrl.Finish()
handler := func(w http.ResponseWriter, r *http.Request) {
assert.Equal(t, test.expectedMethod, r.Method)
assert.Equal(t, test.expectedEndpoint, r.URL.Path)
if run.invalidResponse {
w.WriteHeader(http.StatusInternalServerError)
_, err := w.Write([]byte("INVALID"))
require.NoError(t, err)
} else {
if test.responseStatus != 0 {
w.WriteHeader(test.responseStatus)
}
if test.response != nil {
err := json.NewEncoder(w).Encode(&test.response)
assert.NoError(t, err)
}
}
}
ts := httptest.NewServer(http.HandlerFunc(handler))
defer ts.Close()
c, err := New(ctx, ClientConfig{
APIEndpoint: ts.URL,
APIToken: "test",
})
require.NoError(t, err)
c.authClient = MockAuth(ctrl)
err = test.testedClientCall(c)
if run.invalidResponse {
require.Error(t, err)
} else {
require.NoError(t, err)
}
})
}
}
}