sublime_pkg_tools 0.0.27

Package and version management toolkit for Node.js projects with changeset support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
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
//! Integration tests for registry client using mock HTTP server.
//!
//! **What**: Comprehensive tests for RegistryClient functionality using mockito
//! to simulate NPM registry responses.
//!
//! **How**: Sets up mock HTTP endpoints that return realistic NPM registry responses,
//! then validates client behavior for success cases, error cases, retries, and edge cases.
//!
//! **Why**: To ensure the registry client handles all scenarios correctly without
//! depending on external NPM registry availability or network conditions.

#[cfg(test)]
#[allow(clippy::expect_used)]
#[allow(clippy::unwrap_used)]
#[allow(clippy::field_reassign_with_default)]
#[allow(clippy::panic)]
mod integration_tests {
    use crate::config::RegistryConfig;
    use crate::error::UpgradeError;
    use crate::upgrade::registry::npmrc::AuthType;
    use crate::upgrade::{RegistryClient, UpgradeType};
    use mockito::Server;
    use std::path::PathBuf;

    /// Helper to create a test RegistryConfig with .npmrc reading disabled.
    fn test_config() -> RegistryConfig {
        let mut config = RegistryConfig::default();
        config.read_npmrc = false;
        config
    }

    /// Helper to create a mock registry response for a package.
    fn create_package_response(
        name: &str,
        versions: &[&str],
        latest: &str,
        deprecated: Option<&str>,
    ) -> serde_json::Value {
        let mut versions_map = serde_json::Map::new();

        for version in versions {
            let mut version_obj = serde_json::Map::new();
            if let Some(dep_msg) = deprecated
                && *version == latest
            {
                version_obj.insert("deprecated".to_string(), serde_json::json!(dep_msg));
            }
            versions_map.insert(version.to_string(), serde_json::json!(version_obj));
        }

        let mut dist_tags = serde_json::Map::new();
        dist_tags.insert("latest".to_string(), serde_json::json!(latest));

        let mut time = serde_json::Map::new();
        time.insert("created".to_string(), serde_json::json!("2020-01-01T00:00:00.000Z"));
        time.insert("modified".to_string(), serde_json::json!("2024-01-01T00:00:00.000Z"));
        for version in versions {
            time.insert(version.to_string(), serde_json::json!("2023-01-01T00:00:00.000Z"));
        }

        let mut repo = serde_json::Map::new();
        repo.insert("type".to_string(), serde_json::json!("git"));
        repo.insert("url".to_string(), serde_json::json!("https://github.com/test/repo.git"));

        serde_json::json!({
            "name": name,
            "versions": versions_map,
            "dist-tags": dist_tags,
            "time": time,
            "repository": repo,
        })
    }

    #[tokio::test]
    async fn test_get_package_info_success() {
        let mut server = Server::new_async().await;

        let response = create_package_response(
            "express",
            &["4.17.0", "4.17.1", "4.18.0", "4.18.1"],
            "4.18.1",
            None,
        );

        let mock = server
            .mock("GET", "/express")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata =
            client.get_package_info("express").await.expect("Failed to get package info");

        mock.assert_async().await;

        assert_eq!(metadata.name, "express");
        assert_eq!(metadata.latest, "4.18.1");
        assert_eq!(metadata.versions.len(), 4);
        assert!(metadata.versions.contains(&"4.18.1".to_string()));
        assert!(!metadata.is_deprecated());
        assert!(metadata.repository.is_some());
    }

    #[tokio::test]
    async fn test_get_package_info_deprecated() {
        let mut server = Server::new_async().await;

        let response = create_package_response(
            "left-pad",
            &["1.0.0", "1.1.0"],
            "1.1.0",
            Some("This package is deprecated. Use leftpad instead."),
        );

        let mock = server
            .mock("GET", "/left-pad")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata =
            client.get_package_info("left-pad").await.expect("Failed to get package info");

        mock.assert_async().await;

        assert_eq!(metadata.name, "left-pad");
        assert!(metadata.is_deprecated());
        assert_eq!(
            metadata.deprecation_message(),
            Some("This package is deprecated. Use leftpad instead.")
        );
    }

