ratatui-testlib 0.1.0

Integration testing library for terminal user interface applications with Sixel and Bevy support
Documentation
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
# CI/CD Architecture

## Visual Pipeline Flow

```
┌─────────────────────────────────────────────────────────────────┐
│                         GitHub Trigger                          │
│                 (Push, PR, Tag, Manual)                         │
└────────────────────────────┬────────────────────────────────────┘
                   ┌─────────▼─────────┐
                   │   Event Router    │
                   └─────────┬─────────┘
        ┌────────────────────┼────────────────────┐
        │                    │                    │
        │                    │                    │
┌───────▼────────┐  ┌────────▼────────┐  ┌───────▼────────┐
│   CI Pipeline  │  │   Release Flow  │  │   Docs Build   │
│   (ci.yml)     │  │  (release.yml)  │  │   (docs.yml)   │
└───────┬────────┘  └────────┬────────┘  └───────┬────────┘
        │                    │                    │
        │                    │                    │
┌───────▼──────────────────────────────────────────────────────┐
│                                                               │
│                    MAIN CI PIPELINE                           │
│                                                               │
│  Stage 1: Quick Check (2-3 min)                              │
│  ┌──────────────────────────────────────────────────────┐    │
│  │  • cargo fmt --check                                 │    │
│  │  • cargo clippy -- -D warnings                       │    │
│  │  Cache: Registry index, dependencies                │    │
│  └────────────────┬─────────────────────────────────────┘    │
│                   │ PASS ✓                                   │
│                   │                                          │
│  Stage 2: Parallel Testing                                   │
│  ┌────────────────┴─────────────────────────────────┐        │
│  │                                                   │        │
│  ├──────────────────────────┬────────────────────────┤        │
│  │                          │                        │        │
│  │  Test Suite             │  Feature Flag Tests     │        │
│  │  (5-7 min)              │  (15-20 min)           │        │
│  │  ┌──────────────────┐   │  ┌──────────────────┐  │        │
│  │  │ Matrix: Rust     │   │  │ Matrix: Features │  │        │
│  │  │ - stable         │   │  │ - no-default     │  │        │
│  │  │ - beta           │   │  │ - all-features   │  │        │
│  │  │                  │   │  │ - async-tokio    │  │        │
│  │  │ Tests:           │   │  │ - bevy           │  │        │
│  │  │ - cargo test     │   │  │ - bevy-ratatui   │  │        │
│  │  │   --lib          │   │  │ - ratatui-help   │  │        │
│  │  │ - cargo test     │   │  │ - sixel          │  │        │
│  │  │   --test '*'     │   │  │ - snapshot-insta │  │        │
│  │  │ - cargo test     │   │  │                  │  │        │
│  │  │   --doc          │   │  │ cargo test       │  │        │
│  │  └──────────────────┘   │  │ <features>       │  │        │
│  │                          │  └──────────────────┘  │        │
│  └──────────┬───────────────┴────────┬───────────────┘        │
│             │ PASS ✓                │ PASS ✓                 │
│             │                        │                        │
│  Stage 3: Quality & Security (parallel)                       │
│  ┌──────────┴────────────────────────┴────────────┐           │
│  │                                                 │           │
│  ├──────────┬──────────┬──────────┬───────────────┤           │
│  │          │          │          │               │           │
│  │ Coverage │ Security │ Examples │ MSRV          │           │
│  │ (8-10min)│ (1-2min) │ (3-5min) │ (3-5min)      │           │
│  │          │          │          │               │           │
│  │ tarpaulin│ cargo-   │ cargo    │ Rust 1.70     │           │
│  │ --all-   │ audit    │ build    │ cargo check   │           │
│  │ features │          │ --examples│ --all-        │           │
│  │          │          │          │ features      │           │
│  │ Upload   │ RustSec  │          │               │           │
│  │ Codecov  │ DB       │          │               │           │
│  └────┬─────┴────┬─────┴────┬─────┴──────┬────────┘           │
│       │ PASS ✓   │ PASS ✓   │ PASS ✓     │ PASS ✓            │
│       │          │          │            │                   │
│  Stage 4: Final Check                                         │
│  ┌────┴──────────┴──────────┴────────────┴──────┐             │
│  │                                               │             │
│  │         CI Success Verification               │             │
│  │         (all jobs must pass)                  │             │
│  │                                               │             │
│  └───────────────────────┬───────────────────────┘             │
│                          │                                     │
└──────────────────────────┼─────────────────────────────────────┘
                    ┌──────▼──────┐
                    │  CI PASSED  │
                    └──────┬──────┘
            ┌──────────────┼──────────────┐
            │              │              │
    ┌───────▼──────┐  ┌────▼────┐  ┌─────▼─────┐
    │ PR Approved  │  │ Merge   │  │  Deploy   │
    │ (if PR)      │  │ to Main │  │ (if tag)  │
    └──────────────┘  └─────────┘  └───────────┘
```

