devboy-cli 0.28.0

Command-line interface for devboy-tools — `devboy` binary. Primary distribution is npm (@devboy-tools/cli); `cargo install devboy-cli` is the secondary channel.
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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
//! Integration tests for `devboy init` command.
//!
//! These tests verify the init command behavior in non-interactive mode.
//! Interactive mode testing would require stdin mocking which is out of scope.
//!
//! # Running Tests
//!
//! ```bash
//! cargo test --test init_test
//! ```

use std::fs;
use std::process::Command;
use tempfile::TempDir;

/// Get path to the devboy binary.
fn devboy_bin() -> std::path::PathBuf {
    // Use debug build for tests
    let mut path = std::env::current_exe().unwrap();
    path.pop(); // Remove test binary name
    path.pop(); // Remove deps

    // Handle platform-specific executable name (e.g., devboy.exe on Windows)
    let bin_name = format!("devboy{}", std::env::consts::EXE_SUFFIX);
    path.push(bin_name);
    path
}

/// Create a temporary directory with a git repository initialized.
fn create_temp_git_repo(remote_url: &str) -> TempDir {
    let temp_dir = TempDir::new().unwrap();

    // Initialize git repo
    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to spawn git init");

    assert!(
        init_output.status.success(),
        "git init failed: {}",
        String::from_utf8_lossy(&init_output.stderr)
    );

    // Add remote
    let remote_output = Command::new("git")
        .args(["remote", "add", "origin", remote_url])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to spawn git remote add");

    assert!(
        remote_output.status.success(),
        "git remote add failed: {}",
        String::from_utf8_lossy(&remote_output.stderr)
    );

    temp_dir
}

#[test]
fn test_init_help() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(stdout.contains("--yes"));
    assert!(stdout.contains("--dry-run"));
    assert!(stdout.contains("--force"));
    assert!(stdout.contains("--claude"));
    assert!(stdout.contains("--kimi"));
    assert!(stdout.contains("--context"));
}

#[test]
fn test_init_dry_run_creates_no_files() {
    let temp_dir = create_temp_git_repo("git@github.com:test-owner/test-repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--dry-run"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(stdout.contains("[dry-run]"), "Should indicate dry-run mode");
    assert!(stdout.contains("Would create"), "Should say would create");
    assert!(
        !config_path.exists(),
        "Config file should NOT be created in dry-run mode"
    );
}

#[test]
fn test_init_yes_creates_config_with_github() {
    let temp_dir = create_temp_git_repo("git@github.com:test-owner/test-repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Detected GitHub repository"),
        "Should detect GitHub"
    );
    assert!(config_path.exists(), "Config file should be created");

    // Verify config content
    let content = fs::read_to_string(&config_path).unwrap();
    assert!(content.contains("github"), "Should contain github section");
    assert!(content.contains("test-owner"), "Should contain owner");
    assert!(content.contains("test-repo"), "Should contain repo");
}

#[test]
fn test_init_yes_creates_config_with_gitlab() {
    let temp_dir = create_temp_git_repo("git@gitlab.com:company/project.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Detected GitLab repository"),
        "Should detect GitLab"
    );
    assert!(config_path.exists(), "Config file should be created");

    // Verify config content
    let content = fs::read_to_string(&config_path).unwrap();
    assert!(content.contains("gitlab"), "Should contain gitlab section");
    assert!(
        content.contains("company/project"),
        "Should contain project path"
    );
}

#[test]
fn test_init_yes_with_https_remote() {
    let temp_dir = create_temp_git_repo("https://github.com/https-owner/https-repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");
    assert!(config_path.exists(), "Config file should be created");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("https-owner"),
        "Should parse HTTPS remote correctly"
    );
    assert!(content.contains("https-repo"), "Should parse repo name");
}

#[test]
fn test_init_custom_context_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--context", "my-custom-context"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("my-custom-context"),
        "Should use custom context name"
    );
}