    #[tokio::test]
    async fn test_get_package_info_not_found() {
        let mut server = Server::new_async().await;

        let mock = server
            .mock("GET", "/nonexistent-package")
            .with_status(404)
            .with_body("Not found")
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let result = client.get_package_info("nonexistent-package").await;

        mock.assert_async().await;

        assert!(result.is_err());
        match result.unwrap_err() {
            UpgradeError::PackageNotFound { package, .. } => {
                assert_eq!(package, "nonexistent-package");
            }
            e => panic!("Expected PackageNotFound, got {:?}", e),
        }
    }

    #[tokio::test]
    async fn test_get_package_info_authentication_failed() {
        let mut server = Server::new_async().await;

        let mock = server
            .mock("GET", "/@private/package")
            .with_status(401)
            .with_body("Unauthorized")
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let result = client.get_package_info("@private/package").await;

        mock.assert_async().await;

        assert!(result.is_err());
        match result.unwrap_err() {
            UpgradeError::AuthenticationFailed { .. } => {}
            e => panic!("Expected AuthenticationFailed, got {:?}", e),
        }
    }

    #[tokio::test]
    async fn test_get_package_info_with_authentication() {
        let mut server = Server::new_async().await;

        let response = create_package_response("@myorg/utils", &["1.0.0"], "1.0.0", None);

        let mock = server
            .mock("GET", "/@myorg/utils")
            .match_header("authorization", "Bearer test-token-123")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();
        config.auth_tokens.insert(server.url(), "test-token-123".to_string());

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata =
            client.get_package_info("@myorg/utils").await.expect("Failed to get package info");

        mock.assert_async().await;

        assert_eq!(metadata.name, "@myorg/utils");
        assert_eq!(metadata.latest, "1.0.0");
    }

    #[tokio::test]
    async fn test_get_package_info_scoped_registry() {
        let mut server = Server::new_async().await;

        let response = create_package_response("@myorg/package", &["2.0.0"], "2.0.0", None);

        let mock = server
            .mock("GET", "/@myorg/package")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.scoped_registries.insert("myorg".to_string(), server.url());

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata =
            client.get_package_info("@myorg/package").await.expect("Failed to get package info");

        mock.assert_async().await;

        assert_eq!(metadata.name, "@myorg/package");
    }

    #[tokio::test]
    async fn test_get_package_info_server_error() {
        let mut server = Server::new_async().await;

        // Test 500 internal server error handling
        // The retry middleware will retry on 500 errors, so we expect multiple requests
        let mock = server
            .mock("GET", "/error-package")
            .with_status(500)
            .with_body("Internal Server Error")
            .expect_at_least(1) // Allow retries
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();
        config.retry_attempts = 2; // Limit retries for faster test

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let result = client.get_package_info("error-package").await;

        mock.assert_async().await;

        assert!(result.is_err());
        match result.unwrap_err() {
            UpgradeError::RegistryError { package, .. } => {
                assert_eq!(package, "error-package");
            }
            e => panic!("Expected RegistryError, got {:?}", e),
        }
    }

    #[tokio::test]
    async fn test_get_package_info_invalid_json() {
        let mut server = Server::new_async().await;

        let mock = server
            .mock("GET", "/broken-package")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body("{ invalid json }")
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let result = client.get_package_info("broken-package").await;

        mock.assert_async().await;

        assert!(result.is_err());
        match result.unwrap_err() {
            UpgradeError::InvalidResponse { package, .. } => {
                assert_eq!(package, "broken-package");
            }
            e => panic!("Expected InvalidResponse, got {:?}", e),
        }
    }

    #[tokio::test]
    async fn test_get_package_info_missing_latest_tag() {
        let mut server = Server::new_async().await;

        let response = serde_json::json!({
            "name": "no-latest",
            "versions": {
                "1.0.0": {}
            },
            "dist-tags": {},
            "time": {}
        });

        let mock = server
            .mock("GET", "/no-latest")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let result = client.get_package_info("no-latest").await;

        mock.assert_async().await;

        assert!(result.is_err());
        match result.unwrap_err() {
            UpgradeError::InvalidResponse { package, reason } => {
                assert_eq!(package, "no-latest");
                assert!(reason.contains("latest"));
            }
            e => panic!("Expected InvalidResponse, got {:?}", e),
        }
    }

