denet 0.7.0

a simple process monitor
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
//! Tests for CLI functionality and argument parsing
//!
//! These tests verify that the command-line interface works correctly
//! and provides proper coverage for the binary.

use std::process::Command;

#[test]
fn test_cli_help_output() {
    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "--help"])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Check that help contains expected sections
    assert!(stdout.contains("a simple process monitor"));
    assert!(stdout.contains("Usage:"));
    assert!(stdout.contains("Options:"));
    assert!(stdout.contains("Commands:"));
}

#[test]
fn test_cli_version_output() {
    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "--version"])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Should contain version information
    assert!(stdout.contains("denet") || stdout.contains("0.3.3"));
}

#[test]
fn test_cli_run_subcommand_help() {
    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "run", "--help"])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Check that run help contains expected options
    assert!(stdout.contains("Run and monitor"));
    assert!(stdout.contains("Usage:"));
}

#[test]
fn test_cli_stats_subcommand_help() {
    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "stats", "--help"])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Check that stats help contains expected options
    assert!(stdout.contains("Generate statistics"));
    assert!(stdout.contains("Usage:"));
}

#[test]
fn test_cli_invalid_subcommand() {
    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "invalid_command"])
        .output()
        .expect("Failed to execute command");

    assert!(!output.status.success());
    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should contain error message about invalid subcommand
    assert!(stderr.contains("invalid_command") || stderr.contains("unrecognized"));
}

#[test]
fn test_cli_run_with_simple_command() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--json",
            "--interval",
            "100",
            "--duration",
            "1",
            "run",
            "echo",
            "hello",
        ])
        .output()
        .expect("Failed to execute command");

    // Just verify the command succeeds; echo exits too fast to guarantee JSON output
    assert!(output.status.success());
}

#[test]
fn test_cli_run_with_output_file() {
    use tempfile::NamedTempFile;

    let temp_file = NamedTempFile::new().expect("Failed to create temp file");
    let temp_path = temp_file.path().to_str().unwrap();

    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--out",
            temp_path,
            "--interval",
            "100",
            "--duration",
            "1",
            "run",
            "echo",
            "hello",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());

    // CLI may not create file for very short processes, just check command succeeded
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(stdout.contains("Monitoring complete") || stdout.contains("samples"));
}

#[test]
fn test_cli_run_with_json_output() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--json",
            "--interval",
            "100",
            "--duration",
            "1",
            "run",
            "--",
            "python3",
            "-c",
            "import time; time.sleep(0.3)",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // In --json mode UI is suppressed; stdout contains at least the metadata line.
    // Command sleeps 300 ms so the process is alive when metadata is collected.
    assert!(
        stdout.contains("t0_ms") || stdout.contains("ts_ms"),
        "stdout was: {stdout}"
    );
}

#[test]
fn test_cli_run_with_custom_intervals() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--interval",
            "50",
            "--max-interval",
            "500",
            "--duration",
            "1",
            "run",
            "echo",
            "test",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
}

#[test]
fn test_cli_run_with_no_update_flag() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--no-update",
            "--interval",
            "100",
            "--duration",
            "1",
            "run",
            "echo",
            "test",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
}

#[test]
fn test_cli_run_nonexistent_command() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--duration",
            "1",
            "run",
            "nonexistent_command_12345",
        ])
        .output()
        .expect("Failed to execute command");

    // Command may succeed at CLI level but fail at process execution
    let stderr = String::from_utf8_lossy(&output.stderr);
    let stdout = String::from_utf8_lossy(&output.stdout);

    // Should contain some indication of error or completion
    assert!(
        stderr.contains("not found")
            || stderr.contains("No such file")
            || stderr.contains("command not found")
            || stderr.contains("Error")
            || stdout.contains("Monitoring complete")
    );
}

#[test]
fn test_cli_stats_with_sample_file() {
    use std::fs;
    use tempfile::NamedTempFile;

    // Create a sample JSONL file
    let temp_file = NamedTempFile::new().expect("Failed to create temp file");
    let sample_data = r#"{"pid": 1234, "cmd": ["test"], "executable": "/usr/bin/test", "t0_ms": 1234567890}
{"ts_ms": 1234567891, "cpu_usage": 10.5, "mem_rss_kb": 1024, "mem_vms_kb": 2048, "disk_read_bytes": 512, "disk_write_bytes": 256, "net_rx_bytes": 128, "net_tx_bytes": 64, "thread_count": 1, "uptime_secs": 1}
{"ts_ms": 1234567892, "cpu_usage": 15.2, "mem_rss_kb": 1100, "mem_vms_kb": 2100, "disk_read_bytes": 600, "disk_write_bytes": 300, "net_rx_bytes": 150, "net_tx_bytes": 80, "thread_count": 1, "uptime_secs": 2}
"#;

    fs::write(&temp_file, sample_data).expect("Failed to write sample data");
    let temp_path = temp_file.path().to_str().unwrap();

    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "stats", temp_path])
        .output()
        .expect("Failed to execute command");

    // Stats command expects proper format, may fail with test data
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should either succeed or give meaningful error about file format
    assert!(
        output.status.success()
            || stderr.contains("Error")
            || stderr.contains("parse")
            || stdout.contains("Monitoring complete")
    );
}

