ggen-cli-lib 26.6.11

CLI interface for ggen
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
#![allow(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::panic,
    clippy::needless_raw_string_hashes,
    clippy::duration_suboptimal_units,
    clippy::branches_sharing_code,
    clippy::used_underscore_binding,
    clippy::single_char_pattern,
    clippy::ignore_without_reason,
    clippy::cloned_ref_to_slice_refs,
    clippy::doc_overindented_list_items,
    clippy::match_wildcard_for_single_variants,
    clippy::ignored_unit_patterns,
    clippy::needless_collect,
    clippy::unnecessary_map_or,
    clippy::manual_flatten,
    clippy::manual_strip,
    clippy::future_not_send,
    clippy::unnested_or_patterns,
    clippy::no_effect_underscore_binding,
    clippy::literal_string_with_formatting_args
)]
#![cfg(any())]
//! End-to-end integration tests for lifecycle commands
//!
//! Tests the complete user journey through the lifecycle management system:
//! - Listing phases from make.toml
//! - Showing phase details
//! - Running individual phases
//! - Executing phase pipelines
//! - State persistence and tracking
//! - Error handling for edge cases

use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::TempDir;

/// Helper to create a test project with make.toml
fn create_test_project() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp dir");

    let make_toml = r#"
[project]
name = "test-project"
type = "webapp"
version = "1.0.0"
description = "Test project for lifecycle e2e tests"

[lifecycle.validate]
description = "Validate environment"
commands = ["echo '🔍 Validating environment...'"]

[lifecycle.lint]
description = "Lint code"
commands = ["echo '🔍 Linting code...'"]

[lifecycle.init]
description = "Initialize project structure"
commands = [
    "mkdir -p src tests docs",
    "echo 'Project initialized' > .initialized"
]

[lifecycle.setup]
description = "Install dependencies and configure environment"
commands = [
    "echo 'Installing dependencies...'",
    "echo 'Setup complete' > .setup"
]
watch = true

[lifecycle.dev]
description = "Start development server"
commands = ["echo 'Dev server running on port 3000'"]
port = 3000
watch = true

[lifecycle.build]
description = "Build production artifacts"
commands = [
    "echo 'Building project...'",
    "mkdir -p dist",
    "echo 'Build complete' > dist/output.txt"
]
cache = true

[lifecycle.test]
description = "Run test suite"
commands = [
    "echo 'Running tests...'",
    "echo 'All tests passed' > .test-results"
]

[lifecycle.deploy]
description = "Deploy to production"
commands = ["echo 'Deploying to production...'"]

[lifecycle.cleanup]
description = "Clean up temporary files"
commands = ["echo '🧹 Cleaning up...'"]

[hooks]
before_build = ["lint"]
after_build = ["test"]
"#;

    fs::write(temp_dir.path().join("make.toml"), make_toml).expect("Failed to write make.toml");

    temp_dir
}

/// Helper to get the ggen binary path
fn ggen_cmd() -> Command {
    Command::cargo_bin("ggen").expect("Failed to find ggen binary")
}

/// Helper to assert state.json exists and is valid JSON
fn assert_state_exists(root: &std::path::Path) {
    let state_path = root.join(".ggen/state.json");
    assert!(
        state_path.exists(),
        "State file should exist at {}",
        state_path.display()
    );

    let state_content = fs::read_to_string(&state_path).expect("Failed to read state.json");
    serde_json::from_str::<serde_json::Value>(&state_content)
        .expect("State file should be valid JSON");
}

#[test]
fn test_lifecycle_list_shows_all_phases() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("list")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Available lifecycle phases"))
        .stdout(predicate::str::contains("init"))
        .stdout(predicate::str::contains("setup"))
        .stdout(predicate::str::contains("dev"))
        .stdout(predicate::str::contains("build"))
        .stdout(predicate::str::contains("test"))
        .stdout(predicate::str::contains("deploy"))
        .stdout(predicate::str::contains("Initialize project structure"));
}

#[test]
fn test_lifecycle_list_without_make_toml() {
    let temp_dir = TempDir::new().unwrap();

    ggen_cmd()
        .arg("lifecycle")
        .arg("list")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("No make.toml found"));
}

#[test]
fn test_lifecycle_show_displays_phase_details() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("show")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Phase: init"))
        .stdout(predicate::str::contains("Initialize project structure"))
        .stdout(predicate::str::contains("Commands:"))
        .stdout(predicate::str::contains("mkdir -p src tests docs"));
}