## Release Pipeline

```
┌─────────────────────────────────────────┐
│     git tag -a v0.1.0 -m "..."         │
│     git push origin v0.1.0             │
└──────────────────┬──────────────────────┘
          ┌────────▼────────┐
          │  Release Trigger │
          │  (release.yml)  │
          └────────┬────────┘
       ┌───────────┼───────────┐
       │           │           │
┌──────▼──────┐ ┌──▼────────┐ ┌▼──────────┐
│   Create    │ │  Publish  │ │   Build   │
│   GitHub    │ │  Crate    │ │   Docs    │
│   Release   │ │           │ │           │
│             │ │ crates.io │ │ GitHub    │
│ - Extract   │ │           │ │ Pages     │
│   changelog │ │ - Verify  │ │           │
│ - Generate  │ │   version │ │ cargo doc │
│   notes     │ │ - cargo   │ │ --all-    │
│ - Upload    │ │   publish │ │ features  │
│   artifacts │ │           │ │           │
└─────────────┘ └───────────┘ └───────────┘
```

## Dependabot Workflow

```
┌────────────────────────────────┐
│   Monday 09:00 (Weekly)        │
└────────────┬───────────────────┘
    ┌────────▼────────┐
    │   Dependabot    │
    │   Scan          │
    └────────┬────────┘
    ┌────────▼────────────────────┐
    │  Check for Updates          │
    │  - GitHub Actions           │
    │  - Cargo dependencies       │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Group by Ecosystem         │
    │  - tokio* → tokio group     │
    │  - bevy* → bevy group       │
    │  - ratatui* → ratatui group │
    │  - dev deps → dev group     │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Create PRs (max 10)        │
    │  Label: dependencies        │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  CI Pipeline Runs           │
    │  (full test suite)          │
    └────────┬────────────────────┘
        ┌────┴────┐
        │ PASS ✓  │
        └────┬────┘
    ┌────────▼────────────────────┐
    │  Manual Review & Merge      │
    │  (or auto-merge if enabled) │
    └─────────────────────────────┘
```

## Local Development Flow

```
┌─────────────────────────────────┐
│  Developer: Make Changes        │
└────────────┬────────────────────┘
    ┌────────▼────────┐
    │  git add .      │
    └────────┬────────┘
    ┌────────▼────────────────────┐
    │  git commit -m "..."        │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Pre-commit Hook (if inst.) │
    │  - cargo fmt --check        │
    │  - cargo clippy             │
    │  - cargo test --lib         │
    └────────┬────────────────────┘
        ┌────┴────┐
   FAIL │         │ PASS ✓
   ┌────▼────┐    │
   │  Fix &  │    │
   │  Retry  │    │
   └────┬────┘    │
        │         │
        └────┬────┘
    ┌────────▼────────────────────┐
    │  Optional: Run Full Check   │
    │  ./scripts/check-ci.sh      │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  git push origin branch     │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  GitHub CI Pipeline         │
    │  (full suite runs)          │
    └────────┬────────────────────┘
        ┌────┴────┐
   FAIL │         │ PASS ✓
   ┌────▼────┐    │
   │  Fix &  │    │
   │  Push   │    │
   └────┬────┘    │
        │         │
        └────┬────┘
    ┌────────▼────────────────────┐
    │  Create Pull Request        │
    │  (template auto-fills)      │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Code Review                │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Merge to Main              │
    └─────────────────────────────┘
```

