-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathgithub_runner_test.go
436 lines (400 loc) · 12.3 KB
/
github_runner_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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
//go:build e2e
// +build e2e
package github_runner_test
import (
"context"
"encoding/base64"
"fmt"
"os"
"strconv"
"testing"
"github.com/google/go-github/v50/github"
"github.com/joho/godotenv"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/oauth2"
"k8s.io/client-go/kubernetes"
. "github.com/kedacore/keda/v2/tests/helper"
)
// Load environment variables from .env file
var _ = godotenv.Load("../../.env")
const (
testName = "github-runner-test"
)
var (
personalAccessToken = os.Getenv("GH_AUTOMATION_PAT")
owner = os.Getenv("GH_OWNER")
githubScope = os.Getenv("GH_SCOPE")
repos = os.Getenv("GH_REPOS")
testNamespace = fmt.Sprintf("%s-ns", testName)
secretName = fmt.Sprintf("%s-secret", testName)
deploymentName = fmt.Sprintf("%s-deployment", testName)
scaledObjectName = fmt.Sprintf("%s-so", testName)
scaledJobName = fmt.Sprintf("%s-sj", testName)
minReplicaCount = 0
maxReplicaCount = 1
workflowID = os.Getenv("GH_WORKFLOW_ID")
soWorkflowID = os.Getenv("GH_SO_WORKFLOW_ID")
ghaWorkflowID = os.Getenv("GH_GHA_WORKFLOW_ID")
appID = os.Getenv("GH_APP_ID")
instID = os.Getenv("GH_INST_ID")
appKey = os.Getenv("GH_APP_KEY")
)
type templateData struct {
TestNamespace string
SecretName string
DeploymentName string
ScaledObjectName string
ScaledJobName string
MinReplicaCount string
MaxReplicaCount string
Pat string
Owner string
Repos string
RunnerScope string
Labels string
ApplicationID string
InstallationID string
ApplicationKey string
}
const (
secretTemplate = `
apiVersion: v1
kind: Secret
metadata:
name: {{.SecretName}}
namespace: {{.TestNamespace}}
data:
personalAccessToken: {{.Pat}}
`
triggerAuthTemplate = `
apiVersion: keda.sh/v1alpha1
kind: TriggerAuthentication
metadata:
name: github-trigger-auth
namespace: {{.TestNamespace}}
spec:
secretTargetRef:
- parameter: personalAccessToken
name: {{.SecretName}}
key: personalAccessToken
`
secretGhaTemplate = `
apiVersion: v1
kind: Secret
metadata:
name: {{.SecretName}}-gha
namespace: {{.TestNamespace}}
data:
appKey: {{.ApplicationKey}}
`
triggerGhaAuthTemplate = `
apiVersion: keda.sh/v1alpha1
kind: TriggerAuthentication
metadata:
name: github-gha-trigger-auth
namespace: {{.TestNamespace}}
spec:
secretTargetRef:
- parameter: appKey
name: {{.SecretName}}-gha
key: appKey
`
deploymentTemplate = `
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{.DeploymentName}}
namespace: {{.TestNamespace}}
labels:
app: github-runner
spec:
replicas: 0
selector:
matchLabels:
app: github-runner
template:
metadata:
labels:
app: github-runner
spec:
terminationGracePeriodSeconds: 90
containers:
- name: github-runner
image: myoung34/github-runner
imagePullPolicy: Always
env:
- name: EPHEMERAL
value: "true"
- name: DISABLE_RUNNER_UPDATE
value: "true"
- name: REPO_URL
value: "https://github.com/{{.Owner}}/{{.Repos}}"
- name: RUNNER_SCOPE
value: {{.RunnerScope}}
- name: LABELS
value: "e2eSOtester"
- name: ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: {{.SecretName}}
key: personalAccessToken
`
scaledObjectTemplate = `
apiVersion: keda.sh/v1alpha1
kind: ScaledObject
metadata:
name: {{.ScaledObjectName}}
namespace: {{.TestNamespace}}
spec:
scaleTargetRef:
name: {{.DeploymentName}}
minReplicaCount: {{.MinReplicaCount}}
maxReplicaCount: {{.MaxReplicaCount}}
pollingInterval: 15
cooldownPeriod: 5
triggers:
- type: github-runner
metadata:
owner: {{.Owner}}
repos: {{.Repos}}
runnerScope: {{.RunnerScope}}
labels: "e2eSOtester"
authenticationRef:
name: github-trigger-auth
`
scaledJobTemplate = `
apiVersion: keda.sh/v1alpha1
kind: ScaledJob
metadata:
name: {{.ScaledJobName}}
namespace: {{.TestNamespace}}
spec:
jobTargetRef:
template:
metadata:
labels:
app: {{.ScaledJobName}}
spec:
containers:
- name: {{.ScaledJobName}}
image: myoung34/github-runner
imagePullPolicy: IfNotPresent
env:
- name: EPHEMERAL
value: "true"
- name: DISABLE_RUNNER_UPDATE
value: "true"
- name: REPO_URL
value: "https://github.com/{{.Owner}}/{{.Repos}}"
- name: RUNNER_SCOPE
value: {{.RunnerScope}}
- name: LABELS
value: "e2etester"
- name: ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: {{.SecretName}}
key: personalAccessToken
restartPolicy: Never
minReplicaCount: {{.MinReplicaCount}}
maxReplicaCount: {{.MaxReplicaCount}}
successfulJobsHistoryLimit: 0
pollingInterval: 15
triggers:
- type: github-runner
metadata:
owner: {{.Owner}}
repos: {{.Repos}}
labels: {{.Labels}}
runnerScopeFromEnv: "RUNNER_SCOPE"
enableEtags: "true"
enableBackoff: "true"
authenticationRef:
name: github-trigger-auth
`
scaledGhaJobTemplate = `
apiVersion: keda.sh/v1alpha1
kind: ScaledJob
metadata:
name: {{.ScaledJobName}}-gha
namespace: {{.TestNamespace}}
spec:
jobTargetRef:
template:
metadata:
labels:
app: {{.ScaledJobName}}
spec:
containers:
- name: {{.ScaledJobName}}
image: myoung34/github-runner
imagePullPolicy: IfNotPresent
env:
- name: EPHEMERAL
value: "true"
- name: DISABLE_RUNNER_UPDATE
value: "true"
- name: REPO_URL
value: "https://github.com/{{.Owner}}/{{.Repos}}"
- name: RUNNER_SCOPE
value: {{.RunnerScope}}
- name: LABELS
value: "e2e-gha-tester"
- name: ACCESS_TOKEN
valueFrom:
secretKeyRef:
name: {{.SecretName}}
key: personalAccessToken
restartPolicy: Never
minReplicaCount: {{.MinReplicaCount}}
maxReplicaCount: {{.MaxReplicaCount}}
successfulJobsHistoryLimit: 0
pollingInterval: 15
triggers:
- type: github-runner
metadata:
owner: {{.Owner}}
repos: {{.Repos}}
labels: "e2e-gha-tester"
runnerScopeFromEnv: "RUNNER_SCOPE"
applicationID: "{{.ApplicationID}}"
installationID: "{{.InstallationID}}"
authenticationRef:
name: github-gha-trigger-auth
`
)
// getGitHub Client
func getGitHubClient() *github.Client {
ctx := context.Background()
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: personalAccessToken},
)
tc := oauth2.NewClient(ctx, ts)
client := github.NewClient(tc)
return client
}
func TestScaler(t *testing.T) {
// setup
t.Log("--- setting up ---")
require.NotEmpty(t, personalAccessToken, "GH_AUTOMATION_PAT env variable is required for github runner test")
require.NotEmpty(t, owner, "GH_OWNER env variable is required for github runner test")
require.NotEmpty(t, githubScope, "GH_SCOPE env variable is required for github runner test")
require.NotEmpty(t, repos, "GH_REPOS env variable is required for github runner test")
require.NotEmpty(t, workflowID, "GH_WORKFLOW_ID env variable is required for github runner test")
require.NotEmpty(t, soWorkflowID, "GH_SO_WORKFLOW_ID env variable is required for github runner test")
require.NotEmpty(t, ghaWorkflowID, "GH_GHA_WORKFLOW_ID env variable is required for github runner test")
require.NotEmpty(t, appID, "GH_APPLICATION_ID env variable is required for github runner test")
require.NotEmpty(t, instID, "GH_INSTALLATION_ID env variable is required for github runner test")
require.NotEmpty(t, appKey, "GH_APP_KEY env variable is required for github runner test")
client := getGitHubClient()
cancelAllRuns(t, client, repos, workflowID)
cancelAllRuns(t, client, repos, soWorkflowID)
cancelAllRuns(t, client, repos, ghaWorkflowID)
// Create kubernetes resources
kc := GetKubernetesClient(t)
data, templates := getTemplateData()
CreateKubernetesResources(t, kc, testNamespace, data, templates)
WaitForPodCountInNamespace(t, kc, testNamespace, minReplicaCount, 60, 2)
// test scaling Scaled Job with App
KubectlApplyWithTemplate(t, data, "scaledGhaJobTemplate", scaledGhaJobTemplate)
testJobScaleOut(t, kc, client, ghaWorkflowID)
testJobScaleIn(t, kc)
// test scaling Scaled Job
KubectlApplyWithTemplate(t, data, "scaledJobTemplate", scaledJobTemplate)
testJobScaleOut(t, kc, client, workflowID)
testJobScaleIn(t, kc)
// test scaling Scaled Object
KubectlApplyWithTemplate(t, data, "scaledObjectTemplate", scaledObjectTemplate)
testSONotActivated(t, kc)
testSOScaleOut(t, kc, client)
testSOScaleIn(t, kc)
// cleanup
DeleteKubernetesResources(t, testNamespace, data, templates)
}
func queueRun(t *testing.T, ghClient *github.Client, flowID string) {
b := &github.CreateWorkflowDispatchEventRequest{
Ref: "main",
}
wID, err := strconv.ParseInt(flowID, 10, 64)
if err != nil {
t.Log(err)
}
_, err = ghClient.Actions.CreateWorkflowDispatchEventByID(context.Background(), owner, repos, wID, *b)
if err != nil {
t.Log(err)
}
}
func cancelAllRuns(t *testing.T, ghClient *github.Client, repos string, flowID string) {
wID, err := strconv.ParseInt(flowID, 10, 64)
if err != nil {
t.Log(err)
}
runs, resp, err := ghClient.Actions.ListWorkflowRunsByID(context.Background(), owner, repos, wID, &github.ListWorkflowRunsOptions{
Status: "queued",
})
t.Log(resp.Body)
if err != nil {
t.Log(err)
}
for _, run := range runs.WorkflowRuns {
_, err := ghClient.Actions.CancelWorkflowRunByID(context.Background(), owner, repos, *run.ID)
if err != nil {
t.Log(err)
}
}
}
func getTemplateData() (templateData, []Template) {
base64Pat := base64.StdEncoding.EncodeToString([]byte(personalAccessToken))
return templateData{
TestNamespace: testNamespace,
SecretName: secretName,
DeploymentName: deploymentName,
ScaledObjectName: scaledObjectName,
ScaledJobName: scaledJobName,
MinReplicaCount: fmt.Sprintf("%v", minReplicaCount),
MaxReplicaCount: fmt.Sprintf("%v", maxReplicaCount),
Pat: base64Pat,
RunnerScope: githubScope,
Owner: owner,
Repos: repos,
Labels: "e2etester",
ApplicationID: appID,
InstallationID: instID,
ApplicationKey: appKey,
}, []Template{
{Name: "secretTemplate", Config: secretTemplate},
{Name: "authTemplate", Config: triggerAuthTemplate},
{Name: "secretGhaTemplate", Config: secretGhaTemplate},
{Name: "authGhaTemplate", Config: triggerGhaAuthTemplate},
{Name: "deploymentTemplate", Config: deploymentTemplate},
{Name: "scaledObjectTemplate", Config: scaledObjectTemplate},
{Name: "scaledJobTemplate", Config: scaledJobTemplate},
{Name: "scaledGhaJobTemplate", Config: scaledGhaJobTemplate},
}
}
func testSONotActivated(t *testing.T, kc *kubernetes.Clientset) {
t.Log("--- testing none activation ---")
AssertReplicaCountNotChangeDuringTimePeriod(t, kc, deploymentName, testNamespace, minReplicaCount, 60)
}
func testSOScaleOut(t *testing.T, kc *kubernetes.Clientset, ghClient *github.Client) {
t.Log("--- testing scale out ---")
queueRun(t, ghClient, soWorkflowID)
assert.True(t, WaitForDeploymentReplicaReadyCount(t, kc, deploymentName, testNamespace, maxReplicaCount, 60, 1),
"replica count should be 2 after 1 minute")
}
func testSOScaleIn(t *testing.T, kc *kubernetes.Clientset) {
t.Log("--- testing scale in ---")
assert.True(t, WaitForPodCountInNamespace(t, kc, testNamespace, minReplicaCount, 60, 5),
"pod count should be 0 after 1 minute")
}
func testJobScaleOut(t *testing.T, kc *kubernetes.Clientset, ghClient *github.Client, wfID string) {
t.Log("--- testing scale out ---")
queueRun(t, ghClient, wfID)
assert.True(t, WaitForJobCount(t, kc, testNamespace, 1, 60, 1), "replica count should be 1 after 1 minute")
}
func testJobScaleIn(t *testing.T, kc *kubernetes.Clientset) {
t.Log("--- testing scale in ---")
assert.True(t, WaitForAllJobsSuccess(t, kc, testNamespace, 60, 5), "jobs should be completed after 1 minute")
DeletePodsInNamespaceBySelector(t, kc, "app="+scaledJobName, testNamespace)
}