#[test]
fn test_lifecycle_show_with_metadata() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("show")
        .arg("dev")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Watch mode: true"))
        .stdout(predicate::str::contains("Port: 3000"));

    ggen_cmd()
        .arg("lifecycle")
        .arg("show")
        .arg("build")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Caching: true"))
        .stdout(predicate::str::contains("Before hooks:"))
        .stdout(predicate::str::contains("lint"))
        .stdout(predicate::str::contains("After hooks:"))
        .stdout(predicate::str::contains("test"));
}

#[test]
fn test_lifecycle_show_missing_phase() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("show")
        .arg("nonexistent")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains("Phase 'nonexistent' not found"));
}

#[test]
fn test_lifecycle_run_executes_phase() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Running phase: init"));

    // Verify files were created
    assert!(temp_dir.path().join("src").exists());
    assert!(temp_dir.path().join("tests").exists());
    assert!(temp_dir.path().join("docs").exists());
    assert!(temp_dir.path().join(".initialized").exists());
}

#[test]
fn test_lifecycle_run_creates_state_file() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    assert_state_exists(temp_dir.path());

    // Verify state content
    let state_path = temp_dir.path().join(".ggen/state.json");
    let state_content = fs::read_to_string(&state_path).unwrap();
    let state: serde_json::Value = serde_json::from_str(&state_content).unwrap();

    assert_eq!(state["last_phase"], "init");
    assert!(state["phase_history"]
        .as_array()
        .unwrap()
        .iter()
        .any(|record| record["phase"] == "init"));
}

#[test]
fn test_lifecycle_run_with_environment() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("setup")
        .arg("--root")
        .arg(temp_dir.path())
        .arg("--env")
        .arg("production")
        .assert()
        .success()
        .stdout(predicate::str::contains("Running phase: setup"));

    // State should track the execution
    assert_state_exists(temp_dir.path());
}

#[test]
fn test_lifecycle_run_missing_phase() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("invalid-phase")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains("Phase 'invalid-phase' not found"));
}

#[test]
fn test_lifecycle_pipeline_sequential_execution() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("pipeline")
        .arg("init")
        .arg("setup")
        .arg("build")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Running phase: init"))
        .stdout(predicate::str::contains("Running phase: setup"))
        .stdout(predicate::str::contains("Running phase: build"))
        .stdout(predicate::str::contains(
            "Pipeline completed: init → setup → build",
        ));

    // Verify all phases executed
    assert!(temp_dir.path().join(".initialized").exists());
    assert!(temp_dir.path().join(".setup").exists());
    assert!(temp_dir.path().join("dist/output.txt").exists());

    // Verify state tracks all phases
    let state_path = temp_dir.path().join(".ggen/state.json");
    let state_content = fs::read_to_string(&state_path).unwrap();
    let state: serde_json::Value = serde_json::from_str(&state_content).unwrap();

    assert_eq!(state["last_phase"], "test");
    let phase_history = state["phase_history"].as_array().unwrap();
    assert!(phase_history.iter().any(|record| record["phase"] == "init"));
    assert!(phase_history
        .iter()
        .any(|record| record["phase"] == "setup"));
    assert!(phase_history
        .iter()
        .any(|record| record["phase"] == "build"));
}

#[test]
fn test_lifecycle_pipeline_with_environment() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("pipeline")
        .arg("init")
        .arg("setup")
        .arg("--root")
        .arg(temp_dir.path())
        .arg("--env")
        .arg("staging")
        .assert()
        .success();

    assert_state_exists(temp_dir.path());
}

#[test]
fn test_lifecycle_pipeline_stops_on_missing_phase() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("pipeline")
        .arg("init")
        .arg("nonexistent")
        .arg("setup")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .failure()
        .stderr(predicate::str::contains("Phase 'nonexistent' not found"));
}

#[test]
fn test_state_persistence_across_runs() {
    let temp_dir = create_test_project();

    // First run
    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    // Second run - state should persist
    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("setup")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    // Verify state includes both phases
    let state_path = temp_dir.path().join(".ggen/state.json");
    let state_content = fs::read_to_string(&state_path).unwrap();
    let state: serde_json::Value = serde_json::from_str(&state_content).unwrap();

    assert_eq!(state["last_phase"], "setup");
    let phase_history = state["phase_history"].as_array().unwrap();
    assert_eq!(phase_history.len(), 2);
}

#[test]
fn test_lifecycle_list_shows_last_executed_phase() {
    let temp_dir = create_test_project();

    // Run a phase first
    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("build")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    // List should show last executed
    ggen_cmd()
        .arg("lifecycle")
        .arg("list")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Last executed: test"));
}

