-
Notifications
You must be signed in to change notification settings - Fork 139
355 lines (299 loc) · 10.8 KB
/
ca-container-existing-config-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
name: CA container with existing config
on: workflow_call
env:
DS_IMAGE: ${{ vars.DS_IMAGE || 'quay.io/389ds/dirsrv' }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
SHARED: /tmp/workdir/pki
steps:
- name: Install dependencies
run: |
sudo apt-get update
# Currently client fails to connect to CA with Podman.
# TODO: Replace Docker with Podman when the issue is resolved.
# sudo apt-get -y purge --auto-remove docker-ce-cli
# sudo apt-get -y install podman-docker
- name: Clone repository
uses: actions/checkout@v4
- name: Retrieve PKI images
uses: actions/cache@v4
with:
key: pki-images-${{ github.sha }}
path: pki-images.tar
- name: Load PKI images
run: docker load --input pki-images.tar
- name: Create network
run: docker network create example
- name: Set up DS container
run: |
tests/bin/ds-create.sh \
--image=${{ env.DS_IMAGE }} \
--hostname=ds.example.com \
--network=example \
--network-alias=ds.example.com \
--password=Secret.123 \
ds
- name: Set up PKI container
run: |
tests/bin/runner-init.sh \
--hostname=ca.example.com \
--network=example \
--network-alias=ca.example.com \
pki
- name: Install CA
run: |
docker exec pki pkispawn \
-f /usr/share/pki/server/examples/installation/ca.cfg \
-s CA \
-D pki_ds_url=ldap://ds.example.com:3389 \
-D pki_ds_password=Secret.123 \
-v
- name: Set up client container
run: |
tests/bin/runner-init.sh \
--hostname=client.example.com \
--network=example \
--network-alias=client.example.com \
client
- name: Check CA info
run: |
docker exec pki pki-server cert-export \
--cert-file ca_signing.crt \
ca_signing
docker cp pki:ca_signing.crt .
docker exec client pki nss-cert-import \
--cert $SHARED/ca_signing.crt \
--trust CT,C,C \
ca_signing
docker exec client pki \
-U https://ca.example.com:8443 \
info
- name: Check CA admin user
run: |
docker cp pki:/root/.dogtag/pki-tomcat/ca_admin_cert.p12 .
docker exec client pki pkcs12-import \
--pkcs12 $SHARED/ca_admin_cert.p12 \
--password Secret.123
docker exec client pki \
-U https://ca.example.com:8443 \
-n caadmin \
ca-user-show \
caadmin
- name: Stop CA
run: |
docker exec pki pki-server stop --wait
docker network disconnect example pki
- name: Export certs
run: |
mkdir certs
# export system certs and keys
docker exec pki pki \
-v \
-d /var/lib/pki/pki-tomcat/conf/alias \
-f /var/lib/pki/pki-tomcat/conf/password.conf \
pkcs12-export \
--pkcs12 $SHARED/certs/server.p12 \
--password Secret.123 \
ca_signing \
ca_ocsp_signing \
ca_audit_signing \
subsystem \
sslserver
docker exec pki pki pkcs12-cert-find \
--pkcs12 $SHARED/certs/server.p12 \
--password Secret.123
# export system cert requests
docker exec pki cp \
/var/lib/pki/pki-tomcat/conf/certs/ca_signing.csr \
$SHARED/certs/ca_signing.csr
docker exec pki cp \
/var/lib/pki/pki-tomcat/conf/certs/ca_ocsp_signing.csr \
$SHARED/certs/ca_ocsp_signing.csr
docker exec pki cp \
/var/lib/pki/pki-tomcat/conf/certs/ca_audit_signing.csr \
$SHARED/certs/audit_signing.csr
docker exec pki cp \
/var/lib/pki/pki-tomcat/conf/certs/subsystem.csr \
$SHARED/certs/subsystem.csr
docker exec pki cp \
/var/lib/pki/pki-tomcat/conf/certs/sslserver.csr \
$SHARED/certs/sslserver.csr
ls -la certs
- name: Export config files
run: |
docker cp pki:/etc/pki/pki-tomcat conf
ls -la conf
- name: Export log files
run: |
docker cp pki:/var/log/pki/pki-tomcat logs
ls -la logs
- name: Set up CA container
run: |
docker run \
--name ca \
--hostname ca.example.com \
--network example \
--network-alias ca.example.com \
-v $PWD/certs:/certs \
-v $PWD/conf:/conf \
-v $PWD/logs:/logs \
-e PKI_DS_URL=ldap://ds.example.com:3389 \
-e PKI_DS_PASSWORD=Secret.123 \
-e PKI_CA_SIGNING_NICKNAME=ca_signing \
-e PKI_OCSP_SIGNING_NICKNAME=ca_ocsp_signing \
-e PKI_AUDIT_SIGNING_NICKNAME=ca_audit_signing \
-e PKI_SUBSYSTEM_NICKNAME=subsystem \
-e PKI_SSLSERVER_NICKNAME=sslserver \
--detach \
pki-ca
# wait for CA to start
docker exec client curl \
--retry 180 \
--retry-delay 0 \
--retry-connrefused \
-s \
-k \
-o /dev/null \
https://ca.example.com:8443
- name: Check conf dir
if: always()
run: |
ls -l conf \
| sed \
-e '/^total/d' \
-e 's/^\(\S*\) *\S* *\S* *\(\S*\) *\S* *\S* *\S* *\S* *\(.*\)$/\1 \2 \3/' \
| tee output
# everything should be owned by root group
# TODO: review owners/permissions
cat > expected << EOF
drwxrwxrwx root Catalina
drwxrwxrwx root alias
drwxrwxrwx root ca
-rw-rw-rw- root catalina.policy
lrwxrwxrwx root catalina.properties -> /usr/share/pki/server/conf/catalina.properties
drwxrwxrwx root certs
lrwxrwxrwx root context.xml -> /etc/tomcat/context.xml
lrwxrwxrwx root logging.properties -> /usr/share/pki/server/conf/logging.properties
-rw-rw-rw- root password.conf
-rw-rw-rw- root server.xml
-rw-rw-rw- root serverCertNick.conf
-rw-rw-rw- root tomcat.conf
lrwxrwxrwx root web.xml -> /etc/tomcat/web.xml
EOF
diff expected output
- name: Check conf/ca dir
if: always()
run: |
ls -l conf/ca \
| sed \
-e '/^total/d' \
-e 's/^\(\S*\) *\S* *\S* *\(\S*\) *\S* *\S* *\S* *\S* *\(.*\)$/\1 \2 \3/' \
-e '/^\S* *\S* *\S* *CS.cfg.bak /d' \
| tee output
# everything should be owned by root group
# TODO: review owners/permissions
cat > expected << EOF
-rw-rw-rw- root CS.cfg
-rw-rw-rw- root adminCert.profile
drwxrwxrwx root archives
-rw-rw-rw- root caAuditSigningCert.profile
-rw-rw-rw- root caCert.profile
-rw-rw-rw- root caOCSPCert.profile
drwxrwxrwx root emails
-rw-rw-rw- root flatfile.txt
drwxrwxrwx root profiles
-rw-rw-rw- root proxy.conf
-rw-rw-rw- root registry.cfg
-rw-rw-rw- root serverCert.profile
-rw-rw-rw- root subsystemCert.profile
EOF
diff expected output
- name: Check logs dir
if: always()
run: |
ls -l logs \
| sed \
-e '/^total/d' \
-e 's/^\(\S*\) *\S* *\S* *\(\S*\) *\S* *\S* *\S* *\S* *\(.*\)$/\1 \2 \3/' \
| tee output
DATE=$(date +'%Y-%m-%d')
# everything should be owned by docker group
# TODO: review owners/permissions
cat > expected << EOF
drwxrwxrwx root backup
drwxrwxrwx root ca
-rw-rw-rw- root catalina.$DATE.log
-rw-rw-rw- root host-manager.$DATE.log
-rw-rw-rw- root localhost.$DATE.log
-rw-rw-rw- root localhost_access_log.$DATE.txt
-rw-rw-rw- root manager.$DATE.log
drwxrwxrwx root pki
EOF
diff expected output
- name: Check CA admin user again
run: |
docker exec client pki \
-U https://ca.example.com:8443 \
-n caadmin \
ca-user-show \
caadmin
- name: Check cert enrollment
run: |
docker exec client pki \
-U https://ca.example.com:8443 \
client-cert-request \
uid=testuser | tee output
REQUEST_ID=$(sed -n -e 's/^ *Request ID: *\(.*\)$/\1/p' output)
echo "REQUEST_ID: $REQUEST_ID"
docker exec client pki \
-U https://ca.example.com:8443 \
-n caadmin \
ca-cert-request-approve \
$REQUEST_ID \
--force
- name: Check DS server systemd journal
if: always()
run: |
docker exec ds journalctl -x --no-pager -u [email protected]
- name: Check DS container logs
if: always()
run: |
docker logs ds
- name: Check PKI server systemd journal
if: always()
run: |
docker exec pki journalctl -x --no-pager -u [email protected]
- name: Check CA debug log
if: always()
run: |
docker exec pki find /var/lib/pki/pki-tomcat/logs/ca -name "debug.*" -exec cat {} \;
- name: Check CA container logs
if: always()
run: |
docker logs ca 2>&1
- name: Check CA container debug logs
if: always()
run: |
docker exec ca find /var/lib/pki/pki-tomcat/logs/ca -name "debug.*" -exec cat {} \;
- name: Gather artifacts
if: always()
run: |
tests/bin/ds-artifacts-save.sh ds
tests/bin/pki-artifacts-save.sh pki
mkdir -p /tmp/artifacts/ca
# TODO: fix permission issue
# cp -r certs /tmp/artifacts/ca
# cp -r conf /tmp/artifacts/ca
# cp -r logs /tmp/artifacts/ca
docker logs ca > /tmp/artifacts/ca/container.out 2> /tmp/artifacts/ca/container.err
mkdir -p /tmp/artifacts/client
docker logs client > /tmp/artifacts/client/container.out 2> /tmp/artifacts/client/container.err
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: ca-container-existing-config
path: /tmp/artifacts