forked from cheqd/cheqd-node
-
Notifications
You must be signed in to change notification settings - Fork 0
311 lines (250 loc) · 9.71 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
name: "Tests"
on:
workflow_call:
defaults:
run:
shell: bash
env:
RUNNER_BIN_DIR: /home/runner/.local/bin
permissions:
contents: write
packages: read
checks: write
jobs:
# interactive-installer:
# name: "Interactive Installer"
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - name: "Fresh install"
# working-directory: ./installer
# run: |
# sudo bash -c "python3 installer.py < install-from-scratch.txt"
# - name: "Upgrade existing installation"
# working-directory: ./installer
# run: |
# sudo bash -c "python3 installer.py < upgrade-existing.txt"
# - name: Debugging with tmate
# if: ${{ failure() }}
# uses: mxschmitt/action-tmate@v3
# timeout-minutes: 10
unit-tests:
name: "Unit Tests"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
- name: Install ginkgo
working-directory: ./..
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Run Ginkgo unit tests
run: ginkgo -r --tags upgrade_unit --race --randomize-all --randomize-suites --keep-going --trace --junit-report report-unit.xml
- name: Upload unit tests result
uses: actions/upload-artifact@v3
with:
name: report-unit.xml
path: report-unit.xml
integration-tests:
name: "Integration Tests"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Download binary artifact
uses: actions/download-artifact@v3
id: download
with:
name: cheqd-noded
path: ${{ env.RUNNER_BIN_DIR }}
- name: Restore binary permissions
run: sudo chmod +x ${{ env.RUNNER_BIN_DIR }}/cheqd-noded
- name: Download node Docker image
uses: actions/download-artifact@v3
with:
name: cheqd-node-build.tar
- name: Load node Docker image
run: docker load -i cheqd-node-build.tar
- name: Generate localnet configs
working-directory: ./docker/localnet
run: |
bash gen-network-config.sh
sudo chown -R 1000:1000 network-config
- name: Set up Docker localnet
working-directory: ./docker/localnet
run: |
docker compose --env-file build-latest.env up --detach --no-build
- name: Import keys
working-directory: ./docker/localnet
run: |
bash import-keys.sh
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
- name: Install ginkgo
working-directory: ./..
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Run Ginkgo integration tests
working-directory: ./tests/integration
run: |
ginkgo -r --tags integration --race --randomize-suites --keep-going --trace --junit-report ../../report-integration.xml
- name: Show logs
if: failure()
working-directory: ./docker/localnet
run: docker compose --env-file build-latest.env logs --tail --follow
- name: Upload integration tests result
uses: actions/upload-artifact@v3
with:
name: report-integration.xml
path: report-integration.xml
upgrade-tests:
name: "Upgrade Tests"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
# Preparations
- name: Download old node binary (mainnet-latest)
run: |
mkdir -p ${{ env.RUNNER_BIN_DIR }}
wget -c https://github.com/cheqd/cheqd-node/releases/download/v"${LEGACY_VERSION}"/cheqd-noded-"${LEGACY_VERSION}"-Linux-x86_64.tar.gz
tar -xvf cheqd-noded-"${LEGACY_VERSION}"-Linux-x86_64.tar.gz -C ${{ env.RUNNER_BIN_DIR }}
sudo chmod +x ${{ env.RUNNER_BIN_DIR }}/cheqd-noded
env:
LEGACY_VERSION: 0.6.10
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
- name: Install ginkgo
working-directory: ./..
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Download new version of the Docker image (build-latest)
uses: actions/download-artifact@v3
with:
name: cheqd-node-build.tar
- name: Load node Docker image
run: docker load -i cheqd-node-build.tar
# Run tests
- name: Setting up network with old binary inside (mainnet version)
working-directory: ./tests/upgrade/integration
run: |
bash scripts/setup.sh
- name: Run pre-upgrade tests
working-directory: ./tests/upgrade/integration
run: |
ginkgo -r --race --tags upgrade_integration --focus-file pre_test.go --keep-going --trace --junit-report ../../../report-pre-upgrade.xml
- name: Upload pre-upgrade tests result
uses: actions/upload-artifact@v3
with:
name: report-pre-upgrade.xml
path: report-pre-upgrade.xml
- name: Restart network using new node version (build-latest)
working-directory: ./tests/upgrade/integration
run: |
bash scripts/upgrade.sh
- name: Run post-upgrade tests
working-directory: ./tests/upgrade/integration
run: |
ginkgo -r --race --tags upgrade_integration --focus-file post_test.go --keep-going --trace --junit-report ../../../report-post-upgrade.xml
- name: Upload post-upgrade tests result
uses: actions/upload-artifact@v3
with:
name: report-post-upgrade.xml
path: report-post-upgrade.xml
- name: Download binary artifact (build-latest)
uses: actions/download-artifact@v3
id: download
with:
name: cheqd-noded
path: ${{ env.RUNNER_BIN_DIR }}
- name: Restore binary permissions
run: sudo chmod +x ${{ env.RUNNER_BIN_DIR }}/cheqd-noded
- name: Run integration tests on upgraded network
working-directory: ./tests/integration
run: |
ginkgo -r --tags integration --race --randomize-suites --keep-going --trace --junit-report ../../report-upgraded-integration.xml
- name: Upload post-upgrade integration tests result
uses: actions/upload-artifact@v3
with:
name: report-upgraded-integration.xml
path: report-upgraded-integration.xml
- name: Show logs on failure
if: failure()
working-directory: ./docker/localnet
run: docker compose --env-file build-latest.env logs --tail --follow
- name: Submit governance fee parameter change proposals
working-directory: ./tests/upgrade/integration
run: |
ginkgo -r --race --tags upgrade_integration --focus-file param_change_proposal_test.go --keep-going --trace --junit-report ../../../report-pricing-proposal.xml
- name: Upload pricing proposal tests result
uses: actions/upload-artifact@v3
with:
name: report-pricing-proposal.xml
path: report-pricing-proposal.xml
- name: Run pricing integration tests after successful param change proposal
working-directory: ./tests/integration
run: |
ginkgo -r --tags integration --race --randomize-suites --keep-going --trace --skip-file cli_diddoc_test.go --skip-file cli_diddoc_negative_test.go --skip-file cli_resource_test.go --skip-file cli_resource_negative_test.go --junit-report ../../report-pricing-change.xml
- name: Upload pricing change tests result
uses: actions/upload-artifact@v3
with:
name: report-pricing-change.xml
path: report-pricing-change.xml
- name: Cleanup after tests
working-directory: ./tests/upgrade/integration
run: |
bash scripts/cleanup.sh
report-results:
name: "Report"
runs-on: ubuntu-20.04
needs: [unit-tests, integration-tests, upgrade-tests]
if: always()
steps:
- uses: actions/checkout@v3
- name: Download unit test
uses: actions/download-artifact@v3
with:
name: report-unit.xml
- name: Download integration test report
uses: actions/download-artifact@v3
with:
name: report-integration.xml
- name: Download pre-upgrade test Report
uses: actions/download-artifact@v3
with:
name: report-pre-upgrade.xml
- name: Download post-upgrade test Report
uses: actions/download-artifact@v3
with:
name: report-post-upgrade.xml
- name: Download upgraded integration test Report
uses: actions/download-artifact@v3
with:
name: report-upgraded-integration.xml
- name: Download pricing proposal test Report
uses: actions/download-artifact@v3
with:
name: report-pricing-proposal.xml
- name: Download pricing change test Report
uses: actions/download-artifact@v3
with:
name: report-pricing-change.xml
- name: Combine test results
run: |
python ./.github/scripts/xml_combine.py report-unit.xml report-integration.xml report-pre-upgrade.xml report-post-upgrade.xml report-upgraded-integration.xml report-pricing-proposal.xml report-pricing-change.xml > report.xml
- uses: mikepenz/action-junit-report@v3
with:
report_paths: 'report.xml'
check_name: ""
suite_regex: '*'
include_passed: true
detailed_summary: true