    #[tokio::test]
    async fn test_get_latest_version() {
        let mut server = Server::new_async().await;

        let response =
            create_package_response("react", &["17.0.0", "18.0.0", "18.2.0"], "18.2.0", None);

        let mock = server
            .mock("GET", "/react")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let latest =
            client.get_latest_version("react").await.expect("Failed to get latest version");

        mock.assert_async().await;

        assert_eq!(latest, "18.2.0");
    }

    #[tokio::test]
    async fn test_retry_on_transient_failure() {
        let mut server = Server::new_async().await;

        let response = create_package_response("retry-test", &["1.0.0"], "1.0.0", None);

        // First request fails with 500
        let mock1 = server
            .mock("GET", "/retry-test")
            .with_status(500)
            .with_body("Internal Server Error")
            .expect(1)
            .create_async()
            .await;

        // Second request succeeds
        let mock2 = server
            .mock("GET", "/retry-test")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .expect(1)
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();
        config.retry_attempts = 3;
        config.retry_delay_ms = 100;

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata = client
            .get_package_info("retry-test")
            .await
            .expect("Failed to get package info after retry");

        mock1.assert_async().await;
        mock2.assert_async().await;

        assert_eq!(metadata.name, "retry-test");
        assert_eq!(metadata.latest, "1.0.0");
    }

    #[tokio::test]
    async fn test_compare_versions_all_types() {
        let config = test_config();
        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        // Major upgrade
        let upgrade = client
            .compare_versions("test-package", "1.2.3", "2.0.0")
            .expect("Failed to compare versions");
        assert_eq!(upgrade, UpgradeType::Major);
        assert!(upgrade.is_breaking());
        assert!(!upgrade.is_safe());
        assert_eq!(upgrade.priority(), 3);

        // Minor upgrade
        let upgrade = client
            .compare_versions("test-package", "1.2.3", "1.3.0")
            .expect("Failed to compare versions");
        assert_eq!(upgrade, UpgradeType::Minor);
        assert!(!upgrade.is_breaking());
        assert!(upgrade.is_safe());
        assert_eq!(upgrade.priority(), 2);

        // Patch upgrade
        let upgrade = client
            .compare_versions("test-package", "1.2.3", "1.2.4")
            .expect("Failed to compare versions");
        assert_eq!(upgrade, UpgradeType::Patch);
        assert!(!upgrade.is_breaking());
        assert!(upgrade.is_safe());
        assert_eq!(upgrade.priority(), 1);
    }

    #[tokio::test]
    async fn test_package_metadata_helpers() {
        let mut server = Server::new_async().await;

        let response = create_package_response("test-pkg", &["1.0.0", "2.0.0"], "2.0.0", None);

        let mock = server
            .mock("GET", "/test-pkg")
            .with_status(200)
            .with_header("content-type", "application/json")
            .with_body(response.to_string())
            .create_async()
            .await;

        let mut config = test_config();
        config.default_registry = server.url();

        let client = RegistryClient::new(&PathBuf::from("."), config)
            .await
            .expect("Failed to create client");

        let metadata =
            client.get_package_info("test-pkg").await.expect("Failed to get package info");

        mock.assert_async().await;

        assert!(metadata.created_at().is_some());
        assert!(metadata.modified_at().is_some());
        assert!(metadata.version_published_at("1.0.0").is_some());
        assert!(metadata.version_published_at("nonexistent").is_none());
    }

    #[test]
    fn test_upgrade_type_display() {
        assert_eq!(UpgradeType::Major.to_string(), "major");
        assert_eq!(UpgradeType::Minor.to_string(), "minor");
        assert_eq!(UpgradeType::Patch.to_string(), "patch");
    }

    #[test]
    fn test_upgrade_type_as_str() {
        assert_eq!(UpgradeType::Major.as_str(), "major");
        assert_eq!(UpgradeType::Minor.as_str(), "minor");
        assert_eq!(UpgradeType::Patch.as_str(), "patch");
    }