## Caching Architecture

```
┌─────────────────────────────────────────┐
│          GitHub Actions Cache            │
└────────────────┬────────────────────────┘
    ┌────────────┼────────────┐
    │            │            │
┌───▼─────┐  ┌───▼─────┐  ┌──▼──────┐
│Registry │  │Compiled │  │  Git    │
│ Index   │  │Artifacts│  │  Deps   │
│         │  │         │  │         │
│~/.cargo/│  │target/  │  │~/.cargo/│
│registry/│  │         │  │git/db   │
│index    │  │         │  │         │
└───┬─────┘  └───┬─────┘  └──┬──────┘
    │            │            │
    └────────────┼────────────┘
    ┌────────────▼────────────┐
    │   Cache Key Strategy    │
    │                         │
    │  ${{ runner.os }}-      │
    │  ${{ job }}-            │
    │  cargo-                 │
    │  ${{ hashFiles(         │
    │    '**/Cargo.lock'      │
    │  ) }}                   │
    └────────────┬────────────┘
    ┌────────────▼────────────┐
    │   Cache Restoration     │
    │   - Exact match first   │
    │   - Prefix match second │
    │   - Miss: Full rebuild  │
    └─────────────────────────┘

Cache Benefits:
- Registry index: Skip network fetch
- Compiled deps: Skip recompilation (biggest win)
- Git deps: Skip git clone/fetch

Hit Rate Target: >80%
Time Saved: ~50-60% per job
Expiration: 7 days of inactivity
```

## Coverage Collection Flow

```
┌─────────────────────────────────┐
│   Coverage Job Triggered        │
└────────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Install cargo-tarpaulin    │
    │  (cached binary)            │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Run Tests with Profiling   │
    │  cargo tarpaulin            │
    │    --all-features           │
    │    --workspace              │
    │    --timeout 300            │
    │    --out xml                │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Collect Coverage Data      │
    │  - Line coverage            │
    │  - Function coverage        │
    │  - Branch coverage (basic)  │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Generate Reports           │
    │  - Cobertura XML            │
    │  - Terminal summary         │
    └────────┬────────────────────┘
       ┌─────┴─────┐
       │           │
┌──────▼──────┐ ┌──▼───────────┐
│   Upload    │ │   Upload     │
│   Codecov   │ │   Artifact   │
│             │ │   (30 days)  │
│ - Dashboard │ │              │
│ - Trends    │ │ - Browse     │
│ - PR comm.  │ │ - Download   │
└─────────────┘ └──────────────┘
```

## Security Scanning Flow

```
┌─────────────────────────────────┐
│   Security Audit Job            │
└────────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Install cargo-audit        │
    │  (cached)                   │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Fetch RustSec DB           │
    │  (Advisory Database)        │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Parse Cargo.lock           │
    │  (all dependencies)         │
    └────────┬────────────────────┘
    ┌────────▼────────────────────┐
    │  Check Each Dependency      │
    │  - Security advisories      │
    │  - Yanked crates            │
    │  - Unmaintained crates      │
    └────────┬────────────────────┘
        ┌────┴────┐
   VULN │         │ CLEAN ✓
   ┌────▼────┐    │
   │  FAIL   │    │
   │  Report │    │
   │  Issue  │    │
   └─────────┘    │
         ┌────────▼────────┐
         │  CI CONTINUES   │
         └─────────────────┘

Parallel: Dependabot Security Updates
┌─────────────────────────────────┐
│  Dependabot Scans Daily         │
│  - Security advisories          │
│  - Create high-priority PRs     │
│  - Auto-label: security         │
└─────────────────────────────────┘
```