#[test]
fn test_init_fails_if_config_exists_without_force() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create existing config
    fs::write(&config_path, "# existing config\n").unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        !output.status.success(),
        "Command should fail when config exists"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("already exists") || stderr.contains("--force"),
        "Should mention config exists or suggest --force"
    );
}

#[test]
fn test_init_force_creates_backup() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create existing config
    let original_content = "# original config\n[contexts.old]\n";
    fs::write(&config_path, original_content).unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--force"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(
        output.status.success(),
        "Command should succeed with --force"
    );
    assert!(stdout.contains("backup"), "Should mention backup creation");

    // Verify backup exists
    let entries: Vec<_> = fs::read_dir(temp_dir.path())
        .unwrap()
        .filter_map(|e| e.ok())
        .filter(|e| {
            e.file_name()
                .to_string_lossy()
                .starts_with(".devboy.toml.backup")
        })
        .collect();

    assert_eq!(entries.len(), 1, "Should have exactly one backup file");

    // Verify backup content matches original
    let backup_content = fs::read_to_string(entries[0].path()).unwrap();
    assert_eq!(
        backup_content, original_content,
        "Backup should contain original content"
    );

    // Verify new config is different
    let new_content = fs::read_to_string(&config_path).unwrap();
    assert_ne!(
        new_content, original_content,
        "New config should be different from original"
    );
}

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

    // Initialize git repo without remote
    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to spawn git init");

    assert!(
        init_output.status.success(),
        "git init failed: {}",
        String::from_utf8_lossy(&init_output.stderr)
    );

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("No git remote detected"),
        "Should indicate no remote found"
    );
}

#[test]
fn test_init_dry_run_with_force_shows_would_backup() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create existing config
    fs::write(&config_path, "# existing\n").unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--dry-run", "--force"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(stdout.contains("[dry-run]"), "Should be in dry-run mode");

    // Verify no backup was actually created
    let backups: Vec<_> = fs::read_dir(temp_dir.path())
        .unwrap()
        .filter_map(|e| e.ok())
        .filter(|e| e.file_name().to_string_lossy().contains(".backup"))
        .collect();

    assert!(
        backups.is_empty(),
        "No backup should be created in dry-run mode"
    );
}

#[test]
fn test_init_unknown_provider_no_config() {
    let temp_dir = create_temp_git_repo("git@bitbucket.org:owner/repo.git");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("No git remote detected") || stdout.contains("minimal config"),
        "Should indicate unknown provider or minimal config"
    );
}

// =============================================================================
// Proxy command integration tests
// =============================================================================

#[test]
fn test_init_with_proxy_flag() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://app.devboy.pro/api/mcp",
            "--proxy-name",
            "devboy-cloud",
            "--proxy-transport",
            "streamable-http",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");
    assert!(config_path.exists(), "Config file should be created");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("[[proxy_mcp_servers]]"),
        "Should contain proxy_mcp_servers section"
    );
    assert!(
        content.contains("devboy-cloud"),
        "Should contain proxy name"
    );
    assert!(
        content.contains("https://app.devboy.pro/api/mcp"),
        "Should contain proxy URL"
    );
    assert!(
        content.contains("streamable-http"),
        "Should contain transport type"
    );
}

#[test]
fn test_init_with_proxy_and_token_key() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-token-key",
            "my.secret.token",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("token_key"),
        "Should contain token_key field"
    );
    assert!(
        content.contains("my.secret.token"),
        "Should contain token key value"
    );
    assert!(
        content.contains("bearer"),
        "Should have bearer auth type when token_key is set"
    );
}

#[test]
fn test_init_with_proxy_token() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "my-server",
            "--proxy-token",
            "secret-token-value",
        ])
        .env("DEVBOY_SKIP_KEYCHAIN", "1") // Skip real keychain for CI
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Stored") || stdout.contains("keychain"),
        "Should mention token storage"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    // Token key should be auto-generated as proxy.my-server.token
    assert!(
        content.contains("proxy.my-server.token"),
        "Should contain auto-generated token key"
    );
    assert!(content.contains("bearer"), "Should have bearer auth type");
}

