forked from quay/clair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notification_v1_test.go
232 lines (213 loc) · 6.4 KB
/
notification_v1_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
229
230
231
232
package httptransport
import (
"context"
"encoding/json"
"net"
"net/http"
"net/http/httptest"
"net/url"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/uuid"
"github.com/quay/zlog"
"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"
"go.opentelemetry.io/otel/trace"
"github.com/quay/clair/v4/internal/httputil"
"github.com/quay/clair/v4/notifier"
"github.com/quay/clair/v4/notifier/service"
)
// TestUpdateOperationHandler is a parallel harness for testing a UpdateOperation handler.
func TestNotificationsHandler(t *testing.T) {
ctx := zlog.Test(context.Background(), t)
t.Run("Methods", testNotificationsHandlerMethods(ctx))
t.Run("Get", testNotificationHandlerGet(ctx))
t.Run("GetParams", testNotificationHandlerGetParams(ctx))
t.Run("Delete", testNotificationHandlerDelete(ctx))
}
var notifierTraceOpt = otelhttp.WithTracerProvider(trace.NewNoopTracerProvider())
// testNotificationHandlerDelete confirms the handler performs a delete
// correctly
func testNotificationHandlerDelete(ctx context.Context) func(*testing.T) {
return func(t *testing.T) {
t.Parallel()
ctx := zlog.Test(ctx, t)
noteID := uuid.New()
nm := &service.Mock{
DeleteNotifications_: func(ctx context.Context, id uuid.UUID) error {
if !cmp.Equal(id, noteID) {
t.Fatalf("got: %v, want: %v", id, noteID)
}
return nil
},
}
h, err := NewNotificationV1(ctx, `/notifier/api/v1/`, nm, notifierTraceOpt)
if err != nil {
t.Error(err)
}
rr := httptest.NewRecorder()
u, _ := url.Parse("http://clair-notifier/notifier/api/v1/notification/" + noteID.String())
req, err := httputil.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
if err != nil {
t.Error(err)
}
h.delete(rr, req)
res := rr.Result()
if res.StatusCode != http.StatusOK {
t.Fatalf("got: %v, wanted: %v", res.StatusCode, http.StatusOK)
}
}
}
// testNotificationHandlerGet confirms the Get handler works correctly
func testNotificationHandlerGet(ctx context.Context) func(*testing.T) {
return func(t *testing.T) {
t.Parallel()
ctx := zlog.Test(ctx, t)
var (
nextID = uuid.New()
inPageWant = notifier.Page{
Size: 500,
}
noteID = uuid.New()
outPageWant = notifier.Page{
Size: 500,
Next: &nextID,
}
)
nm := &service.Mock{
Notifications_: func(ctx context.Context, id uuid.UUID, page *notifier.Page) ([]notifier.Notification, notifier.Page, error) {
if !cmp.Equal(id, noteID) {
t.Fatalf("got: %v, wanted: %v", id, noteID)
}
if !cmp.Equal(page, &inPageWant) {
t.Fatalf("got: %v, wanted: %v", page, inPageWant)
}
return []notifier.Notification{}, notifier.Page{
Size: inPageWant.Size,
Next: &nextID,
}, nil
},
}
h, err := NewNotificationV1(ctx, `/notifier/api/v1/`, nm, notifierTraceOpt)
if err != nil {
t.Error(err)
}
rr := httptest.NewRecorder()
u, _ := url.Parse("http://clair-notifier/notifier/api/v1/notification/" + noteID.String())
req, err := httputil.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
if err != nil {
t.Error(err)
}
h.get(rr, req)
res := rr.Result()
if res.StatusCode != http.StatusOK {
t.Errorf("got: %v, wanted: %v", res.StatusCode, http.StatusOK)
}
var noteResp notificationResponse
if err := json.NewDecoder(res.Body).Decode(¬eResp); err != nil {
t.Errorf("failed to deserialize notification response: %v", err)
}
if !cmp.Equal(noteResp.Page, outPageWant) {
t.Errorf("got: %v, want: %v", noteResp.Page, outPageWant)
}
}
}
// testNotificationHandlerGetParams confirms the Get handler works correctly
// when parameters are present
func testNotificationHandlerGetParams(ctx context.Context) func(*testing.T) {
return func(t *testing.T) {
t.Parallel()
ctx := zlog.Test(ctx, t)
const (
pageSizeParam = "100"
pageParam = "10"
)
var (
nextID = uuid.New()
inPageWant = notifier.Page{
Size: 100,
}
noteID = uuid.New()
outPageWant = notifier.Page{
Size: 100,
Next: &nextID,
}
)
nm := &service.Mock{
Notifications_: func(ctx context.Context, id uuid.UUID, page *notifier.Page) ([]notifier.Notification, notifier.Page, error) {
if !cmp.Equal(id, noteID) {
t.Fatalf("got: %v, wanted: %v", id, noteID)
}
if !cmp.Equal(page, &inPageWant) {
t.Fatalf("got: %v, wanted: %v", page, inPageWant)
}
return []notifier.Notification{}, notifier.Page{
Size: inPageWant.Size,
Next: &nextID,
}, nil
},
}
h, err := NewNotificationV1(ctx, `/notifier/api/v1/`, nm, notifierTraceOpt)
if err != nil {
t.Error(err)
}
rr := httptest.NewRecorder()
u, _ := url.Parse("http://clair-notifier/notifier/api/v1/notification/" + noteID.String())
v := url.Values{}
v.Set("page_size", pageSizeParam)
v.Set("page", pageParam)
u.RawQuery = v.Encode()
req, err := httputil.NewRequestWithContext(ctx, http.MethodGet, u.String(), nil)
if err != nil {
t.Error(err)
}
h.get(rr, req)
res := rr.Result()
if res.StatusCode != http.StatusOK {
t.Errorf("got: %v, wanted: %v", res.StatusCode, http.StatusOK)
}
var noteResp notificationResponse
if err := json.NewDecoder(res.Body).Decode(¬eResp); err != nil {
t.Errorf("failed to deserialize notification response: %v", err)
}
if !cmp.Equal(noteResp.Page, outPageWant) {
t.Errorf("got: %v, want: %v", noteResp.Page, outPageWant)
}
}
}
func testNotificationsHandlerMethods(ctx context.Context) func(*testing.T) {
return func(t *testing.T) {
t.Parallel()
ctx := zlog.Test(ctx, t)
h, err := NewNotificationV1(ctx, `/notifier/api/v1/`, &service.Mock{}, notifierTraceOpt)
if err != nil {
t.Error(err)
}
srv := httptest.NewUnstartedServer(h)
srv.Config.BaseContext = func(_ net.Listener) context.Context { return ctx }
srv.Start()
defer srv.Close()
c := srv.Client()
u := srv.URL + `/notifier/api/v1/notification/` + uuid.Nil.String()
for _, m := range []string{
http.MethodConnect,
http.MethodHead,
http.MethodOptions,
http.MethodPatch,
http.MethodPost,
http.MethodPut,
http.MethodTrace,
} {
req, err := httputil.NewRequestWithContext(ctx, m, u, nil)
if err != nil {
t.Fatalf("failed to create request: %v", err)
}
resp, err := c.Do(req)
if err != nil {
t.Fatalf("failed to make request: %v", err)
}
if resp.StatusCode != http.StatusMethodNotAllowed {
t.Errorf("method: %v got: %v want: %v", m, resp.Status, http.StatusMethodNotAllowed)
}
}
}
}