-
Notifications
You must be signed in to change notification settings - Fork 13
149 lines (121 loc) · 3.96 KB
/
ds-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
name: DS Tests
on: [push, pull_request]
env:
NAMESPACE: ${{ vars.REGISTRY_NAMESPACE || 'dogtagpki' }}
jobs:
build:
name: Waiting for build
runs-on: ubuntu-latest
steps:
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: 'Building LDAP SDK'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'push'
- name: Wait for build
uses: lewagon/[email protected]
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'Building LDAP SDK'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'pull_request'
ds-test:
name: Testing DS
needs: build
runs-on: ubuntu-latest
env:
SHARED: /tmp/workdir/ldapjdk
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Retrieve LDAP SDK image
uses: actions/cache@v4
with:
key: ldapjdk-images-${{ github.sha }}
path: ldapjdk-images.tar
- name: Load LDAP SDK image
run: docker load --input ldapjdk-images.tar
- name: Run container
run: |
tests/bin/runner-init.sh ds
env:
HOSTNAME: ds.example.com
- name: Install DS package
run: docker exec ds dnf install -y 389-ds-base
- name: Create DS instance
run: docker exec ds ${SHARED}/tests/bin/ds-create.sh
- name: Verify LDAP tools
run: docker exec ds ${SHARED}/tests/bin/tools-test.sh
- name: Gather artifacts
if: always()
run: |
tests/bin/ds-artifacts-save.sh ds
- name: Remove DS instance
run: docker exec ds ${SHARED}/tests/bin/ds-remove.sh
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: ds
path: |
/tmp/artifacts/ds
ds-ssl-test:
name: Testing DS with SSL
needs: build
runs-on: ubuntu-latest
env:
SHARED: /tmp/workdir/ldapjdk
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Retrieve LDAP SDK image
uses: actions/cache@v4
with:
key: ldapjdk-images-${{ github.sha }}
path: ldapjdk-images.tar
- name: Load LDAP SDK image
run: docker load --input ldapjdk-images.tar
- name: Run container
run: |
tests/bin/runner-init.sh server
env:
HOSTNAME: server.example.com
- name: Import PKI packages
run: |
docker create --name=pki-dist quay.io/$NAMESPACE/pki-dist:latest
docker cp pki-dist:/root/RPMS/. /tmp/RPMS/
docker rm -f pki-dist
- name: Install packages
run: |
docker exec server dnf install -y 389-ds-base
docker cp /tmp/RPMS/. server:/root/RPMS/
docker exec server bash -c "dnf localinstall -y /root/RPMS/*"
- name: Create DS instance
run: docker exec server ${SHARED}/tests/bin/ds-create.sh
- name: Create signing cert
run: docker exec server ${SHARED}/tests/bin/ds-cert-signing-create.sh
- name: Create server cert
run: docker exec server ${SHARED}/tests/bin/ds-cert-server-create.sh
- name: Enable SSL connection
run: docker exec server ${SHARED}/tests/bin/ds-ssl-enable.sh
- name: Verify LDAP tools with SSL
run: |
# TODO: use SSL
docker exec server ${SHARED}/tests/bin/tools-test.sh
- name: Remove DS instance
run: docker exec server ${SHARED}/tests/bin/ds-remove.sh
- name: Gather artifacts
if: always()
run: |
tests/bin/ds-artifacts-save.sh server
- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: ds-ssl
path: |
/tmp/artifacts/server