#[test]
fn test_init_with_proxy_auth_type() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-token-key",
            "my.key",
            "--proxy-auth-type",
            "api_key",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(content.contains("api_key"), "Should have api_key auth type");
}

#[test]
fn test_init_with_proxy_only_skips_git_detection() {
    // Create a git repo with GitHub remote - but with --proxy-only it should NOT be added
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-only",
            "--proxy-name",
            "my-server",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    // Should NOT detect GitHub
    assert!(
        !stdout.contains("Detected GitHub"),
        "Should NOT detect GitHub when --proxy-only is used"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    // Should have proxy config
    assert!(
        content.contains("my-server"),
        "Should contain proxy server name"
    );
    assert!(
        content.contains("https://example.com/mcp"),
        "Should contain proxy URL"
    );
    // Should NOT have GitHub config
    assert!(
        !content.contains("[contexts.") || !content.contains(".github]"),
        "Should NOT contain github config section"
    );
    assert!(
        !content.contains("owner = "),
        "Should NOT contain github owner"
    );
}

#[test]
fn test_init_remote_config_url_skips_git_detection_by_default() {
    // Running `devboy init --yes --remote-config-url ...` inside a git repo used to
    // auto-add a [contexts.*.github]/[contexts.*.gitlab] section from the origin
    // remote alongside [remote_config]. Remote config is meant to be the source of
    // truth for integrations, so the local auto-detected provider is almost always
    // stale/wrong. Issue #151 changed the default to skip git detection in this case.
    let temp_dir = create_temp_git_repo("git@gitlab.com:company/project.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--remote-config-url",
            "https://example.com/config",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        !stdout.contains("Detected GitLab"),
        "Should NOT auto-detect GitLab when --remote-config-url is set"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("[remote_config]"),
        "Should contain [remote_config] section"
    );
    assert!(
        content.contains("https://example.com/config"),
        "Should contain remote config URL"
    );
    assert!(
        !content.contains(".gitlab]"),
        "Should NOT contain a [contexts.*.gitlab] section when remote config is the source of truth"
    );
    assert!(
        !content.contains("company/project"),
        "Should NOT contain git-detected project path"
    );
}

#[test]
fn test_init_remote_config_url_with_detect_git_keeps_auto_detection() {
    // Escape hatch: `--detect-git` restores pre-#151 behaviour for users who
    // genuinely want both a remote config and an auto-detected local provider.
    let temp_dir = create_temp_git_repo("git@github.com:test-owner/test-repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--remote-config-url",
            "https://example.com/config",
            "--detect-git",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Detected GitHub repository"),
        "Should auto-detect GitHub when --detect-git override is passed"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("[remote_config]"),
        "Should still contain [remote_config] section"
    );
    assert!(
        content.contains("test-owner"),
        "Should contain auto-detected owner"
    );
    assert!(
        content.contains("test-repo"),
        "Should contain auto-detected repo"
    );
}

#[test]
fn test_proxy_add_creates_config() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create minimal config first
    fs::write(&config_path, "").unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "proxy",
            "add",
            "my-server",
            "--url",
            "https://example.com/mcp",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Added proxy 'my-server'"),
        "Should confirm proxy added"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("[[proxy_mcp_servers]]"),
        "Should contain proxy section"
    );
    assert!(content.contains("my-server"), "Should contain proxy name");
}