#[test]
fn test_cli_stats_nonexistent_file() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "stats",
            "/nonexistent/path/file.jsonl",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(!output.status.success());
    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should contain error about file not found
    assert!(
        stderr.contains("not found")
            || stderr.contains("No such file")
            || stderr.contains("does not exist")
            || stderr.contains("Error")
            || stderr.contains("Failed")
    );
}

#[test]
fn test_cli_stats_with_json_output() {
    use std::fs;
    use tempfile::NamedTempFile;

    // Create a sample JSONL file
    let temp_file = NamedTempFile::new().expect("Failed to create temp file");
    let sample_data = r#"{"pid": 1234, "cmd": ["test"], "executable": "/usr/bin/test", "t0_ms": 1234567890}
{"ts_ms": 1234567891, "cpu_usage": 10.5, "mem_rss_kb": 1024, "mem_vms_kb": 2048, "disk_read_bytes": 512, "disk_write_bytes": 256, "net_rx_bytes": 128, "net_tx_bytes": 64, "thread_count": 1, "uptime_secs": 1}
"#;

    fs::write(&temp_file, sample_data).expect("Failed to write sample data");
    let temp_path = temp_file.path().to_str().unwrap();

    let output = Command::new("cargo")
        .args(["run", "--bin", "denet", "--", "--json", "stats", temp_path])
        .output()
        .expect("Failed to execute command");

    // Stats command with JSON flag may fail with test data
    let _stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should either succeed or give meaningful error
    assert!(output.status.success() || stderr.contains("Error") || stderr.contains("parse"));
}

#[test]
fn test_cli_invalid_arguments() {
    // Test invalid interval
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--interval",
            "invalid",
            "run",
            "echo",
            "test",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(!output.status.success());

    // Test negative duration - may be handled at parsing level
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--duration",
            "-1",
            "run",
            "echo",
            "test",
        ])
        .output()
        .expect("Failed to execute command");

    // Negative duration may be rejected by parser
    assert!(!output.status.success());
}

#[test]
fn test_cli_attach_with_pid() {
    // Test monitoring by PID (use current process PID)
    let current_pid = std::process::id();

    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--duration",
            "1",
            "attach",
            &current_pid.to_string(),
        ])
        .output()
        .expect("Failed to execute command");

    // Attach command should work (may succeed or fail depending on PID validity)
    let stdout = String::from_utf8_lossy(&output.stdout);
    let stderr = String::from_utf8_lossy(&output.stderr);

    // Should either succeed or give meaningful error about PID
    assert!(
        output.status.success()
            || stderr.contains("Error")
            || stderr.contains("process")
            || stdout.contains("Monitoring complete")
    );
}

#[test]
fn test_cli_comprehensive_options() {
    let output = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--interval",
            "50",
            "--max-interval",
            "200",
            "--duration",
            "1",
            "--json",
            "--no-update",
            "run",
            "--",
            "python3",
            "-c",
            "import time; time.sleep(0.5); print('done')",
        ])
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);

    // In --json mode UI is suppressed; stdout contains at least the metadata line
    assert!(stdout.contains("t0_ms") || stdout.contains("ts_ms"));
}

#[cfg(unix)]
#[test]
fn test_cli_signal_handling() {
    use std::process::Stdio;
    use std::time::Duration;

    // Start a long-running monitoring process
    let mut child = Command::new("cargo")
        .args([
            "run",
            "--bin",
            "denet",
            "--",
            "--interval",
            "100",
            "run",
            "--",
            "sleep",
            "10", // Long-running command
        ])
        .stdout(Stdio::piped())
        .stderr(Stdio::piped())
        .spawn()
        .expect("Failed to start command");

    // Let it run for a short time
    std::thread::sleep(Duration::from_millis(500));

    // Kill the process (portable way)
    let _ = child.kill();

    // Wait for it to exit
    let output = child
        .wait_with_output()
        .expect("Failed to wait for command");

    // Should have terminated - check that we can get status
    assert!(output.status.code().is_some() || !output.status.success());
}