## Component Diagram

```
┌─────────────────────────────────────────────────────────────┐
│                    GitHub Infrastructure                    │
│                                                             │
│  ┌──────────────┐  ┌──────────────┐  ┌──────────────┐      │
│  │   Actions    │  │  Dependabot  │  │   Codecov    │      │
│  │   Workflows  │  │              │  │  Integration │      │
│  └──────┬───────┘  └──────┬───────┘  └──────┬───────┘      │
│         │                 │                 │              │
└─────────┼─────────────────┼─────────────────┼──────────────┘
          │                 │                 │
┌─────────┼─────────────────┼─────────────────┼──────────────┐
│         │  ratatui-testlib CI/CD Infrastructure   │              │
│         │                 │                 │              │
│  ┌──────▼──────────┐  ┌───▼────────┐  ┌─────▼──────┐       │
│  │   Workflows     │  │   Config   │  │   Docs     │       │
│  │                 │  │            │  │            │       │
│  │ - ci.yml        │  │ - depend.  │  │ - Maintain │       │
│  │ - release.yml   │  │   yml      │  │ - Quick    │       │
│  │ - benchmark.yml │  │ - .ignore  │  │   Ref      │       │
│  │ - docs.yml      │  │            │  │ - Future   │       │
│  └──────┬──────────┘  └────────────┘  └────────────┘       │
│         │                                                   │
│  ┌──────▼──────────────────────────────────────┐           │
│  │              Templates                      │           │
│  │                                             │           │
│  │  - PR Template                              │           │
│  │  - Bug Report                               │           │
│  │  - Feature Request                          │           │
│  └─────────────────────────────────────────────┘           │
│                                                             │
│  ┌─────────────────────────────────────────────┐           │
│  │           Helper Scripts                    │           │
│  │                                             │           │
│  │  - check-ci.sh     (local CI check)        │           │
│  │  - coverage-local.sh (coverage gen)         │           │
│  │  - install-hooks.sh (git hooks)            │           │
│  └─────────────────────────────────────────────┘           │
│                                                             │
└─────────────────────────────────────────────────────────────┘
```

## Data Flow

```
Developer Push
GitHub Webhook
GitHub Actions Runner (Ubuntu)
      ├──> Clone Repository
      ├──> Restore Cache
      │    ├─> Registry Index
      │    ├─> Dependencies
      │    └─> Compiled Artifacts
      ├──> Install Toolchain (Rust stable/beta)
      ├──> Run Jobs (parallel)
      │    ├─> Format Check
      │    ├─> Clippy Lint
      │    ├─> Tests
      │    ├─> Coverage
      │    ├─> Security Audit
      │    ├─> Examples Build
      │    └─> MSRV Check
      ├──> Collect Results
      ├──> Update Cache
      ├──> Upload Artifacts
      │    ├─> Coverage to Codecov
      │    ├─> Coverage to Actions
      │    └─> Test Reports
Status Report
      ├──> GitHub Checks ✓/✗
      ├──> PR Comments (coverage)
      └──> Notifications (if failed)
```

## Key Design Decisions

### 1. Parallel Execution
- Jobs run in parallel where possible
- Dependencies explicitly defined (needs: check)
- Reduces total pipeline time by ~60%

### 2. Fail Fast
- Quick Check job runs first
- Failures block subsequent jobs
- Saves CI minutes

### 3. Caching Strategy
- Per-job cache keys
- Cargo.lock hash for cache invalidation
- 7-day expiration
- Significant time savings

### 4. Feature Flag Testing
- Matrix strategy for all combinations
- Ensures feature compatibility
- Critical for library users

### 5. Security First
- cargo-audit on every run
- Dependabot automated updates
- Minimal workflow permissions
- Secrets for sensitive operations

### 6. Developer Experience
- Local scripts mirror CI
- Pre-commit hooks (optional)
- Clear documentation
- Helpful templates

---

**Document Version**: 1.0
**Last Updated**: 2025-11-19
**Maintainer**: Raibid Labs