-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
135 lines (121 loc) Β· 3.39 KB
/
main_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
package main
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
"go.b8s.dev/rollingpin/config"
"go.b8s.dev/rollingpin/kube"
"go.uber.org/zap"
)
func TestHarborWebhookEndToEnd(t *testing.T) {
// Set up test HTTP request
payload := `{
"type": "PUSH_ARTIFACT",
"occur_at": 1586922308,
"operator": "admin",
"event_data": {
"resources": [{
"digest": "sha256:8a9e9863dbb6e10edb5adfe917c00da84e1700fa76e7ed02476aa6e6fb8ee0d8",
"tag": "latest",
"resource_url": "cr.b8s.dev/library/debian:v2"
}],
"repository": {
"date_created": 1586922308,
"name": "debian",
"namespace": "library",
"repo_full_name": "library/debian",
"repo_type": "private"
}
}
}`
req, _ := http.NewRequest("POST", "/webhooks/harbor", bytes.NewBufferString(payload))
req.Header.Add("authorization", "Bearer abc1234")
resp := httptest.NewRecorder()
// Set up fake kubernetes api client
fakeClient, _ := kube.NewFake()
fakeClient.CreateDeployment(
&kube.Deployment{
Namespace: "default",
Name: "test-deployment",
Containers: []*kube.Container{
{Name: "app", Image: "cr.b8s.dev/library/debian:v1"},
},
},
)
// Set up our own app's stuff
conf := &config.Config{
AuthToken: "abc1234",
Mappings: []config.ImageMapping{
{
Namespace: "default",
DeploymentName: "test-deployment",
ImageName: "library/debian",
},
},
}
log, _ := zap.NewProduction()
// Execute request
r := buildRouter(conf, log, fakeClient)
r.ServeHTTP(resp, req)
// Assertions
if resp.Code != 200 {
t.Errorf("Expected 200 response got: %d", resp.Code)
}
if resp.Body.String() != `{"ok":true}` {
t.Errorf("Expected OK response got: %s", resp.Body.String())
}
newDeploy, _ := fakeClient.GetDeployment("default", "test-deployment")
newImageName := newDeploy.Containers[0].Image
if newImageName != "cr.b8s.dev/library/debian:v2" {
t.Errorf("Expected deployment to be updated but was not! Image was: %s", newImageName)
}
}
func TestDirectWebhookEndToEnd(t *testing.T) {
// Set up test HTTP request
payload := `{
"image_url": "cr.b8s.dev/library/debian:v2",
"repository_name": "library/debian"
}`
req, _ := http.NewRequest("POST", "/webhooks/direct", bytes.NewBufferString(payload))
req.Header.Add("authorization", "Bearer abc1234")
resp := httptest.NewRecorder()
// Set up fake kubernetes api client
fakeClient, _ := kube.NewFake()
fakeClient.CreateDeployment(
&kube.Deployment{
Namespace: "default",
Name: "test-deployment",
Containers: []*kube.Container{
{Name: "app", Image: "cr.b8s.dev/library/debian:v1"},
},
},
)
// Set up our own app's stuff
conf := &config.Config{
AuthToken: "abc1234",
Mappings: []config.ImageMapping{
{
Namespace: "default",
DeploymentName: "test-deployment",
ImageName: "library/debian",
},
},
}
log, _ := zap.NewProduction()
// Execute request
r := buildRouter(conf, log, fakeClient)
r.ServeHTTP(resp, req)
// Assertions
if resp.Code != 200 {
t.Errorf("Expected 200 response got: %d", resp.Code)
}
if resp.Body.String() != `{"ok":true}` {
t.Errorf("Expected OK response got: %s", resp.Body.String())
}
newDeploy, _ := fakeClient.GetDeployment("default", "test-deployment")
newImageName := newDeploy.Containers[0].Image
if newImageName != "cr.b8s.dev/library/debian:v2" {
t.Errorf("Expected deployment to be updated but was not! Image was: %s", newImageName)
}
}