    #[test]
    fn test_upgrade_type_priority_ordering() {
        assert!(UpgradeType::Major.priority() > UpgradeType::Minor.priority());
        assert!(UpgradeType::Minor.priority() > UpgradeType::Patch.priority());
    }

    #[tokio::test]
    async fn test_compare_versions_major() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "1.2.3", "2.0.0");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), UpgradeType::Major);
    }

    #[tokio::test]
    async fn test_compare_versions_minor() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "1.2.3", "1.3.0");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), UpgradeType::Minor);
    }

    #[tokio::test]
    async fn test_compare_versions_patch() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "1.2.3", "1.2.4");
        assert!(result.is_ok());
        assert_eq!(result.unwrap(), UpgradeType::Patch);
    }

    #[tokio::test]
    async fn test_compare_versions_invalid_current() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "invalid", "1.2.3");
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_compare_versions_invalid_latest() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "1.2.3", "invalid");
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_compare_versions_not_upgrade() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let result = client.compare_versions("test-package", "2.0.0", "1.0.0");
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_error_messages_contain_package_name() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        // Test invalid current version includes package name
        let result = client.compare_versions("my-package", "invalid-version", "1.2.3");
        assert!(result.is_err());
        let err = result.unwrap_err();
        let err_msg = format!("{}", err);
        assert!(
            err_msg.contains("my-package"),
            "Error message should contain package name: {}",
            err_msg
        );

        // Test invalid latest version includes package name
        let result = client.compare_versions("another-package", "1.2.3", "not-a-version");
        assert!(result.is_err());
        let err = result.unwrap_err();
        let err_msg = format!("{}", err);
        assert!(
            err_msg.contains("another-package"),
            "Error message should contain package name: {}",
            err_msg
        );

        // Test version comparison failed includes package name
        let result = client.compare_versions("test-pkg", "2.0.0", "1.0.0");
        assert!(result.is_err());
        let err = result.unwrap_err();
        let err_msg = format!("{}", err);
        assert!(
            err_msg.contains("test-pkg"),
            "Error message should contain package name: {}",
            err_msg
        );
    }

    #[tokio::test]
    async fn test_resolve_registry_url_default() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config.clone())
            .await
            .expect("Failed to create client");

        let url = client.resolve_registry_url("lodash");
        assert_eq!(url, config.default_registry);
    }

    #[tokio::test]
    async fn test_resolve_registry_url_scoped() {
        let mut config = test_config();
        config.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let url = client.resolve_registry_url("@myorg/package");
        assert_eq!(url, "https://npm.myorg.com");
    }

    #[tokio::test]
    async fn test_resolve_registry_url_scoped_fallback() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config.clone())
            .await
            .expect("Failed to create client");

        // Scoped package but no scoped registry configured
        let url = client.resolve_registry_url("@unknown/package");
        assert_eq!(url, config.default_registry);
    }

    #[tokio::test]
    async fn test_resolve_auth_token_exact_match() {
        let mut config = test_config();
        config.auth_tokens.insert("https://npm.myorg.com".to_string(), "test-token".to_string());

        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let cred = client.resolve_auth_token("https://npm.myorg.com");
        assert!(cred.is_some());
        let cred = cred.unwrap();
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "test-token");
    }

    #[tokio::test]
    async fn test_resolve_auth_token_trailing_slash() {
        let mut config = test_config();
        config.auth_tokens.insert("https://npm.myorg.com".to_string(), "test-token".to_string());

        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let cred = client.resolve_auth_token("https://npm.myorg.com/");
        assert!(cred.is_some());
        let cred = cred.unwrap();
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "test-token");
    }

    #[tokio::test]
    async fn test_resolve_auth_token_no_match() {
        let config = test_config();
        let client = RegistryClient::new(std::path::Path::new("."), config)
            .await
            .expect("Failed to create client");

        let cred = client.resolve_auth_token("https://unknown.com");
        assert_eq!(cred, None);
    }
}

// ============================================================================
// Npmrc Tests
// ============================================================================

