blob: 3b712d24926fd1282155517eed2220245c6d4e1e (
plain) (
blame)
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
|
name: build-and-test
description: Build YDB and run Tests
inputs:
log_suffix:
required: true
type: string
test_label_regexp:
required: false
type: string
aws_key_id:
required: true
type: string
aws_key_value:
required: true
type: string
testman_token:
required: false
type: string
testman_url:
required: false
type: string
testman_project_id:
required: false
type: string
aws_bucket:
required: true
type: string
aws_endpoint:
required: true
type: string
run_unit_tests:
required: true
type: string
run_functional_tests:
required: true
type: string
runs:
using: "composite"
steps:
- name: Init
id: init
shell: bash
run: |
rm -rf artifacts tmp test_reports
mkdir -p artifacts tmp/pytest test_reports/pytest
echo "WORKDIR=$(pwd)" >> $GITHUB_ENV
echo "TESTREPDIR=$(pwd)/test_reports" >> $GITHUB_ENV
echo "TMPDIR=$(pwd)/tmp" >> $GITHUB_ENV
echo "PYTESTREPDIR=$(pwd)/test_reports/pytest/" >> $GITHUB_ENV
echo "TESTMO_TOKEN=${{inputs.testman_token}}" >> $GITHUB_ENV
echo "TESTMO_URL=${{inputs.testman_url}}" >> $GITHUB_ENV
echo "ARTIFACTS_DIR=$(pwd)/artifacts" >> $GITHUB_ENV
echo "SUMMARY_LINKS=$(mktemp)" >> $GITHUB_ENV
echo "logfilename=${{inputs.log_suffix}}-ctest-stdout.gz" >> $GITHUB_OUTPUT
echo "testfilterfile=$(pwd)/.github/config/muted_test.txt" >> $GITHUB_OUTPUT
echo "testshardfilterfile=$(pwd)/.github/config/muted_shard.txt" >> $GITHUB_OUTPUT
echo "functestfilterfile=$(pwd)/.github/config/muted_functest.txt" >> $GITHUB_OUTPUT
echo "pytest-logfilename=${{inputs.log_suffix}}-pytest-stdout.log" >> $GITHUB_OUTPUT
echo "PORT_SYNC_PATH=$(mktemp -d -p $(pwd)/tmp port-sync-XXXXXX)" >> $GITHUB_ENV
- name: configure s3cmd
shell: bash
run: |
cat <<EOF > $TMPDIR/s3cfg
[default]
access_key = ${aws_key_id}
secret_key = ${aws_secret_access_key}
bucket_location = ru-central1
host_base = storage.yandexcloud.net
host_bucket = %(bucket)s.storage.yandexcloud.net
EOF
echo "S3CMD_CONFIG=$TMPDIR/s3cfg" >> $GITHUB_ENV
echo "S3_BUCKET_PATH=s3://${{ inputs.aws_bucket }}/${{ github.repository }}/${{github.workflow}}/${{ github.run_id }}/${{inputs.log_suffix}}/" >> $GITHUB_ENV
echo "S3_URL_PREFIX=${{inputs.aws_endpoint}}/${{inputs.aws_bucket}}/${{ github.repository }}/${{github.workflow}}/${{github.run_id}}/${{inputs.log_suffix}}" >> $GITHUB_ENV
env:
aws_key_id: ${{inputs.AWS_KEY_ID }}
aws_secret_access_key: ${{inputs.AWS_KEY_VALUE}}
- name: Install Node required for Testmo CLI
uses: actions/setup-node@v3
with:
node-version: 19
- name: Install Testmo CLI
shell: bash
run: npm install -g @testmo/testmo-cli
- name: Test history run create
id: th
if: inputs.testman_token
shell: bash
env:
PR_NUMBER: ${{ github.event.number }}
run: |
RUN_URL="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
BRANCH_TAG="$GITHUB_REF_NAME"
ARCH="${{ runner.arch == 'X64' && 'x86-64' || runner.arch == 'ARM64' && 'arm64' || 'unknown' }}"
LOG_SUFFIX="${{ inputs.log_suffix }}"
TESTMO_SOURCE="cmake-${ARCH}"
if [ ! -z "${LOG_SUFFIX}" ]; then
TESTMO_SOURCE="${TESTMO_SOURCE}-${LOG_SUFFIX/_/-}"
fi
case $GITHUB_EVENT_NAME in
workflow_dispatch)
TESTMO_RUN_NAME="${{ github.run_id }} manual"
EXTRA_TAG="manual"
;;
pull_request | pull_request_target)
TESTMO_RUN_NAME="${{ github.run_id }} PR #${PR_NUMBER}"
EXTRA_TAG="pr"
BRANCH_TAG=""
;;
schedule)
TESTMO_RUN_NAME="${{ github.run_id }} schedule"
EXTRA_TAG="schedule"
;;
*)
TESTMO_RUN_NAME="${{ github.run_id }}"
EXTRA_TAG=""
;;
esac
testmo automation:resources:add-link --name build --url $RUN_URL --resources testmo.json
testmo automation:resources:add-field --name git-sha --type string --value ${GITHUB_SHA:0:7} --resources testmo.json
RUN_ID=$(
testmo automation:run:create --instance "$TESTMO_URL" --project-id ${{inputs.testman_project_id}} \
--name "$TESTMO_RUN_NAME" --source "$TESTMO_SOURCE" --resources testmo.json \
--tags "$BRANCH_TAG" --tags "$EXTRA_TAG"
)
echo "runid=${RUN_ID}" >> $GITHUB_OUTPUT
echo "TEST_HISTORY_URL=${TESTMO_URL}/automation/runs/view/${RUN_ID}" >> $GITHUB_ENV
- name: Print test history link
shell: bash
run: |
echo "10 [Test history](${TEST_HISTORY_URL})" >> $SUMMARY_LINKS
- name: set environment variables required by some tests
shell: bash
run: |
echo "PSQL_BINARY=/usr/bin/psql" >> $GITHUB_ENV
- name: Run unit tests
id: ctest
if: inputs.run_unit_tests == 'true'
shell: bash
run: |
cd $WORKDIR/../build/ydb
echo "20 [Unittest log]($S3_URL_PREFIX/${{steps.init.outputs.logfilename}})" >> $SUMMARY_LINKS
# Sed removes coloring from the output
GTEST_OUTPUT="xml:$TESTREPDIR/unittests/" Y_UNITTEST_OUTPUT="xml:$TESTREPDIR/unittests/" \
ctest -j28 --timeout 1200 --force-new-ctest-process --output-on-failure \
--output-junit $TESTREPDIR/suites/ctest_report.xml \
-L '${{inputs.test_label_regexp}}' -E "${CTEST_SKIP_SHARDS:-}" | \
sed -u -e 's/\x1b\[[0-9;]*m//g' | \
tee >(gzip --stdout > $ARTIFACTS_DIR/${{steps.init.outputs.logfilename}}) | \
grep --line-buffered -E '(Test\s*#.*\*\*\*|\[FAIL\])|.*tests passed,.*tests failed out of' | \
tee $WORKDIR/short.log || (
RC=$?
if [ $RC == 8 ]; then
echo "ctest returned TEST_ERRORS, recovering.."
else
exit $RC
fi
)
- name: archive unitest reports (orig)
if: inputs.run_unit_tests == 'true'
shell: bash
run: |
tar -C $TESTREPDIR/ -czf $ARTIFACTS_DIR/xml_orig.tar.gz .
- name: postprocess xml reports
if: inputs.run_unit_tests == 'true'
shell: bash
run: |
echo "::group::extract-logs"
mkdir $ARTIFACTS_DIR/logs/
.github/scripts/tests/attach-logs.py \
--url-prefix $S3_URL_PREFIX/logs/ \
--ctest-report $TESTREPDIR/suites/ctest_report.xml \
--junit-reports-path $TESTREPDIR/unittests/ \
--decompress \
$ARTIFACTS_DIR/${{steps.init.outputs.logfilename}} \
$ARTIFACTS_DIR/logs/
echo "::endgroup::"
echo "::group::junit-postprocess"
.github/scripts/tests/junit-postprocess.py \
--filter-file ${{steps.init.outputs.testfilterfile}} \
$TESTREPDIR/unittests/
echo "::endgroup::"
echo "::group::ctest-postprocess"
.github/scripts/tests/ctest-postprocess.py \
--filter-file ${{steps.init.outputs.testshardfilterfile}} \
--decompress \
$ARTIFACTS_DIR/${{steps.init.outputs.logfilename}} \
$TESTREPDIR/suites/ctest_report.xml
tar -C $TESTREPDIR/ -czf $ARTIFACTS_DIR/reports.tar.gz .
echo "90 [XML reports archive]($S3_URL_PREFIX/reports.tar.gz)" >> $SUMMARY_LINKS
echo "::endgroup::"
- name: sync test results to s3
if: always() && inputs.run_unit_tests == 'true'
shell: bash
run: |
echo "::group::s3-sync"
s3cmd sync -P --no-progress --stats --no-check-md5 -P $ARTIFACTS_DIR/ $S3_BUCKET_PATH
echo "::endgroup::"
- name: Unit test history upload results
if: always() && inputs.run_unit_tests == 'true' && inputs.testman_token
shell: bash
run: |
testmo automation:run:submit-thread \
--instance "$TESTMO_URL" --run-id ${{steps.th.outputs.runid}} \
--results "$TESTREPDIR/unittests/*.xml"
testmo automation:run:submit-thread \
--exec-suppress \
--instance "$TESTMO_URL" --run-id ${{steps.th.outputs.runid}} \
--results "$TESTREPDIR/suites/*.xml" \
-- cat $WORKDIR/short.log
- name: Run functional tests
if: inputs.run_functional_tests == 'true' && (success() || failure())
shell: bash
run: |
export source_root=$WORKDIR
export build_root=$WORKDIR/../build/
echo "30 [Functional test log]($S3_URL_PREFIX/${{steps.init.outputs.pytest-logfilename}})" >> $SUMMARY_LINKS
source $WORKDIR/ydb/tests/oss/launch/prepare.sh
rm -rf $ARTIFACTS_DIR/pytest/
mkdir $ARTIFACTS_DIR/pytest/
cd $WORKDIR/ydb/tests/functional/
pytest \
-p xdist -n 24 --dist worksteal \
--timeout_method signal \
-o junit_logging=log -o junit_log_passing_tests=False --junit-xml=$PYTESTREPDIR/pytest.xml \
-ra --tb=no --show-capture=no \
--github-repo $GITHUB_REPOSITORY --github-ref $GITHUB_SHA \
--source-root $source_root \
--build-root $build_root \
--output-dir $TMPDIR/pytest/ \
. | tee $ARTIFACTS_DIR/${{steps.init.outputs.pytest-logfilename}} || {
RC=$?
if [ $RC == 1 ]; then
echo "pytest: tests were collected and run but some of the tests failed"
else
exit $RC
fi;
}
# --artifacts-dir $ARTIFACTS_DIR/pytest/ \
# --artifacts-url $S3_URL_PREFIX/pytest/ \
- name: postprocess functional test reports
if: always() && inputs.run_functional_tests == 'true'
shell: bash
run: |
echo "::group::junit-postprocess"
# append orig pytest reports
if [ -f "$ARTIFACTS_DIR/xml_orig.tar.gz" ]; then
echo "add pytest to xml_orig.tar.gz"
gzip -d $ARTIFACTS_DIR/xml_orig.tar.gz
tar -C $TESTREPDIR/ -rvf $ARTIFACTS_DIR/xml_orig.tar pytest
gzip -v $ARTIFACTS_DIR/xml_orig.tar
fi
.github/scripts/tests/pytest-postprocess.py \
--filter-file ${{ steps.init.outputs.functestfilterfile }} \
$PYTESTREPDIR/
# make archive again with pytest reports
tar -C $TESTREPDIR/ -czf $ARTIFACTS_DIR/reports.tar.gz .
ls -la $ARTIFACTS_DIR/reports.tar.gz
echo "::endgroup::"
- name: Functional tests history upload results
if: always() && inputs.run_functional_tests == 'true' && inputs.testman_token
shell: bash
run: |
testmo automation:run:submit-thread \
--instance "$TESTMO_URL" --run-id ${{steps.th.outputs.runid}} \
--results "$PYTESTREPDIR/*.xml" \
-- cat $ARTIFACTS_DIR/${{steps.init.outputs.pytest-logfilename}}
- name: Test history run complete
if: always() && inputs.testman_token
shell: bash
run: |
testmo automation:run:complete --instance "$TESTMO_URL" --run-id ${{steps.th.outputs.runid}}
- name: write tests summary
if: always()
shell: bash
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
cat $SUMMARY_LINKS | python3 -c 'import sys; print(" | ".join([v for _, v in sorted([l.strip().split(" ", 1) for l in sys.stdin], key=lambda a: (int(a[0]), a))]))' >> $GITHUB_STEP_SUMMARY
mkdir $ARTIFACTS_DIR/summary/
.github/scripts/tests/generate-summary.py \
--summary-out-path $ARTIFACTS_DIR/summary/ \
--summary-url-prefix $S3_URL_PREFIX/summary/ \
--test-history-url $TEST_HISTORY_URL \
"Unittests" unittest.html $TESTREPDIR/unittests \
"Unittest binary runs" ctest.html $TESTREPDIR/suites \
"Functional tests" functional.html $PYTESTREPDIR
- name: sync test results to s3
if: always()
shell: bash
run: |
echo "::group::s3-sync"
s3cmd sync -P --no-progress --stats --no-check-md5 -P $ARTIFACTS_DIR/ $S3_BUCKET_PATH
echo "::endgroup::"
- name: finish
shell: bash
run: |
.github/scripts/tests/fail-checker.py $TESTREPDIR/unittests/ $TESTREPDIR/suites/ $PYTESTREPDIR/
|