-
Notifications
You must be signed in to change notification settings - Fork 1
383 lines (311 loc) · 11.7 KB
/
ci_tests.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
name: CI - Tests
on:
pull_request:
push:
branches:
- 'main'
- 'push-action/**' # Allow pushing to protected branches (using CasperWA/push-protected)
jobs:
basic-tests:
name: External
uses: SINTEF/ci-cd/.github/workflows/[email protected]
with:
# General setup
install_extras: "[dev]"
# pre-commit
run_pre-commit: false
# pylint & safety
python_version_pylint_safety: "3.10"
run_pylint: false
run_safety: true
# ID: 70612
# Package: Jinja2
# Has been disputed by the maintainer and multiple third parties.
# For more information see: https://github.com/advisories/GHSA-f6pv-j8mr-w6rr
safety_options: |
--ignore=70612
# Build dist
python_version_package: "3.10"
build_libs: flit
build_cmd: flit build
# Build documentation
run_build_docs: false
docker:
name: Docker
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
docker_target: ["development", "production"]
env:
# "Regular" entities service configuration values
ENTITIES_SERVICE_MONGO_URI: mongodb://localhost:27017
ENTITIES_SERVICE_X509_CERTIFICATE_FILE: docker_security/test-client.pem
ENTITIES_SERVICE_CA_FILE: docker_security/test-ca.pem
# These are used in the Dockerfile as well as in pytest
ENTITIES_SERVICE_HOST: localhost
ENTITIES_SERVICE_PORT: 8000
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run MongoDB
run: |
# Create folder for certificates
mkdir -p docker_security
# Generate certificates
cd docker_security && ${{ github.workspace }}/.github/docker_init/setup_mongo_security.sh
cd ${{ github.workspace }}
# Pull mongo:8 image and run it
docker pull mongo:8
docker run --rm -d \
--name "mongo" \
--network "host" \
--volume "${{ github.workspace }}/.github/docker_init/create_x509_user.js:/docker-entrypoint-initdb.d/0_create_x509_user.js" \
--volume "${{ github.workspace }}/docker_security:/mongo_tls" \
mongo:8 \
--tlsMode allowTLS --tlsCertificateKeyFile /mongo_tls/test-server1.pem --tlsCAFile /mongo_tls/test-ca.pem
# Health check
tmp_file=.dockerPs
while ! docker exec mongo mongosh --eval "db.runCommand('ping').ok" mongodb://root:root@localhost:27017/?authSource=admin --quiet ; do
docker ps -a > $tmp_file
grep -E "^.*mongo .* Exited .*$" $tmp_file && exited=yes && break
sleep 3
done
rm -f $tmp_file
# Write logs
docker logs mongo
if [ -n "$exited" ]; then
exit 1
fi
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
target: ${{ matrix.docker_target }}
load: true
tags: entities-service
cache-from: type=gha
cache-to: type=gha,mode=max
provenance: false
build-args: |
CI=1
- name: Install test dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel
pip install -U -e .[testing]
- name: Run Docker container
run: |
# Create logging directory and file
mkdir -p logs
touch -a logs/entities_service.log
# Run the service in the background
docker run -d \
--env ENTITIES_SERVICE_MONGO_URI \
--env ENTITIES_SERVICE_X509_CERTIFICATE_FILE \
--env ENTITIES_SERVICE_CA_FILE \
--env PORT=${ENTITIES_SERVICE_PORT} \
--name "entities-service" \
--network "host" \
--volume "${PWD}:/app" \
--user "$(id -u):$(id -g)" \
--init \
--entrypoint "gunicorn" \
entities-service \
--bind="0.0.0.0:${ENTITIES_SERVICE_PORT}" --workers=1 --worker-class="uvicorn.workers.UvicornWorker" --log-level="debug" --pythonpath=".github/utils" run_with_coverage:APP
# Install requirements for health check
sudo apt-get update && sudo apt-get install -y --no-install-recommends -fqqy curl
# Health check
tmp_file=.dockerPs
while ! curl -sf http://localhost:${ENTITIES_SERVICE_PORT}/openapi.json >> /dev/null ; do
docker ps -a > $tmp_file
grep -E "^.*entities-service .* Exited .*$" $tmp_file && exited=yes && break
sleep 1
done
rm -f $tmp_file
# Write logs
docker logs entities-service
if [ -n "$exited" ]; then
exit 1
fi
- name: Run tests
run: |
{
pytest -vv --live-backend --cov-report= --color=yes
} || {
echo "Failed! Here's the Docker logs for the service:" &&
docker logs entities-service &&
echo -e "\nAnd the service log:" &&
cat logs/entities_service.log &&
exit 1
}
- name: Collect coverage
run: |
# We can stop the service via a SIGINT signal, and then collect the coverage data from the
# service via 'docker cp'
docker kill --signal=SIGINT entities-service
# Wait for the coverage file to be written and the service to stop
sleep 5
# Collect coverage data from the service
docker cp entities-service:/app/.coverage.docker .coverage.docker
# Combine the coverage data from pytest and the service
mv .coverage .coverage.pytest
coverage combine --data-file=.coverage.final --rcfile=pyproject.toml .coverage.pytest .coverage.docker
coverage xml --data-file=.coverage.final --rcfile=pyproject.toml -o coverage.xml
coverage report --data-file=.coverage.final --rcfile=pyproject.toml --show-missing --skip-covered --skip-empty
- name: Upload coverage
if: github.repository_owner == 'SINTEF'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
fail_ci_if_error: true
env_vars: OS,PYTHON
flags: docker
env:
OS: ubuntu-latest
PYTHON: '3.10'
- name: Clean up Docker
if: always()
run: |
docker stop entities-service ||:
docker rm entities-service ||:
docker stop mongo ||:
docker rm mongo ||:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install test dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel flit
pip install -U -e .[testing]
- name: Run pytest
run: pytest -vv --cov-report=xml --color=yes
- name: Upload coverage
if: github.repository_owner == 'SINTEF'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
env_vars: OS,PYTHON
flags: local
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python_version }}
pre-commit-hooks:
name: Run custom pre-commit hooks
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "windows-latest"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel
pip install pre-commit
- name: Update pre-commit config file with Python version
run: sed -i "s/SET_PYTHON_VERSION/python${{ matrix.python-version }}/g" .github/utils/.pre-commit-config_testing.yaml
# Note, shell defaults to bash in ubuntu and pwsh in windows
- name: Run validate-entities
run: python .github/utils/run_pre-commit_hooks.py default
- name: Run invalid-entities
run: python .github/utils/run_pre-commit_hooks.py invalid-entities
- name: Run mixed-validity
run: python .github/utils/run_pre-commit_hooks.py mixed-validity
- name: Run quiet
run: python .github/utils/run_pre-commit_hooks.py quiet
- name: Run quiet-mixed-validity
run: python .github/utils/run_pre-commit_hooks.py quiet-mixed-validity
- name: Run fail-fast
run: python .github/utils/run_pre-commit_hooks.py fail-fast
- name: Run validate-entities (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py default
shell: cmd
- name: Run invalid-entities (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py invalid-entities
shell: cmd
- name: Run mixed-validity (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py mixed-validity
shell: cmd
- name: Run quiet (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py quiet
shell: cmd
- name: Run quiet-mixed-validity (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py quiet-mixed-validity
shell: cmd
- name: Run fail-fast (cmd)
if: runner.os == 'Windows'
run: python .github/utils/run_pre-commit_hooks.py fail-fast
shell: cmd
build-cli-docs:
name: Build CLI docs
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U pip
pip install -U setuptools wheel
pip install -U -e .[cli]
- name: Typer version
run: typer --version
- name: Build CLI docs
run: |
# Build the CLI documentation
# Run it twice, since the first run may create a doc only for the `config` sub-typer app.
typer entities_service.cli.main utils docs --output /tmp/CLI.md > /dev/null
typer entities_service.cli.main utils docs --output /tmp/CLI.md > /dev/null
diff --suppress-common-lines /tmp/CLI.md docs/CLI.md 2>&1 > /tmp/CLI_diff.md && ERROR_CODE=0 || ERROR_CODE=$?
ERROR_CODE=$?
if [ ${ERROR_CODE} -eq 2 ]; then
echo "diff encountered an error."
exit 2
elif [ ${ERROR_CODE} -eq 1 ]; then
echo "CLI documentation has changed. Please update the documentation."
echo "Diff:"
cat /tmp/CLI_diff.md
exit 1
elif [ ${ERROR_CODE} -eq 0 ]; then
echo "CLI documentation is up-to-date."
else
echo "Unknown error."
exit 3
fi