-
Notifications
You must be signed in to change notification settings - Fork 8
/
cron_tasks_test.go
91 lines (83 loc) · 2.12 KB
/
cron_tasks_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
package scalingo
import (
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestCronTasksClient_CronTasksGet(t *testing.T) {
ctx := context.Background()
const appName = "my-app"
tests := []struct {
action string
testedClientCall func(c CronTasksService) error
expectedEndpoint string
expectedMethod string
response interface{}
responseStatus int
}{
{
action: "get",
testedClientCall: func(c CronTasksService) error {
_, err := c.CronTasksGet(ctx, appName)
return err
},
expectedEndpoint: "/v1/apps/my-app/cron_tasks",
expectedMethod: "GET",
response: CronTasks{},
responseStatus: 200,
},
}
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(500)
_, 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)
}
})
}
}
}