#[cfg(test)]
#[allow(clippy::expect_used)]
#[allow(clippy::field_reassign_with_default)]
mod npmrc_tests {
    use crate::upgrade::registry::npmrc::{AuthCredential, AuthType, NpmrcConfig};
    use std::collections::HashMap;
    use std::path::{Path, PathBuf};
    use sublime_standard_tools::filesystem::AsyncFileSystem;

    /// Mock filesystem for testing .npmrc parsing without actual file I/O.
    struct MockFileSystem {
        files: HashMap<PathBuf, String>,
    }

    impl MockFileSystem {
        fn new() -> Self {
            Self { files: HashMap::new() }
        }

        fn add_file(&mut self, path: impl Into<PathBuf>, content: impl Into<String>) {
            self.files.insert(path.into(), content.into());
        }
    }

    #[async_trait::async_trait]
    impl AsyncFileSystem for MockFileSystem {
        async fn read_file(
            &self,
            path: &Path,
        ) -> Result<Vec<u8>, sublime_standard_tools::error::Error> {
            self.files.get(path).map(|s| s.as_bytes().to_vec()).ok_or_else(|| {
                sublime_standard_tools::error::Error::FileSystem(
                    sublime_standard_tools::error::FileSystemError::NotFound {
                        path: path.to_path_buf(),
                    },
                )
            })
        }

        async fn write_file(
            &self,
            _path: &Path,
            _data: &[u8],
        ) -> Result<(), sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Write not needed for tests".to_string(),
                },
            ))
        }

        async fn read_file_string(
            &self,
            path: &Path,
        ) -> Result<String, sublime_standard_tools::error::Error> {
            self.files.get(path).cloned().ok_or_else(|| {
                sublime_standard_tools::error::Error::FileSystem(
                    sublime_standard_tools::error::FileSystemError::NotFound {
                        path: path.to_path_buf(),
                    },
                )
            })
        }

        async fn write_file_string(
            &self,
            _path: &Path,
            _content: &str,
        ) -> Result<(), sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Write not needed for tests".to_string(),
                },
            ))
        }

        async fn create_dir_all(
            &self,
            _path: &Path,
        ) -> Result<(), sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Create dir not needed for tests".to_string(),
                },
            ))
        }

        async fn remove(&self, _path: &Path) -> Result<(), sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Remove not needed for tests".to_string(),
                },
            ))
        }

        async fn exists(&self, path: &Path) -> bool {
            self.files.contains_key(path)
        }

        async fn read_dir(
            &self,
            _path: &Path,
        ) -> Result<Vec<PathBuf>, sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Read dir not needed for tests".to_string(),
                },
            ))
        }

        async fn walk_dir(
            &self,
            _path: &Path,
        ) -> Result<Vec<PathBuf>, sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Walk dir not needed for tests".to_string(),
                },
            ))
        }

        async fn metadata(
            &self,
            _path: &Path,
        ) -> Result<std::fs::Metadata, sublime_standard_tools::error::Error> {
            Err(sublime_standard_tools::error::Error::FileSystem(
                sublime_standard_tools::error::FileSystemError::Io {
                    path: _path.to_path_buf(),
                    message: "Metadata not needed for tests".to_string(),
                },
            ))
        }
    }

    #[tokio::test]
    async fn test_parse_empty_npmrc() {
        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse empty file");

        assert!(config.registry.is_none());
        assert!(config.scoped_registries.is_empty());
        assert!(config.auth_tokens.is_empty());
        assert!(config.other.is_empty());
    }

    #[tokio::test]
    async fn test_parse_default_registry() {
        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "registry=https://registry.npmjs.org\n");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse registry");

        assert_eq!(config.registry, Some("https://registry.npmjs.org".to_string()));
    }

    #[tokio::test]
    async fn test_parse_scoped_registry() {
        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "@myorg:registry=https://npm.myorg.com\n");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse scoped registry");

        assert_eq!(
            config.scoped_registries.get("myorg"),
            Some(&"https://npm.myorg.com".to_string())
        );
    }

    #[tokio::test]
    async fn test_parse_multiple_scoped_registries() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
