presentar-terminal 0.3.5

Terminal backend for Presentar UI framework with zero-allocation rendering
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
515
516
517
518
519
//! SPEC-024: Interface-Defining Tests for ptop Panels
//!
//! **TESTS DEFINE INTERFACE. IMPLEMENTATION FOLLOWS.**
//!
//! Each panel MUST render actual data, not placeholders.
//! Each panel MUST handle the exploded view state.

#![cfg(feature = "ptop")]

use presentar_terminal::direct::CellBuffer;
use presentar_terminal::ptop::app::MetricsSnapshot;
use presentar_terminal::ptop::{ui, App, PanelType};
use presentar_terminal::Snapshot;

/// Helper to render and extract text
fn render_to_string(app: &App, width: u16, height: u16) -> String {
    let mut buffer = CellBuffer::new(width, height);
    ui::draw(app, &mut buffer);

    let mut output = String::new();
    for y in 0..height {
        for x in 0..width {
            if let Some(cell) = buffer.get(x, y) {
                output.push(cell.symbol.chars().next().unwrap_or(' '));
            } else {
                output.push(' ');
            }
        }
        output.push('\n');
    }
    output
}

// =============================================================================
// SECTION 1: CPU Panel Interface
// =============================================================================

mod cpu_panel {
    use super::*;

    /// CPU panel MUST render in normal view
    #[test]
    fn renders_normal() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        assert!(output.contains("CPU"), "CPU panel must be visible");
    }

    /// CPU panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Cpu);

        let output = render_to_string(&app, 140, 45);
        assert!(output.contains("CPU"), "CPU exploded panel must show");
    }

    /// CPU exploded MUST show per-core frequency from async data
    #[test]
    fn exploded_shows_async_freq() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Cpu);

        let mut snapshot = MetricsSnapshot::empty();
        snapshot.per_core_freq = vec![4765; 48];
        snapshot.per_core_temp = vec![65.0; 48];
        snapshot.per_core_percent = vec![45.0; 48];
        snapshot.cpu_avg = 0.45;
        app.apply_snapshot(snapshot);

        let output = render_to_string(&app, 140, 45);

        // Must contain frequency from async update (4.76G or 4.77G)
        let has_freq =
            output.contains("4.76") || output.contains("4.77") || output.contains("4765");
        assert!(has_freq, "Must show async-updated frequency");
    }

    /// CPU panel MUST show core utilization histogram
    #[test]
    fn shows_utilization_histogram() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Cpu);

        let output = render_to_string(&app, 140, 45);
        assert!(
            output.contains("CORE UTILIZATION") || output.contains("BREAKDOWN"),
            "Must show utilization breakdown"
        );
    }
}

// =============================================================================
// SECTION 2: Memory Panel Interface
// =============================================================================

mod memory_panel {
    use super::*;

    /// Memory panel MUST render
    #[test]
    fn renders() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        assert!(
            output.contains("Mem") || output.contains("MEM") || output.contains("Memory"),
            "Memory panel must be visible"
        );
    }

    /// Memory panel MUST show usage
    #[test]
    fn shows_usage() {
        let mut app = App::with_config(true, Default::default());

        let mut snapshot = MetricsSnapshot::empty();
        snapshot.mem_total = 32_000_000_000;
        snapshot.mem_used = 16_000_000_000;
        app.apply_snapshot(snapshot);

        let output = render_to_string(&app, 120, 40);
        // Should show some memory values
        assert!(
            output.contains("G") || output.contains("GB") || output.contains("%"),
            "Memory panel must show values"
        );
    }
}

// =============================================================================
// SECTION 3: Process Panel Interface
// =============================================================================

mod process_panel {
    use super::*;

    /// Process panel MUST render
    #[test]
    fn renders() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        assert!(
            output.contains("PID") || output.contains("COMMAND") || output.contains("Process"),
            "Process panel must be visible"
        );
    }

    /// Process panel MUST show CPU% and MEM% columns
    #[test]
    fn shows_columns() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        // Check for column headers - might be CPU%, CPU, or just percentage values
        let has_cpu = output.contains("CPU") || output.contains("%");
        let has_mem = output.contains("MEM") || output.contains("Memory");
        assert!(has_cpu, "Process panel must show CPU column or values");
    }
}

// =============================================================================
// SECTION 4: Network Panel Interface
// =============================================================================

mod network_panel {
    use super::*;

    /// Network panel MUST render
    #[test]
    fn renders() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        // Network might show as "Net" or interface names
        assert!(
            output.contains("Net")
                || output.contains("eth")
                || output.contains("lo")
                || output.contains("RX")
                || output.contains("TX")
                || output.contains("wl"),
            "Network panel must be visible"
        );
    }
}

// =============================================================================
// SECTION 5: Disk Panel Interface
// =============================================================================

mod disk_panel {
    use super::*;

    /// Disk panel MUST render
    #[test]
    fn renders() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);
        assert!(
            output.contains("Disk")
                || output.contains("sda")
                || output.contains("nvme")
                || output.contains("Read")
                || output.contains("Write"),
            "Disk panel must be visible or show disk stats"
        );
    }
}

// =============================================================================
// SECTION 6: GPU Panel Interface
// =============================================================================

mod gpu_panel {
    use super::*;

    /// GPU panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.gpu = true;
        let output = render_to_string(&app, 120, 40);
        // GPU panel shows "GPU" or percentage or "N/A" if no GPU
        assert!(
            output.contains("GPU") || output.contains("N/A") || output.contains("%"),
            "GPU panel must be visible"
        );
    }

    /// GPU panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Gpu);
        let _output = render_to_string(&app, 140, 45);
        // Must not panic
    }
}