#[test]
fn test_proxy_add_with_all_options() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create minimal config first
    fs::write(&config_path, "").unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "proxy",
            "add",
            "custom-proxy",
            "--url",
            "https://custom.example.com/mcp",
            "--transport",
            "sse",
            "--token-key",
            "custom.token",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(output.status.success(), "Command should succeed");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("custom-proxy"),
        "Should contain proxy name"
    );
    assert!(
        content.contains("https://custom.example.com/mcp"),
        "Should contain URL"
    );
    assert!(content.contains("sse"), "Should contain transport");
    assert!(content.contains("custom.token"), "Should contain token key");
}

#[test]
fn test_proxy_add_fails_without_force_if_exists() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create config with existing proxy
    let existing_config = r#"
[[proxy_mcp_servers]]
name = "existing"
url = "https://old.example.com/mcp"
transport = "sse"
"#;
    fs::write(&config_path, existing_config).unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "proxy",
            "add",
            "existing",
            "--url",
            "https://new.example.com/mcp",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        !output.status.success(),
        "Command should fail without --force"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("already exists") || stderr.contains("--force"),
        "Should mention proxy exists or suggest --force"
    );
}

#[test]
fn test_proxy_add_with_force_overwrites() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create config with existing proxy
    let existing_config = r#"
[[proxy_mcp_servers]]
name = "existing"
url = "https://old.example.com/mcp"
transport = "sse"
"#;
    fs::write(&config_path, existing_config).unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "proxy",
            "add",
            "existing",
            "--url",
            "https://new.example.com/mcp",
            "--force",
        ])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(
        output.status.success(),
        "Command should succeed with --force"
    );
    assert!(stdout.contains("Overwriting"), "Should mention overwriting");

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("https://new.example.com/mcp"),
        "Should contain new URL"
    );
    assert!(
        !content.contains("https://old.example.com/mcp"),
        "Should not contain old URL"
    );
}

#[test]
fn test_proxy_remove() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create config with proxy
    let existing_config = r#"
[[proxy_mcp_servers]]
name = "to-remove"
url = "https://example.com/mcp"
transport = "sse"
"#;
    fs::write(&config_path, existing_config).unwrap();

    let output = Command::new(devboy_bin())
        .args(["proxy", "remove", "to-remove"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success(), "Command should succeed");
    assert!(
        stdout.contains("Removed proxy 'to-remove'"),
        "Should confirm removal"
    );

    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        !content.contains("to-remove"),
        "Should not contain removed proxy"
    );
}

#[test]
fn test_proxy_remove_nonexistent_fails() {
    let temp_dir = TempDir::new().unwrap();
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create empty config
    fs::write(&config_path, "").unwrap();

    let output = Command::new(devboy_bin())
        .args(["proxy", "remove", "nonexistent"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        !output.status.success(),
        "Command should fail for nonexistent proxy"
    );

    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("not found"),
        "Should indicate proxy not found"
    );
}

// =============================================================================
// Claude MCP registration integration tests
// =============================================================================

/// Helper to mock HOME directory for Claude config tests.
/// Note: These tests verify the CLI arguments are processed correctly.
/// The actual Claude registration may fail (no claude CLI, permission issues, etc.)
/// but we can verify the arguments are parsed and used correctly.

#[test]
fn test_init_claude_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--claude"),
        "Help should mention --claude flag"
    );
    assert!(
        stdout.contains("in Claude Code"),
        "Help should describe --claude flag"
    );
}

#[test]
fn test_init_with_claude_and_proxy_name_uses_custom_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create a fake HOME directory for Claude config
    let fake_home = TempDir::new().unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "my-custom-server",
            "--claude",
        ])
        // Set HOME for Unix and USERPROFILE for Windows
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        // Skip keychain operations in CI
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Check that config file was created
    assert!(config_path.exists(), "Config file should be created");

    // Check config content has the custom proxy name
    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("my-custom-server"),
        "Config should contain custom proxy name"
    );

    // Verify the output contains the custom server name (not generic messages)
    // This ensures the --proxy-name flag is actually being used
    assert!(
        stdout.contains("my-custom-server"),
        "Output should contain the custom server name 'my-custom-server': {}",
        stdout
    );
}