@myorg:registry=https://npm.myorg.com
@internal:registry=https://registry.internal.corp
@external:registry=https://npm.external.com
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse multiple scoped registries");

        assert_eq!(config.scoped_registries.len(), 3);
        assert_eq!(
            config.scoped_registries.get("myorg"),
            Some(&"https://npm.myorg.com".to_string())
        );
        assert_eq!(
            config.scoped_registries.get("internal"),
            Some(&"https://registry.internal.corp".to_string())
        );
        assert_eq!(
            config.scoped_registries.get("external"),
            Some(&"https://npm.external.com".to_string())
        );
    }

    #[tokio::test]
    async fn test_parse_auth_token() {
        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "//npm.myorg.com/:_authToken=npm_AbCdEf123456\n");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse auth token");

        let cred = config.auth_tokens.get("npm.myorg.com").expect("Should have auth token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "npm_AbCdEf123456");
    }

    #[tokio::test]
    async fn test_parse_auth_token_various_formats() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
//npm.myorg.com/:_authToken=token1
registry.npmjs.org:_authToken=token2
npm.internal.com/:_authToken=token3
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse various auth token formats");

        let cred1 = config.auth_tokens.get("npm.myorg.com").expect("Should have token1");
        assert_eq!(cred1.auth_type, AuthType::Bearer);
        assert_eq!(cred1.value, "token1");

        let cred2 = config.auth_tokens.get("registry.npmjs.org").expect("Should have token2");
        assert_eq!(cred2.auth_type, AuthType::Bearer);
        assert_eq!(cred2.value, "token2");

        let cred3 = config.auth_tokens.get("npm.internal.com").expect("Should have token3");
        assert_eq!(cred3.auth_type, AuthType::Bearer);
        assert_eq!(cred3.value, "token3");
    }

    #[tokio::test]
    async fn test_parse_auth_base64() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            "//npm.myorg.com/:_auth=TUlHUkFNTzpjbVZtZEd0dU9qQXhPakF3TURBd01EQXdNREE2U1ZOVVpIcHFNR1V3UkRCbk5uWlJUMDR4YUV4aVZIVlpWbkl3\n",
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse _auth token");

        let cred = config.auth_tokens.get("npm.myorg.com").expect("Should have _auth token");
        assert_eq!(cred.auth_type, AuthType::Basic);
        assert_eq!(
            cred.value,
            "TUlHUkFNTzpjbVZtZEd0dU9qQXhPakF3TURBd01EQXdNREE2U1ZOVVpIcHFNR1V3UkRCbk5uWlJUMDR4YUV4aVZIVlpWbkl3"
        );
    }

    #[tokio::test]
    async fn test_parse_auth_and_authtoken_mixed() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
//npm.myorg.com/:_auth=base64token
//registry.npmjs.org/:_authToken=bearer_token
//internal.corp.com/:_auth=another_base64
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse mixed _auth and _authToken formats");

        let cred1 = config.auth_tokens.get("npm.myorg.com").expect("Should have _auth");
        assert_eq!(cred1.auth_type, AuthType::Basic);
        assert_eq!(cred1.value, "base64token");

        let cred2 = config.auth_tokens.get("registry.npmjs.org").expect("Should have _authToken");
        assert_eq!(cred2.auth_type, AuthType::Bearer);
        assert_eq!(cred2.value, "bearer_token");

        let cred3 = config.auth_tokens.get("internal.corp.com").expect("Should have _auth");
        assert_eq!(cred3.auth_type, AuthType::Basic);
        assert_eq!(cred3.value, "another_base64");
    }

    #[tokio::test]
    async fn test_parse_comments() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
# This is a comment
registry=https://registry.npmjs.org

// Another comment style
@myorg:registry=https://npm.myorg.com
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse with comments");

        assert_eq!(config.registry, Some("https://registry.npmjs.org".to_string()));
        assert_eq!(
            config.scoped_registries.get("myorg"),
            Some(&"https://npm.myorg.com".to_string())
        );
    }

    #[tokio::test]
    async fn test_parse_inline_comments() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            "registry=https://registry.npmjs.org # Default registry\n",
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse with inline comments");

        assert_eq!(config.registry, Some("https://registry.npmjs.org".to_string()));
    }

    #[tokio::test]
    async fn test_parse_with_whitespace() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
  registry  =  https://registry.npmjs.org

  @myorg:registry  =  https://npm.myorg.com
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse with whitespace");

        assert_eq!(config.registry, Some("https://registry.npmjs.org".to_string()));
        assert_eq!(
            config.scoped_registries.get("myorg"),
            Some(&"https://npm.myorg.com".to_string())
        );
    }

    #[tokio::test]
    async fn test_parse_other_properties() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