// =============================================================================
// SECTION 7: Sensors Panel Interface
// =============================================================================

mod sensors_panel {
    use super::*;

    /// Sensors panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.sensors = true;
        let output = render_to_string(&app, 120, 40);
        // Sensors shows temperature or "Sensors" title
        assert!(
            output.contains("Sensor") || output.contains("°C") || output.contains("Temp"),
            "Sensors panel must be visible"
        );
    }

    /// Sensors panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Sensors);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 8: Connections Panel Interface
// =============================================================================

mod connections_panel {
    use super::*;

    /// Connections panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.connections = true;
        let output = render_to_string(&app, 120, 40);
        // Connections shows TCP states or "Connections" title
        assert!(
            output.contains("Connect")
                || output.contains("TCP")
                || output.contains("ESTABLISHED")
                || output.contains("LISTEN"),
            "Connections panel must be visible"
        );
    }

    /// Connections panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Connections);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 9: PSI Panel Interface
// =============================================================================

mod psi_panel {
    use super::*;

    /// PSI panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.psi = true;
        let output = render_to_string(&app, 120, 40);
        // PSI shows pressure stall info or "PSI" or "Pressure"
        assert!(
            output.contains("PSI")
                || output.contains("Pressure")
                || output.contains("some")
                || output.contains("full"),
            "PSI panel must be visible"
        );
    }

    /// PSI panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Psi);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 10: Files Panel Interface
// =============================================================================

mod files_panel {
    use super::*;

    /// Files panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.files = true;
        let output = render_to_string(&app, 120, 40);
        // Files panel shows treemap or file info
        assert!(
            output.contains("File")
                || output.contains("/")
                || output.contains("home")
                || output.contains("root"),
            "Files panel must be visible"
        );
    }

    /// Files panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Files);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 11: Battery Panel Interface
// =============================================================================

mod battery_panel {
    use super::*;

    /// Battery panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        app.panels.battery = true;
        let output = render_to_string(&app, 120, 40);
        // Battery panel shows charge % or "Battery" or "N/A" on desktop
        assert!(
            output.contains("Batt")
                || output.contains("%")
                || output.contains("N/A")
                || output.contains("AC"),
            "Battery panel must be visible"
        );
    }

    /// Battery panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Battery);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 12: Containers Panel Interface
// =============================================================================

mod containers_panel {
    use super::*;

    /// Containers panel MUST render
    #[test]
    fn renders() {
        let mut app = App::with_config(true, Default::default());
        // Enable containers panel if available
        let output = render_to_string(&app, 120, 40);
        // Containers shows docker/podman info or empty state
        // Just verify it doesn't panic - container detection is optional
        let _ = output;
    }

    /// Containers panel MUST render in exploded view
    #[test]
    fn renders_exploded() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Containers);
        let _output = render_to_string(&app, 140, 45);
    }
}

// =============================================================================
// SECTION 13: All Panels Not Placeholder
// =============================================================================

mod no_placeholders {
    use super::*;

    /// NO panel should show "coconut radio" or similar placeholder text
    #[test]
    fn no_placeholder_text() {
        let app = App::with_config(true, Default::default());
        let output = render_to_string(&app, 120, 40);

        let placeholders = [
            "coconut radio",
            "lorem ipsum",
            "placeholder",
            "TODO",
            "FIXME",
        ];
        for p in placeholders {
            assert!(
                !output.to_lowercase().contains(p),
                "Output must not contain placeholder text: {}",
                p
            );
        }
    }

    /// All panels MUST render without panic at minimum size
    #[test]
    fn minimum_size_no_panic() {
        let app = App::with_config(true, Default::default());
        // Very small buffer - should not panic
        let _output = render_to_string(&app, 40, 10);
    }

    /// All panels MUST render without panic at large size
    #[test]
    fn large_size_no_panic() {
        let app = App::with_config(true, Default::default());
        let _output = render_to_string(&app, 200, 60);
    }
}

// =============================================================================
// SECTION 14: Exploded View Interface
// =============================================================================

mod exploded_view {
    use super::*;

    /// Each panel type MUST be able to explode (ALL 12 PANELS)
    #[test]
    fn all_panels_explode() {
        let panels = [
            PanelType::Cpu,
            PanelType::Memory,
            PanelType::Disk,
            PanelType::Network,
            PanelType::Process,
            PanelType::Gpu,
            PanelType::Sensors,
            PanelType::Connections,
            PanelType::Psi,
            PanelType::Files,
            PanelType::Battery,
            PanelType::Containers,
        ];

        for panel in panels {
            let mut app = App::with_config(true, Default::default());
            app.exploded_panel = Some(panel);

            // Should not panic
            let _output = render_to_string(&app, 140, 45);
        }
    }

    /// Exploded view MUST fill most of the screen
    #[test]
    fn exploded_fills_screen() {
        let mut app = App::with_config(true, Default::default());
        app.exploded_panel = Some(PanelType::Cpu);

        let output = render_to_string(&app, 140, 45);
        let lines: Vec<&str> = output.lines().collect();

        // Exploded panel should use most of the height (at least 30 lines of content)
        let non_empty_lines = lines.iter().filter(|l| l.trim().len() > 5).count();
        assert!(
            non_empty_lines > 20,
            "Exploded view must fill screen, got {} lines",
            non_empty_lines
        );
    }
}