#[test]
fn test_lifecycle_help_output() {
    ggen_cmd()
        .arg("lifecycle")
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Universal lifecycle management"))
        .stdout(predicate::str::contains("list"))
        .stdout(predicate::str::contains("show"))
        .stdout(predicate::str::contains("run"))
        .stdout(predicate::str::contains("pipeline"));
}

#[test]
fn test_lifecycle_list_help() {
    ggen_cmd()
        .arg("lifecycle")
        .arg("list")
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains(
            "List all available lifecycle phases",
        ))
        .stdout(predicate::str::contains("--root"));
}

#[test]
fn test_lifecycle_show_help() {
    ggen_cmd()
        .arg("lifecycle")
        .arg("show")
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Show details of a specific phase"))
        .stdout(predicate::str::contains("<PHASE>"))
        .stdout(predicate::str::contains("--root"));
}

#[test]
fn test_lifecycle_run_help() {
    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Run a single lifecycle phase"))
        .stdout(predicate::str::contains("<PHASE>"))
        .stdout(predicate::str::contains("--root"))
        .stdout(predicate::str::contains("--env"));
}

#[test]
fn test_lifecycle_pipeline_help() {
    ggen_cmd()
        .arg("lifecycle")
        .arg("pipeline")
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("Run multiple phases in sequence"))
        .stdout(predicate::str::contains("[PHASES]..."))
        .stdout(predicate::str::contains("--root"))
        .stdout(predicate::str::contains("--env"));
}

#[test]
fn test_hooks_execution_order() {
    let temp_dir = create_test_project();

    let output = ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("build")
        .arg("--root")
        .arg(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Verify hooks run in correct order: lint (before) -> build -> test (after)
    let lint_pos = stdout.find("Running phase: lint").unwrap();
    let build_pos = stdout.find("Running phase: build").unwrap();
    let test_pos = stdout.find("Running phase: test").unwrap();

    assert!(lint_pos < build_pos, "Lint should run before build");
    assert!(build_pos < test_pos, "Test should run after build");
}

#[test]
fn test_multiple_commands_in_phase() {
    let temp_dir = create_test_project();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("build")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("Building project..."));

    // Verify both commands executed
    assert!(temp_dir.path().join("dist").exists());
    assert!(temp_dir.path().join("dist/output.txt").exists());
}

#[test]
fn test_empty_phase_list() {
    let temp_dir = TempDir::new().unwrap();

    // Create make.toml with no phases
    let make_toml = r#"
[project]
name = "test-project"
"#;
    fs::write(temp_dir.path().join("make.toml"), make_toml).unwrap();

    ggen_cmd()
        .arg("lifecycle")
        .arg("list")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success()
        .stdout(predicate::str::contains("(no phases defined)"));
}

#[test]
fn test_state_directory_creation() {
    let temp_dir = create_test_project();

    // State directory shouldn't exist initially
    assert!(!temp_dir.path().join(".ggen").exists());

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    // State directory and file should be created
    assert!(temp_dir.path().join(".ggen").exists());
    assert!(temp_dir.path().join(".ggen").is_dir());
    assert_state_exists(temp_dir.path());
}

#[test]
fn test_concurrent_safe_state_updates() {
    let temp_dir = create_test_project();

    // Run multiple phases quickly
    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("setup")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("test")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    // State should be valid and contain all phases
    let state_path = temp_dir.path().join(".ggen/state.json");
    let state_content = fs::read_to_string(&state_path).unwrap();
    let state: serde_json::Value = serde_json::from_str(&state_content).unwrap();

    let phase_history = state["phase_history"].as_array().unwrap();
    assert_eq!(phase_history.len(), 3);
}

#[test]
fn test_phase_without_hooks() {
    let temp_dir = create_test_project();

    // Init phase has no hooks defined
    let output = ggen_cmd()
        .arg("lifecycle")
        .arg("run")
        .arg("init")
        .arg("--root")
        .arg(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    let stdout = String::from_utf8_lossy(&output.stdout);

    // Should run directly without hooks
    assert!(stdout.contains("Running phase: init"));
    // Should not run other phases as hooks
    assert!(!stdout.contains("Running phase: lint"));
    assert!(!stdout.contains("Running phase: test"));
}

#[test]
fn test_performance_fast_execution() {
    let temp_dir = create_test_project();

    let start = std::time::Instant::now();

    ggen_cmd()
        .arg("lifecycle")
        .arg("pipeline")
        .arg("init")
        .arg("setup")
        .arg("build")
        .arg("test")
        .arg("--root")
        .arg(temp_dir.path())
        .assert()
        .success();

    let duration = start.elapsed();

    // All tests should complete in under 5 seconds
    assert!(
        duration.as_secs() < 5,
        "Pipeline took too long: {:?}",
        duration
    );
}