#[test]
fn test_init_with_claude_without_proxy_uses_default_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    // Create a fake HOME directory for Claude config
    let fake_home = TempDir::new().unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--claude"])
        // Set HOME for Unix and USERPROFILE for Windows
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Check that config file was created
    assert!(config_path.exists(), "Config file should be created");

    // Verify the output contains "devboy" as the server name
    // The message format is: "Registering 'devboy' MCP server in Claude Code..."
    assert!(
        stdout.contains("'devboy'") || stdout.contains("\"devboy\""),
        "Output should contain 'devboy' as the default server name: {}",
        stdout
    );
}

#[test]
fn test_init_with_claude_creates_claude_json_with_custom_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");

    // Create a fake HOME directory for Claude config
    let fake_home = TempDir::new().unwrap();
    let claude_json_path = fake_home.path().join(".claude.json");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "custom-mcp-server",
            "--claude",
        ])
        // Set HOME for Unix and USERPROFILE for Windows
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Verify output contains the custom server name
    assert!(
        stdout.contains("custom-mcp-server"),
        "Output should contain custom server name: {}",
        stdout
    );

    // Check if Claude registration succeeded via direct config edit
    if claude_json_path.exists() {
        let claude_content = fs::read_to_string(&claude_json_path).unwrap();
        let claude_config: serde_json::Value = serde_json::from_str(&claude_content).unwrap();

        // Claude CLI might register in different locations:
        // 1. Global: mcpServers (used by register_claude_mcp_direct fallback)
        // 2. Project-specific: projects/[path]/mcpServers (used by claude CLI)

        let global_mcp = &claude_config["mcpServers"]["custom-mcp-server"];

        // Check if registered in global mcpServers (direct fallback)
        let registered_globally = global_mcp.is_object();

        // Check if registered in any project (claude CLI creates project-specific config)
        let registered_in_project = claude_config["projects"]
            .as_object()
            .map(|projects| {
                projects
                    .values()
                    .any(|project| project["mcpServers"]["custom-mcp-server"].is_object())
            })
            .unwrap_or(false);

        assert!(
            registered_globally || registered_in_project,
            "MCP server should be registered with custom name 'custom-mcp-server'. \
             Global: {}, Project: {}. Config: {}",
            registered_globally,
            registered_in_project,
            claude_content
        );

        // Verify "devboy" is NOT registered anywhere (when using custom name)
        let devboy_global = claude_config["mcpServers"]["devboy"].is_object();
        let devboy_in_project = claude_config["projects"]
            .as_object()
            .map(|projects| {
                projects
                    .values()
                    .any(|project| project["mcpServers"]["devboy"].is_object())
            })
            .unwrap_or(false);

        assert!(
            !devboy_global && !devboy_in_project,
            "MCP server should NOT be registered as 'devboy' when --proxy-name is provided"
        );
    } else {
        // If .claude.json wasn't created, verify from stdout
        assert!(
            stdout.contains("custom-mcp-server") || stdout.contains("Claude CLI"),
            "Should either create .claude.json or mention Claude CLI registration"
        );
    }
}