save-exact=true
legacy-peer-deps=true
package-lock=false
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse other properties");

        assert_eq!(config.other.get("save-exact"), Some(&"true".to_string()));
        assert_eq!(config.other.get("legacy-peer-deps"), Some(&"true".to_string()));
        assert_eq!(config.other.get("package-lock"), Some(&"false".to_string()));
    }

    #[tokio::test]
    async fn test_environment_variable_substitution() {
        unsafe {
            std::env::set_var("TEST_NPM_TOKEN", "secret_token_123");
        }

        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "//npm.myorg.com/:_authToken=${TEST_NPM_TOKEN}\n");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse with env var substitution");

        let cred = config.auth_tokens.get("npm.myorg.com").expect("Should have substituted token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "secret_token_123");

        unsafe {
            std::env::remove_var("TEST_NPM_TOKEN");
        }
    }

    #[tokio::test]
    async fn test_environment_variable_not_set() {
        let mut fs = MockFileSystem::new();
        fs.add_file("/workspace/.npmrc", "//npm.myorg.com/:_authToken=${NONEXISTENT_VAR}\n");

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse even if env var not set");

        // Should keep the placeholder if env var not set
        let cred = config.auth_tokens.get("npm.myorg.com").expect("Should have placeholder");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "${NONEXISTENT_VAR}");
    }

    #[tokio::test]
    async fn test_resolve_registry_scoped_package() {
        let mut config = NpmrcConfig::default();
        config.registry = Some("https://registry.npmjs.org".to_string());
        config.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        assert_eq!(config.resolve_registry("@myorg/package"), Some("https://npm.myorg.com"));
    }

    #[tokio::test]
    async fn test_resolve_registry_unscoped_package() {
        let mut config = NpmrcConfig::default();
        config.registry = Some("https://registry.npmjs.org".to_string());
        config.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        assert_eq!(config.resolve_registry("lodash"), Some("https://registry.npmjs.org"));
    }

    #[tokio::test]
    async fn test_resolve_registry_unknown_scope() {
        let mut config = NpmrcConfig::default();
        config.registry = Some("https://registry.npmjs.org".to_string());
        config.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        // Unknown scope falls back to default registry
        assert_eq!(config.resolve_registry("@unknown/package"), Some("https://registry.npmjs.org"));
    }

    #[tokio::test]
    async fn test_resolve_registry_no_default() {
        let mut config = NpmrcConfig::default();
        config.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        assert_eq!(config.resolve_registry("lodash"), None);
    }

    #[tokio::test]
    async fn test_get_auth_token_exact_match() {
        let mut config = NpmrcConfig::default();
        config.auth_tokens.insert(
            "npm.myorg.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        let cred = config.get_auth_token("npm.myorg.com").expect("Should find token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "token123");
    }

    #[tokio::test]
    async fn test_get_auth_token_with_protocol() {
        let mut config = NpmrcConfig::default();
        config.auth_tokens.insert(
            "npm.myorg.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        let cred = config.get_auth_token("https://npm.myorg.com").expect("Should find token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "token123");
    }

    #[tokio::test]
    async fn test_get_auth_token_with_trailing_slash() {
        let mut config = NpmrcConfig::default();
        config.auth_tokens.insert(
            "npm.myorg.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        let cred = config.get_auth_token("https://npm.myorg.com/").expect("Should find token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "token123");
    }

    #[tokio::test]
    async fn test_get_auth_token_stored_with_protocol() {
        let mut config = NpmrcConfig::default();
        config.auth_tokens.insert(
            "//npm.myorg.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        let cred = config.get_auth_token("https://npm.myorg.com").expect("Should find token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "token123");
    }

    #[tokio::test]
    async fn test_get_auth_token_not_found() {
        let mut config = NpmrcConfig::default();
        config.auth_tokens.insert(
            "npm.myorg.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        assert_eq!(config.get_auth_token("npm.other.com"), None);
    }

    #[tokio::test]
    async fn test_merge_configs() {
        let mut base = NpmrcConfig::default();
        base.registry = Some("https://registry.npmjs.org".to_string());
        base.scoped_registries.insert("myorg".to_string(), "https://npm.myorg.com".to_string());

        let mut override_config = NpmrcConfig::default();
        override_config.registry = Some("https://custom.registry.com".to_string());
        override_config
            .scoped_registries
            .insert("internal".to_string(), "https://npm.internal.com".to_string());
        override_config.auth_tokens.insert(
            "npm.internal.com".to_string(),
            AuthCredential { auth_type: AuthType::Bearer, value: "token123".to_string() },
        );

        base.merge_with(override_config);

        // Registry should be overridden
        assert_eq!(base.registry, Some("https://custom.registry.com".to_string()));

        // Scoped registries should be merged
        assert_eq!(base.scoped_registries.len(), 2);
        assert_eq!(base.scoped_registries.get("myorg"), Some(&"https://npm.myorg.com".to_string()));
        assert_eq!(
            base.scoped_registries.get("internal"),
            Some(&"https://npm.internal.com".to_string())
        );

        // Auth tokens should be added
        let cred = base.auth_tokens.get("npm.internal.com").expect("Should have merged token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "token123");
    }

    #[tokio::test]
    async fn test_complete_npmrc_example() {
        let mut fs = MockFileSystem::new();
        fs.add_file(
            "/workspace/.npmrc",
            r#"
# Default npm registry
registry=https://registry.npmjs.org

# Scoped registries
@myorg:registry=https://npm.myorg.com
@internal:registry=https://registry.internal.corp

# Authentication tokens
//npm.myorg.com/:_authToken=npm_secret_token_123
//registry.internal.corp/:_authToken=internal_token_456

# Other settings
save-exact=true
legacy-peer-deps=false
"#,
        );

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should parse complete example");

        // Verify default registry
        assert_eq!(config.registry, Some("https://registry.npmjs.org".to_string()));

        // Verify scoped registries
        assert_eq!(config.scoped_registries.len(), 2);
        assert_eq!(
            config.scoped_registries.get("myorg"),
            Some(&"https://npm.myorg.com".to_string())
        );
        assert_eq!(
            config.scoped_registries.get("internal"),
            Some(&"https://registry.internal.corp".to_string())
        );

        // Verify auth tokens
        assert_eq!(config.auth_tokens.len(), 2);

        let cred1 = config.auth_tokens.get("npm.myorg.com").expect("Should have myorg token");
        assert_eq!(cred1.auth_type, AuthType::Bearer);
        assert_eq!(cred1.value, "npm_secret_token_123");

        let cred2 =
            config.auth_tokens.get("registry.internal.corp").expect("Should have internal token");
        assert_eq!(cred2.auth_type, AuthType::Bearer);
        assert_eq!(cred2.value, "internal_token_456");

        // Verify other properties
        assert_eq!(config.other.get("save-exact"), Some(&"true".to_string()));
        assert_eq!(config.other.get("legacy-peer-deps"), Some(&"false".to_string()));

        // Test resolution
        assert_eq!(config.resolve_registry("@myorg/package"), Some("https://npm.myorg.com"));
        assert_eq!(config.resolve_registry("lodash"), Some("https://registry.npmjs.org"));

        let cred =
            config.get_auth_token("https://npm.myorg.com").expect("Should resolve auth token");
        assert_eq!(cred.auth_type, AuthType::Bearer);
        assert_eq!(cred.value, "npm_secret_token_123");
    }

    #[tokio::test]
    async fn test_no_npmrc_file() {
        let fs = MockFileSystem::new();

        let config = NpmrcConfig::from_workspace(Path::new("/workspace"), &fs)
            .await
            .expect("Should succeed with no .npmrc file");

        assert!(config.registry.is_none());
        assert!(config.scoped_registries.is_empty());
        assert!(config.auth_tokens.is_empty());
    }
}