forked from percona/orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
412 lines (354 loc) · 12.6 KB
/
functional.yml
File metadata and controls
412 lines (354 loc) · 12.6 KB
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
name: Functional Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.7'
cache: true
- name: Build orchestrator
run: go build -o bin/orchestrator ./go/cmd/orchestrator
- name: Upload orchestrator binary
uses: actions/upload-artifact@v4
with:
name: orchestrator-binary
path: bin/orchestrator
retention-days: 1
functional-mysql:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
strategy:
fail-fast: false
matrix:
mysql_version: ['5.7', '8.0', '8.4', '9.0', '9.2', '9.5', '9.6']
steps:
- uses: actions/checkout@v4
- name: Download orchestrator binary
uses: actions/download-artifact@v4
with:
name: orchestrator-binary
path: bin
- name: Make binary executable
run: chmod +x bin/orchestrator
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build orchestrator runtime image
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime
- name: Start test infrastructure (MySQL + ProxySQL)
working-directory: tests/functional
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: |
echo "Using MySQL image: $MYSQL_IMAGE"
docker compose up -d mysql1 mysql2 mysql3 proxysql
echo "Waiting for MySQL and ProxySQL to be healthy..."
timeout 120 bash -c '
while true; do
HEALTHY=$(docker compose ps --format json 2>/dev/null | python3 -c "
import json, sys
healthy = 0
for line in sys.stdin:
svc = json.loads(line)
if \"healthy\" in svc.get(\"Status\",\"\").lower():
healthy += 1
print(healthy)
" 2>/dev/null || echo "0")
if [ "$HEALTHY" -ge 4 ]; then
echo "All 4 services healthy"
exit 0
fi
sleep 2
done
' || { echo "Timeout"; docker compose ps; docker compose logs --tail=30; exit 1; }
- name: Setup replication
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: bash tests/functional/setup-replication.sh
- name: Start orchestrator in Docker network
working-directory: tests/functional
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: |
docker compose up -d orchestrator
echo "Waiting for orchestrator to be ready..."
timeout 120 bash -c '
while true; do
if curl -sf http://localhost:3099/api/clusters > /dev/null 2>&1; then
echo "Orchestrator ready"
exit 0
fi
sleep 2
done
' || { echo "Orchestrator not ready"; docker compose logs orchestrator --tail=50; exit 1; }
- name: Run smoke tests
run: bash tests/functional/test-smoke.sh
- name: Run topology discovery validation
run: bash tests/functional/test-topology-discovery.sh
- name: Run problem detection tests
run: bash tests/functional/test-problem-detection.sh
- name: Run topology operations tests
run: bash tests/functional/test-topology-operations.sh
- name: Run regression tests
run: bash tests/functional/test-regression.sh
- name: Run failover tests
run: bash tests/functional/test-failover.sh
- name: Run advanced failover tests
run: bash tests/functional/test-failover-advanced.sh
- name: Run named channels tests
run: bash tests/functional/test-named-channels.sh
- name: Collect orchestrator logs
if: always()
working-directory: tests/functional
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: |
docker compose logs orchestrator > /tmp/orchestrator-test.log 2>&1 || true
- name: Upload orchestrator logs
if: always()
uses: actions/upload-artifact@v4
with:
name: orchestrator-test-logs-mysql-${{ matrix.mysql_version }}
path: /tmp/orchestrator-test.log
- name: Collect all docker logs on failure
if: failure()
working-directory: tests/functional
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: docker compose logs > /tmp/docker-compose-logs.txt 2>&1 || true
- name: Upload docker logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: docker-compose-logs-mysql-${{ matrix.mysql_version }}
path: /tmp/docker-compose-logs.txt
- name: Cleanup
if: always()
working-directory: tests/functional
env:
MYSQL_IMAGE: mysql:${{ matrix.mysql_version }}
run: docker compose down -v --remove-orphans 2>/dev/null || true
functional-postgresql:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
strategy:
fail-fast: false
matrix:
pg_version: ['15', '16', '17']
steps:
- uses: actions/checkout@v4
- name: Download orchestrator binary
uses: actions/download-artifact@v4
with:
name: orchestrator-binary
path: bin
- name: Make binary executable
run: chmod +x bin/orchestrator
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build orchestrator runtime image
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime
- name: Start PostgreSQL containers
working-directory: tests/functional
env:
PG_IMAGE: postgres:${{ matrix.pg_version }}
run: |
echo "Using PostgreSQL image: $PG_IMAGE"
docker compose up -d pgprimary
echo "Waiting for pgprimary to be healthy..."
timeout 120 bash -c '
while true; do
STATUS=$(docker compose ps pgprimary --format json 2>/dev/null | python3 -c "
import json, sys
for line in sys.stdin:
svc = json.loads(line)
if \"healthy\" in svc.get(\"Status\",\"\").lower():
print(\"healthy\")
sys.exit(0)
print(\"waiting\")
" 2>/dev/null || echo "waiting")
if [ "$STATUS" = "healthy" ]; then
echo "pgprimary healthy"
exit 0
fi
sleep 2
done
' || { echo "Timeout waiting for pgprimary"; docker compose logs pgprimary --tail=30; exit 1; }
docker compose up -d pgstandby1
echo "Waiting for pgstandby1 to be healthy..."
timeout 120 bash -c '
while true; do
STATUS=$(docker compose ps pgstandby1 --format json 2>/dev/null | python3 -c "
import json, sys
for line in sys.stdin:
svc = json.loads(line)
if \"healthy\" in svc.get(\"Status\",\"\").lower():
print(\"healthy\")
sys.exit(0)
print(\"waiting\")
" 2>/dev/null || echo "waiting")
if [ "$STATUS" = "healthy" ]; then
echo "pgstandby1 healthy"
exit 0
fi
sleep 2
done
' || { echo "Timeout waiting for pgstandby1"; docker compose logs pgstandby1 --tail=30; exit 1; }
- name: Start PostgreSQL orchestrator
working-directory: tests/functional
env:
PG_IMAGE: postgres:${{ matrix.pg_version }}
run: |
docker compose up -d orchestrator-pg
echo "Waiting for PostgreSQL orchestrator to be ready..."
timeout 120 bash -c '
while true; do
if curl -sf http://localhost:3098/api/clusters > /dev/null 2>&1; then
echo "PostgreSQL orchestrator ready"
exit 0
fi
sleep 2
done
' || { echo "PostgreSQL orchestrator not ready"; docker compose logs orchestrator-pg --tail=50; exit 1; }
- name: Run PostgreSQL tests
run: bash tests/functional/test-postgresql.sh
continue-on-error: true # PG support is new — iterating on CI stability
- name: Collect orchestrator logs
if: always()
working-directory: tests/functional
env:
PG_IMAGE: postgres:${{ matrix.pg_version }}
run: |
docker compose logs orchestrator-pg > /tmp/orchestrator-pg-test.log 2>&1 || true
- name: Upload orchestrator logs
if: always()
uses: actions/upload-artifact@v4
with:
name: orchestrator-test-logs-pg-${{ matrix.pg_version }}
path: /tmp/orchestrator-pg-test.log
- name: Collect all docker logs on failure
if: failure()
working-directory: tests/functional
env:
PG_IMAGE: postgres:${{ matrix.pg_version }}
run: docker compose logs > /tmp/docker-compose-logs.txt 2>&1 || true
- name: Upload docker logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: docker-compose-logs-pg-${{ matrix.pg_version }}
path: /tmp/docker-compose-logs.txt
- name: Cleanup
if: always()
working-directory: tests/functional
env:
PG_IMAGE: postgres:${{ matrix.pg_version }}
run: docker compose down -v --remove-orphans 2>/dev/null || true
functional-raft:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
steps:
- uses: actions/checkout@v4
- name: Download orchestrator binary
uses: actions/download-artifact@v4
with:
name: orchestrator-binary
path: bin
- name: Make binary executable
run: chmod +x bin/orchestrator
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build orchestrator runtime image
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime
- name: Start MySQL infrastructure
working-directory: tests/functional
run: |
docker compose up -d mysql1 mysql2 mysql3
echo "Waiting for MySQL to be healthy..."
timeout 120 bash -c '
while true; do
HEALTHY=$(docker compose ps --format json 2>/dev/null | python3 -c "
import json, sys
healthy = 0
for line in sys.stdin:
svc = json.loads(line)
if \"healthy\" in svc.get(\"Status\",\"\").lower():
healthy += 1
print(healthy)
" 2>/dev/null || echo "0")
if [ "$HEALTHY" -ge 3 ]; then
echo "All 3 MySQL services healthy"
exit 0
fi
sleep 2
done
' || { echo "Timeout"; docker compose ps; docker compose logs --tail=30; exit 1; }
- name: Setup replication
run: bash tests/functional/setup-replication.sh
- name: Run Raft consensus tests
run: bash tests/functional/test-raft.sh
- name: Collect Raft orchestrator logs
if: always()
working-directory: tests/functional
run: |
docker compose logs orchestrator-raft1 > /tmp/orchestrator-raft1.log 2>&1 || true
docker compose logs orchestrator-raft2 > /tmp/orchestrator-raft2.log 2>&1 || true
docker compose logs orchestrator-raft3 > /tmp/orchestrator-raft3.log 2>&1 || true
- name: Upload Raft orchestrator logs
if: always()
uses: actions/upload-artifact@v4
with:
name: orchestrator-raft-logs
path: |
/tmp/orchestrator-raft1.log
/tmp/orchestrator-raft2.log
/tmp/orchestrator-raft3.log
- name: Collect all docker logs on failure
if: failure()
working-directory: tests/functional
run: docker compose logs > /tmp/docker-compose-raft-logs.txt 2>&1 || true
- name: Upload docker logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: docker-compose-raft-logs
path: /tmp/docker-compose-raft-logs.txt
- name: Cleanup
if: always()
working-directory: tests/functional
run: docker compose down -v --remove-orphans 2>/dev/null || true