-
Notifications
You must be signed in to change notification settings - Fork 0
437 lines (374 loc) · 12.7 KB
/
Copy pathtest.yml
File metadata and controls
437 lines (374 loc) · 12.7 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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
name: Tests
on:
push:
branches: [main]
pull_request:
branches: ["**"]
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# Detect changes for conditional testing
detect-changes:
runs-on: ubuntu-latest
outputs:
frontend: ${{ steps.filter.outputs.frontend }}
rust: ${{ steps.filter.outputs.rust }}
rust-performance: ${{ steps.filter.outputs['rust-performance'] }}
wasm: ${{ steps.filter.outputs.wasm }}
integration: ${{ steps.filter.outputs.integration }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
list-files: shell
filters: |
frontend:
- 'src/ts/**'
- 'src/md-preview/**'
- 'src/types/**'
- 'test/ts/**'
- 'package*.json'
- 'tsconfig*.json'
- 'vite*.config.*'
- 'jest.config.*'
rust:
- 'src/rs/**'
- 'test/rust/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'build.rs'
- 'signals.yaml'
rust-performance:
- 'test/rust/performance_tests.rs'
- 'src/rs/fft/**'
- 'src/rs/simd/**'
- 'src/rs/sdr/processor/**'
- 'Cargo.toml'
- 'Cargo.lock'
wasm:
- 'src/rs/lib.rs'
- 'src/rs/wasm/**'
- 'src/rs/simd/**'
- 'test/wasm/**'
- 'Cargo-wasm.toml'
- 'scripts/build/build_wasm.sh'
- 'Cargo.lock'
- 'package-lock.json'
integration:
- 'test/integration/**'
- 'src/ts/crypto/**'
- 'src/ts/services/**'
- 'src/ts/workers/**'
- 'src/rs/crypto/**'
- 'src/rs/server/**'
- 'src/rs/sdr/**'
- 'scripts/**'
- 'signals.yaml'
- 'Cargo.toml'
- 'Cargo.lock'
- name: Print matched files
run: |
echo "frontend=${{ steps.filter.outputs.frontend }}"
echo "${{ steps.filter.outputs.frontend_files }}"
echo "rust=${{ steps.filter.outputs.rust }}"
echo "${{ steps.filter.outputs.rust_files }}"
echo "rust-performance=${{ steps.filter.outputs['rust-performance'] }}"
echo "${{ steps.filter.outputs['rust-performance_files'] }}"
echo "wasm=${{ steps.filter.outputs.wasm }}"
echo "${{ steps.filter.outputs.wasm_files }}"
echo "integration=${{ steps.filter.outputs.integration }}"
echo "${{ steps.filter.outputs.integration_files }}"
# Frontend type checking
frontend-typecheck:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.frontend == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js 26.x
uses: actions/setup-node@v4
with:
node-version: 26.x
cache: "npm"
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Run linting
run: npm run lint
- name: Run type checking
run: npm run typecheck
# Frontend tests
frontend-tests:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.frontend == 'true'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js 26.x
uses: actions/setup-node@v4
with:
node-version: 26.x
cache: "npm"
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Run tests (Affected Only on Branches)
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
changed_since="origin/${{ github.base_ref }}"
else
changed_since="${{ github.event.before }}"
fi
if [ -z "$changed_since" ] || [ "$changed_since" = "0000000000000000000000000000000000000000" ]; then
npm test
exit 0
fi
./node_modules/.bin/jest test/ts --changedSince="$changed_since" --passWithNoTests
- name: Upload coverage reports
uses: codecov/codecov-action@v4
with:
file: ./coverage/lcov.info
flags: frontend
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
# Rust tests
rust-tests:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.rust == 'true'
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y librtlsdr-dev redis-server
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-nextest
run: cargo install cargo-nextest --locked
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: .
cache-on-failure: true
- name: Run Rust tests
run: |
all_tests=(
authentication_tests
capture_stitch_tests
device_stream_frozen_tests
encryption_e2e_tests
fft_processor_tests
frequency_scaling_e2e
frequency_validation_tests
iq_capture_integration_tests
mock_apt_tests
server_tests
)
run_selected_tests() {
for test_name in "$@"; do
cargo nextest run --test "$test_name"
done
}
if [ "${{ github.event_name }}" = "pull_request" ]; then
git fetch --no-tags --prune --depth=1 origin "${{ github.base_ref }}"
changed_since="origin/${{ github.base_ref }}"
else
changed_since="${{ github.event.before }}"
fi
if [ -z "$changed_since" ] || [ "$changed_since" = "0000000000000000000000000000000000000000" ]; then
run_selected_tests "${all_tests[@]}"
exit 0
fi
changed_files=$(git diff --name-only "$changed_since...HEAD" -- 'src/rs/**' 'test/rust/**' 'Cargo.toml' 'Cargo.lock' 'build.rs' 'signals.yaml')
echo "Changed Rust files:"
echo "$changed_files"
tests=()
run_all=false
while IFS= read -r file; do
case "$file" in
Cargo.toml|Cargo.lock|build.rs|signals.yaml|src/rs/lib.rs)
run_all=true
;;
test/rust/performance_tests.rs)
;;
test/rust/*.rs)
test_name=$(basename "$file" .rs)
tests+=("$test_name")
;;
src/rs/authentication/*|src/rs/session/*)
tests+=("authentication_tests" "server_tests")
;;
src/rs/crypto/*)
tests+=("encryption_e2e_tests" "authentication_tests")
;;
src/rs/server/*)
tests+=("server_tests" "device_stream_frozen_tests")
;;
src/rs/sdr/mock_apt/*)
tests+=("mock_apt_tests")
;;
src/rs/sdr/processor/*)
tests+=("capture_stitch_tests" "frequency_validation_tests" "iq_capture_integration_tests")
;;
src/rs/sdr/*)
tests+=("mock_apt_tests" "device_stream_frozen_tests")
;;
src/rs/fft/*)
tests+=("fft_processor_tests" "capture_stitch_tests")
;;
src/rs/stitching.rs)
tests+=("capture_stitch_tests")
;;
src/rs/simd/*)
tests+=("fft_processor_tests")
;;
src/rs/consts/*)
tests+=("fft_processor_tests" "frequency_validation_tests")
;;
*)
run_all=true
;;
esac
done <<< "$changed_files"
if [ "$run_all" = true ]; then
run_selected_tests "${all_tests[@]}"
exit 0
fi
if [ "${#tests[@]}" -eq 0 ]; then
cargo nextest run --lib
exit 0
fi
mapfile -t selected_tests < <(printf "%s\n" "${tests[@]}" | sort -u)
run_selected_tests "${selected_tests[@]}"
env:
REDIS_URL: redis://localhost:6379
UNSAFE_LOCAL_USER_PASSWORD: n-apt-dev-key
- name: Upload Rust coverage
uses: codecov/codecov-action@v4
with:
flags: rust
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
# Rust Performance Tests (Release mode)
rust-performance-tests:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs['rust-performance'] == 'true' || github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y librtlsdr-dev
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: .
cache-on-failure: true
- name: Run Rust Performance Tests
run: cargo --config .cargo/performance.toml test --test performance_tests --release -- --nocapture
# WASM tests
wasm-tests:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.wasm == 'true' || github.ref == 'refs/heads/main'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '26.x'
cache: "npm"
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
- name: Install wasm-pack
run: cargo install wasm-pack --locked
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Run WASM tests
run: npm run test:wasm
# Integration tests
integration-tests:
runs-on: ubuntu-latest
needs: detect-changes
if: needs.detect-changes.outputs.integration == 'true'
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '26.x'
cache: "npm"
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y librtlsdr-dev
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
workspaces: .
cache-on-failure: true
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Build WASM (if changed)
if: needs.detect-changes.outputs.wasm == 'true' || github.ref == 'refs/heads/main'
run: npm run build:wasm
- name: Build Rust Backend
run: npm run build:rust
- name: Generate Encrypted Test Artifacts
run: cargo test --test encryption_e2e_tests generate_test_artifacts -- --nocapture
- name: Run integration tests (Affected Only on Branches)
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
changed_since="origin/${{ github.base_ref }}"
else
changed_since="${{ github.event.before }}"
fi
if [ -z "$changed_since" ] || [ "$changed_since" = "0000000000000000000000000000000000000000" ]; then
npm run test:integration
else
./node_modules/.bin/jest test/integration --runInBand --changedSince="$changed_since" --passWithNoTests
fi
env:
REDIS_URL: redis://localhost:6379
UNSAFE_LOCAL_USER_PASSWORD: n-apt-dev-key