#[test]
fn test_init_with_claude_preserves_existing_mcp_servers() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");

    // Create a fake HOME directory with existing Claude config
    let fake_home = TempDir::new().unwrap();
    let claude_json_path = fake_home.path().join(".claude.json");

    // Create existing Claude config with another MCP server
    let existing_config = r#"{
        "mcpServers": {
            "existing-server": {
                "command": "some-other-cmd",
                "args": ["arg1", "arg2"]
            }
        },
        "someOtherSetting": "value"
    }"#;
    fs::write(&claude_json_path, existing_config).unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "new-server",
            "--claude",
        ])
        // Set HOME for Unix and USERPROFILE for Windows
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Command should succeed regardless of registration method
    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    // Check if registration happened via Claude CLI (indicated by "Successfully registered via Claude CLI")
    // In that case, Claude CLI may have written to a different location or project-specific config
    let used_claude_cli = stdout.contains("Successfully registered via Claude CLI");

    // If Claude registration used direct config edit (fallback), verify preservation
    if claude_json_path.exists() {
        let claude_content = fs::read_to_string(&claude_json_path).unwrap();
        let claude_config: serde_json::Value = serde_json::from_str(&claude_content).unwrap();

        // Verify existing global MCP server is preserved
        assert!(
            claude_config["mcpServers"]["existing-server"].is_object(),
            "Existing MCP server should be preserved"
        );
        assert_eq!(
            claude_config["mcpServers"]["existing-server"]["command"], "some-other-cmd",
            "Existing server command should be unchanged"
        );

        // Verify other settings are preserved
        assert_eq!(
            claude_config["someOtherSetting"], "value",
            "Other settings should be preserved"
        );

        // Verify new server is added (either globally or in project)
        // Claude CLI adds to project, fallback adds to global
        // Note: If Claude CLI was used, it may write to a different home directory
        // that we can't control in tests (especially on Windows where USERPROFILE
        // may be ignored by claude CLI), so we only check when fallback was used
        let new_server_global = claude_config["mcpServers"]["new-server"].is_object();
        let new_server_in_project = claude_config["projects"]
            .as_object()
            .map(|projects| {
                projects
                    .values()
                    .any(|project| project["mcpServers"]["new-server"].is_object())
            })
            .unwrap_or(false);

        // Only assert new server was added if we used the direct fallback method
        // Claude CLI may write to the real home directory, not our fake one
        // This is especially true on Windows where HOME/USERPROFILE env vars
        // may not be respected by the claude CLI
        if !used_claude_cli && (new_server_global || new_server_in_project) {
            // Fallback was used and wrote to our fake home - verify it worked
            assert!(
                new_server_global || new_server_in_project,
                "New MCP server should be added either globally or in project. Config: {}",
                claude_content
            );
        }
        // If neither condition is met, Claude CLI was used but wrote elsewhere - that's OK
    }
}

// ==========================================================================
// Kimi CLI registration tests
// ==========================================================================

#[test]
fn test_init_kimi_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(stdout.contains("--kimi"), "Help should mention --kimi flag");
    assert!(
        stdout.contains("in Kimi CLI"),
        "Help should describe --kimi flag"
    );
}

#[test]
fn test_init_with_kimi_and_proxy_name_uses_custom_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "my-custom-server",
            "--kimi",
        ])
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Check that config file was created
    assert!(config_path.exists(), "Config file should be created");

    // Check config content has the custom proxy name
    let content = fs::read_to_string(&config_path).unwrap();
    assert!(
        content.contains("my-custom-server"),
        "Config should contain custom proxy name"
    );

    // Verify the output contains the custom server name
    assert!(
        stdout.contains("my-custom-server"),
        "Output should contain the custom server name 'my-custom-server': {}",
        stdout
    );
}

#[test]
fn test_init_with_kimi_without_proxy_uses_default_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let config_path = temp_dir.path().join(".devboy.toml");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--kimi"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Check that config file was created
    assert!(config_path.exists(), "Config file should be created");

    // Verify the output contains "devboy" as the server name
    assert!(
        stdout.contains("'devboy'") || stdout.contains("\"devboy\""),
        "Output should contain 'devboy' as the default server name: {}",
        stdout
    );
}

