-
Notifications
You must be signed in to change notification settings - Fork 0
415 lines (364 loc) · 17.1 KB
/
test.yml
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
name: Test
# THIS IS FOR TESTING THE ACTION: DO NOT USE IT IN YOUR DRUPAL PROJECT, USE
# workflow-templates/update-config-branch.yml instead.
#
# Secrets
# - TEST_CONFIG_REPO_TOKEN: A token with write access to the test config repo.
# - TEST_SITE_REPO_TOKEN: A token with write access to the test site repo.
# Variables
# - TEST_CONFIG_REPO: The GitHub config repo for use with the test.
# - TEST_SITE_REPO: The GitHub site repo for use with the test.
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 1 * *'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-initial-setup:
# if: false
name: Test mirroring the config repo to the site repo (ie initial setup)
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-job
env:
test_config_repo_branch: "${{ github.job }}-main"
test_site_repo_config_branch: "${{ github.job }}-config-only"
test_site_repo_live_branch: "${{ github.job }}-main"
test_site_repo_pr_branch: "${{ github.job }}-automatic-config-export"
test_site_repo_pr_branch_base: "${{ github.job }}-staging"
steps:
- uses: actions/checkout@v4
with:
path: test/update-config
- uses: ./test/update-config/.github/actions/test-setup
with:
branch_prefix: "${{ github.job }}-"
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
test_site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
test_site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
test_site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- uses: ./test/update-config
with:
config_repo: ${{ vars.TEST_CONFIG_REPO }}
config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
config_repo_branch: ${{ env.test_config_repo_branch }}
site_repo: ${{ vars.TEST_SITE_REPO }}
site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- uses: ./test/update-config/.github/actions/test-assertions
with:
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
- name: Assert the state after running the action
env:
GH_TOKEN: ${{ secrets.TEST_SITE_REPO_TOKEN }}
working-directory: test/site
run: |
# Assert the state after running the action
set -eu
git checkout ${{ env.test_site_repo_pr_branch_base }}
if [[ "$(gh pr list --json id)" != "[]" ]]; then
echo "**TEST FAILURE:** There shouldn't be a PR after running the action the first time to create the config-only branch." >> "$GITHUB_STEP_SUMMARY"
exit 1
fi
- uses: ./test/update-config/.github/actions/test-teardown
if: ${{ always() }}
with:
branch_prefix: "${{ github.job }}-"
test-create-pr:
# if: false
name: Test updating the mirrored config branch and creating a PR from it.
runs-on: ubuntu-latest
env:
test_config_repo_branch: "${{ github.job }}-main"
test_site_repo_config_branch: "${{ github.job }}-config-only"
test_site_repo_pr_branch: "${{ github.job }}-automatic-config-export"
test_site_repo_pr_branch_base: "${{ github.job }}-staging"
test_site_repo_live_branch: "${{ github.job }}-main"
steps:
- uses: actions/checkout@v4
with:
path: test/update-config
- uses: ./test/update-config/.github/actions/test-setup
with:
branch_prefix: "${{ github.job }}-"
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
test_site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
test_site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
test_site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- name: 'Test setup for testing creating a PR'
working-directory: test
run: |
set -eu
cd site
git remote add remote-config ../remote
git fetch remote-config
git checkout -b ${{ env.test_site_repo_config_branch }} remote-config/${{ env.test_config_repo_branch }}^
tmp_dir=$(mktemp -d)
cp * "$tmp_dir"
git push origin HEAD
git checkout ${{ inputs.test_site_repo_live_branch }}
git rm config/sync/*
mv "$tmp_dir"/* config/sync
git add config/sync
git commit --amend
git push --force
git checkout ${{ inputs.test_site_repo_pr_branch_base }}
echo modified > config/sync/e
git commit -m "Simulate updating config during development"
git push --force
- uses: ./test/update-config
with:
config_repo: ${{ vars.TEST_CONFIG_REPO }}
config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
config_repo_branch: ${{ env.test_config_repo_branch }}
site_repo: ${{ vars.TEST_SITE_REPO }}
site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- uses: ./test/update-config/.github/actions/test-assertions
with:
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
- name: Assert the state after running the action
env:
GH_TOKEN: ${{ secrets.TEST_SITE_REPO_TOKEN }}
working-directory: test/site
run: |
set -eu
exit=0
#tmp_dir=$(mktemp -d)
#git checkout ${{ env.test_site_repo_config_branch }}
#cp * "$tmp_dir"
if [[ "$(gh pr list --head ${{ env.test_site_repo_pr_branch }} --json id)" == "[]" ]]; then
echo "**TEST FAILURE:** There should be a PR created." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
git checkout ${{ env.test_site_repo_pr_branch_base }}
git merge origin/${{ env.test_site_repo_pr_branch }}
if [[ "$(cat config/sync/c)" != "modified" ]]; then
echo "**TEST FAILURE:** After merging the config PR the 'c' file is incorrect." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
if [[ "$(cat config/sync/e)" != "modified" ]]; then
echo "**TEST FAILURE:** After merging the config PR the 'e' file is incorrect." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
#rm config/sync/*
#mv "$tmp_dir"/* config/sync
#if [[ -n "$(git status --porcelain)" ]]; then
# echo "**TEST FAILURE:** The PR branch config should match the config repo branch." >> "$GITHUB_STEP_SUMMARY"
# exit=1
#fi
#rm -rf "$tmp_dir"
exit $exit
- uses: ./test/update-config/.github/actions/test-teardown
if: ${{ always() }}
with:
branch_prefix: "${{ github.job }}-"
test-existing-pr:
# if: false
name: Test updating an existing PR.
runs-on: ubuntu-latest
env:
test_config_repo_branch: "${{ github.job }}-main"
test_site_repo_config_branch: "${{ github.job }}-config-only"
test_site_repo_live_branch: "${{ github.job }}-main"
test_site_repo_pr_branch: "${{ github.job }}-automatic-config-export"
test_site_repo_pr_branch_base: "${{ github.job }}-staging"
steps:
- uses: actions/checkout@v4
with:
path: test/update-config
- uses: ./test/update-config/.github/actions/test-setup
with:
branch_prefix: "${{ github.job }}-"
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
test_site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
test_site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
test_site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- name: 'Test setup for testing updating an existing PR'
env:
GH_TOKEN: ${{ secrets.TEST_SITE_REPO_TOKEN }}
working-directory: test
run: |
set -eu
cd site
# Ensure the site repo config branch is behind the config repo.
git remote add remote-config ../remote
git fetch remote-config
git checkout -b ${{ env.test_site_repo_config_branch }} remote-config/${{ env.test_config_repo_branch }}^
tmp_dir=$(mktemp -d)
cp * "$tmp_dir"
git push origin HEAD
# Set up an existing PR.
git checkout ${{ env.test_site_repo_pr_branch_base }}
rm config/sync/*
touch config/sync/test-existing-pr
git add config/sync
git commit --amend -m "Initial commmit"
git push origin HEAD --force
git checkout -b ${{ env.test_site_repo_pr_branch }}
cp -r "$tmp_dir"/* config/sync
git add config/sync
git commit -m "Update"
git push origin HEAD
gh pr create --base ${{ env.test_site_repo_pr_branch_base }} --title "Test PR" --body "Test PR"
rm -rf "$tmp_dir"
- uses: ./test/update-config
with:
config_repo: ${{ vars.TEST_CONFIG_REPO }}
config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
config_repo_branch: ${{ env.test_config_repo_branch }}
site_repo: ${{ vars.TEST_SITE_REPO }}
site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- uses: ./test/update-config/.github/actions/test-assertions
with:
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
- name: Assert the state after running the action
env:
GH_TOKEN: ${{ secrets.TEST_SITE_REPO_TOKEN }}
working-directory: test/site
run: |
# Assert the state after running the action
set -eu
if [[ "$(gh pr list -H ${{ env.test_site_repo_pr_branch }} --json id)" == "[]" ]]; then
echo "**TEST FAILURE:** There should still be an existing PR." >> "$GITHUB_STEP_SUMMARY"
exit 1
fi
- uses: ./test/update-config/.github/actions/test-teardown
if: ${{ always() }}
with:
branch_prefix: "${{ github.job }}-"
test-identical-config:
# if: false
name: Test updating the mirrored config branch only to find it matches what's already in staging.
runs-on: ubuntu-latest
env:
test_config_repo_branch: "${{ github.job }}-main"
test_site_repo_config_branch: "${{ github.job }}-config-only"
test_site_repo_pr_branch: "${{ github.job }}-automatic-config-export"
test_site_repo_pr_branch_base: "${{ github.job }}-staging"
test_site_repo_live_branch: "${{ github.job }}-main"
steps:
- uses: actions/checkout@v4
with:
path: test/update-config
- uses: ./test/update-config/.github/actions/test-setup
with:
branch_prefix: "${{ github.job }}-"
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
test_site_repo_live_branch: "${{ github.job }}-main"
test_site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
test_site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- name: 'Test setup for testing matching config'
working-directory: test/site
run: |
set -eu
git remote add remote-config ../remote
git fetch remote-config
git checkout -b ${{ env.test_site_repo_config_branch }} remote-config/${{ env.test_config_repo_branch }}^
#tmp_dir=$(mktemp -d)
#cp * "$tmp_dir"
#git push origin HEAD
- uses: ./test/update-config
with:
config_repo: ${{ vars.TEST_CONFIG_REPO }}
config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
config_repo_branch: ${{ env.test_config_repo_branch }}
site_repo: ${{ vars.TEST_SITE_REPO }}
site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
site_repo_live_branch: ${{ env.test_site_repo_live_branch }}
site_repo_pr_branch: ${{ env.test_site_repo_pr_branch }}
site_repo_pr_branch_base: ${{ env.test_site_repo_pr_branch_base }}
- uses: ./test/update-config/.github/actions/test-assertions
with:
test_config_repo: ${{ vars.TEST_CONFIG_REPO }}
test_config_repo_branch: ${{ env.test_config_repo_branch }}
test_config_repo_token: ${{ secrets.TEST_CONFIG_REPO_TOKEN }}
test_site_repo: ${{ vars.TEST_SITE_REPO }}
test_site_repo_token: ${{ secrets.TEST_SITE_REPO_TOKEN }}
test_site_repo_config_branch: ${{ env.test_site_repo_config_branch }}
- name: Assert the state after running the action
env:
GH_TOKEN: ${{ secrets.TEST_SITE_REPO_TOKEN }}
working-directory: test/site
run: |
set -eu
exit=0
#tmp_dir=$(mktemp -d)
#git checkout ${{ env.test_site_repo_config_branch }}
#cp * "$tmp_dir"
if [[ "$(gh pr list --head ${{ env.test_site_repo_pr_branch }} --json id)" != "[]" ]]; then
echo "**TEST FAILURE:** There should not be a PR created." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
git checkout ${{ env.test_site_repo_pr_branch_base }}
if [[ "$(cat config/sync/c)" != "modified" ]]; then
echo "**TEST FAILURE:** The PR base branch doesn't contain the updated file 'c'." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
if [[ "$(cat config/sync/e)" != "modified" ]]; then
echo "**TEST FAILURE:** The PR base branch doesn't contain the updated file 'e'." >> "$GITHUB_STEP_SUMMARY"
exit=1
fi
#rm -rf "$tmp_dir"
exit $exit
- uses: ./test/update-config/.github/actions/test-teardown
if: ${{ always() }}
with:
branch_prefix: "${{ github.job }}-"