#[test]
fn test_init_with_kimi_creates_kimi_mcp_json_with_custom_name() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let kimi_json_path = temp_dir.path().join(".kimi").join("mcp.json");

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "custom-mcp-server",
            "--kimi",
        ])
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    // Verify output contains the custom server name
    assert!(
        stdout.contains("custom-mcp-server"),
        "Output should contain custom server name: {}",
        stdout
    );

    // Check that .kimi/mcp.json was created
    assert!(kimi_json_path.exists(), ".kimi/mcp.json should be created");

    let kimi_content = fs::read_to_string(&kimi_json_path).unwrap();
    let kimi_config: serde_json::Value = serde_json::from_str(&kimi_content).unwrap();

    assert!(
        kimi_config["mcpServers"]["custom-mcp-server"].is_object(),
        "MCP server should be registered with custom name 'custom-mcp-server'. Config: {}",
        kimi_content
    );

    // Verify "devboy" is NOT registered (when using custom name)
    assert!(
        kimi_config["mcpServers"]["devboy"].is_null(),
        "MCP server should NOT be registered as 'devboy' when --proxy-name is provided"
    );
}

#[test]
fn test_init_with_kimi_preserves_existing_mcp_servers() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let kimi_dir = temp_dir.path().join(".kimi");
    let kimi_json_path = kimi_dir.join("mcp.json");

    // Create existing Kimi config with another MCP server
    fs::create_dir_all(&kimi_dir).unwrap();
    let existing_config = r#"{
        "mcpServers": {
            "existing-server": {
                "command": "some-other-cmd",
                "args": ["arg1", "arg2"]
            }
        },
        "someOtherSetting": "value"
    }"#;
    fs::write(&kimi_json_path, existing_config).unwrap();

    let output = Command::new(devboy_bin())
        .args([
            "init",
            "--yes",
            "--proxy",
            "https://example.com/mcp",
            "--proxy-name",
            "new-server",
            "--kimi",
        ])
        .env("DEVBOY_SKIP_KEYCHAIN", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    let kimi_content = fs::read_to_string(&kimi_json_path).unwrap();
    let kimi_config: serde_json::Value = serde_json::from_str(&kimi_content).unwrap();

    // Verify existing global MCP server is preserved
    assert!(
        kimi_config["mcpServers"]["existing-server"].is_object(),
        "Existing MCP server should be preserved"
    );
    assert_eq!(
        kimi_config["mcpServers"]["existing-server"]["command"], "some-other-cmd",
        "Existing server command should be unchanged"
    );

    // Verify other settings are preserved
    assert_eq!(
        kimi_config["someOtherSetting"], "value",
        "Other settings should be preserved"
    );

    // Verify new server is added
    assert!(
        kimi_config["mcpServers"]["new-server"].is_object(),
        "New MCP server should be added. Config: {}",
        kimi_content
    );
}

// ==========================================================================
// Codex CLI registration tests
// ==========================================================================

#[test]
fn test_init_codex_cli_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--codex-cli"),
        "Help should mention --codex-cli flag"
    );
    assert!(
        stdout.contains("in Codex CLI"),
        "Help should describe --codex-cli flag"
    );
}

#[test]
fn test_init_with_codex_cli_creates_config() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let fake_home = TempDir::new().unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--codex-cli"])
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        .env("DEVBOY_NO_NATIVE_MCP", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

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

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );
    assert!(
        stdout.contains("'devboy'") || stdout.contains("\"devboy\""),
        "Output should contain 'devboy' as the default server name: {}",
        stdout
    );

    // Check fallback TOML config was created
    let codex_toml = fake_home.path().join(".codex").join("config.toml");
    if codex_toml.exists() {
        let content = fs::read_to_string(&codex_toml).unwrap();
        assert!(
            content.contains("[mcp_servers.devboy]"),
            "Codex config should contain devboy MCP server"
        );
    }
}

// ==========================================================================
// Copilot CLI registration tests
// ==========================================================================

#[test]
fn test_init_copilot_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--copilot"),
        "Help should mention --copilot flag"
    );
    assert!(
        stdout.contains("in Copilot CLI"),
        "Help should describe --copilot flag"
    );
}

#[test]
fn test_init_with_copilot_creates_config() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");
    let fake_home = TempDir::new().unwrap();

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--copilot"])
        .env("HOME", fake_home.path())
        .env("USERPROFILE", fake_home.path())
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    let copilot_json = fake_home.path().join(".copilot").join("mcp-config.json");

    // On Windows, dirs::home_dir() may use the real home directory even when
    // USERPROFILE is overridden, so we only assert file contents when the
    // fallback path was written to our fake home.
    if copilot_json.exists() {
        let content = fs::read_to_string(&copilot_json).unwrap();
        let config: serde_json::Value = serde_json::from_str(&content).unwrap();

        assert!(
            config["mcpServers"]["devboy"].is_object(),
            "MCP server should be registered"
        );
        assert_eq!(config["mcpServers"]["devboy"]["type"], "local");
        assert_eq!(config["mcpServers"]["devboy"]["tools"][0], "*");
    }
}

// ==========================================================================
// Gemini CLI registration tests
// ==========================================================================

#[test]
fn test_init_gemini_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--gemini"),
        "Help should mention --gemini flag"
    );
    assert!(
        stdout.contains("in Gemini CLI"),
        "Help should describe --gemini flag"
    );
}

#[test]
fn test_init_with_gemini_creates_config() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--gemini"])
        .env("DEVBOY_NO_NATIVE_MCP", "1")
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    let gemini_json = temp_dir.path().join(".gemini").join("settings.json");
    assert!(gemini_json.exists(), "Gemini config should be created");

    let content = fs::read_to_string(&gemini_json).unwrap();
    let config: serde_json::Value = serde_json::from_str(&content).unwrap();

    assert!(
        config["mcpServers"]["devboy"].is_object(),
        "MCP server should be registered"
    );
    assert_eq!(config["mcpServers"]["devboy"]["trust"], true);
}

// ==========================================================================
// OpenCode registration tests
// ==========================================================================

#[test]
fn test_init_opencode_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--opencode"),
        "Help should mention --opencode flag"
    );
    assert!(
        stdout.contains("in OpenCode"),
        "Help should describe --opencode flag"
    );
}

#[test]
fn test_init_with_opencode_creates_config() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--opencode"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    let opencode_json = temp_dir.path().join("opencode.json");
    assert!(opencode_json.exists(), "OpenCode config should be created");

    let content = fs::read_to_string(&opencode_json).unwrap();
    let config: serde_json::Value = serde_json::from_str(&content).unwrap();

    assert!(
        config["mcp"]["devboy"].is_object(),
        "MCP server should be registered"
    );
    assert_eq!(config["mcp"]["devboy"]["type"], "local");
}

// ==========================================================================
// ForgeCode registration tests
// ==========================================================================

#[test]
fn test_init_forge_flag_help_shows_option() {
    let output = Command::new(devboy_bin())
        .args(["init", "--help"])
        .output()
        .expect("Failed to execute command");

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

    assert!(output.status.success());
    assert!(
        stdout.contains("--forge"),
        "Help should mention --forge flag"
    );
    assert!(
        stdout.contains("in ForgeCode"),
        "Help should describe --forge flag"
    );
}

#[test]
fn test_init_with_forge_creates_config() {
    let temp_dir = create_temp_git_repo("git@github.com:owner/repo.git");

    let output = Command::new(devboy_bin())
        .args(["init", "--yes", "--forge"])
        .current_dir(temp_dir.path())
        .output()
        .expect("Failed to execute command");

    assert!(
        output.status.success(),
        "Command should succeed: stderr={}",
        String::from_utf8_lossy(&output.stderr)
    );

    let forge_json = temp_dir.path().join(".mcp.json");
    assert!(forge_json.exists(), "ForgeCode config should be created");

    let content = fs::read_to_string(&forge_json).unwrap();
    let config: serde_json::Value = serde_json::from_str(&content).unwrap();

    assert!(
        config["mcpServers"]["devboy"].is_object(),
        "MCP server should be registered"
    );
}