alien-bindings 1.10.6

Alien platform runtime bindings
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
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
#![cfg(test)]

use alien_bindings::{
    traits::{
        ArtifactRegistry, ArtifactRegistryPermissions, AwsCrossAccountAccess, BindingsProviderApi,
        ComputeServiceType, CrossAccountAccess, CrossAccountPermissions, GcpCrossAccountAccess,
    },
    BindingsProvider,
};

#[cfg(feature = "grpc")]
use alien_bindings::{grpc::run_grpc_server, providers::grpc_provider::GrpcBindingsProvider};
use alien_core::bindings::BindingValue;

// Platform-specific providers are now internal implementation details
// The unified BindingsProvider handles routing to appropriate implementations

use async_trait::async_trait;
use base64::{engine::general_purpose::STANDARD as base64_standard, Engine as _};
use rstest::rstest;
use serde_json;
use std::path::PathBuf as StdPathBuf;
use std::sync::Mutex;
use std::{collections::HashMap, env, sync::Arc, time::Duration};
use tempfile::TempDir;
use test_context::AsyncTestContext;
use tokio::net::TcpListener;
use tokio::task::JoinHandle;
use uuid::Uuid;
use workspace_root::get_workspace_root;

#[cfg(feature = "aws")]
use {alien_aws_clients::AwsClientConfig, reqwest::Client};

#[cfg(feature = "gcp")]
use alien_gcp_clients::{artifactregistry::ArtifactRegistryClient, GcpClientConfig};

#[cfg(feature = "azure")]
use alien_azure_clients::{
    containerregistry::{AzureContainerRegistryClient, ContainerRegistryApi},
    AzureClientConfig,
};

const GRPC_BINDING_NAME: &str = "test-grpc-artifact-registry-binding";

fn load_test_env() {
    // Load .env.test from the workspace root
    let root: StdPathBuf = get_workspace_root();
    dotenvy::from_path(root.join(".env.test")).expect("Failed to load .env.test");
}

#[async_trait]
pub trait ArtifactRegistryTestContext: AsyncTestContext + Send + Sync {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry>;
    fn provider_name(&self) -> &'static str;
}

// --- Local Provider Context ---
struct LocalProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
    _temp_dir: TempDir,
    _registry_handle: JoinHandle<()>,
}

impl AsyncTestContext for LocalProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let binding_name = "test-local-artifact-registry";
        let temp_dir = tempfile::tempdir()
            .expect("Failed to create temp dir for local artifact registry test");

        #[cfg(all(feature = "local", unix))]
        {
            // Start a container registry for testing (no auth, matching production behavior)
            use container_registry::ContainerRegistry;

            let mut registry = ContainerRegistry::builder().build_for_testing();

            // Bind to a random port on localhost
            registry.bind(([127, 0, 0, 1], 0).into());
            let running_registry = registry.run_in_background();
            let bound_addr = running_registry.bound_addr();
            let registry_endpoint = format!("localhost:{}", bound_addr.port());

            // Keep the registry running in the background
            let registry_handle = tokio::spawn(async move {
                let _guard = running_registry;
                // Wait for the test to complete
                tokio::time::sleep(Duration::from_secs(300)).await;
            });

            // Set up environment for the provider with registry URL
            let binding = alien_core::bindings::ArtifactRegistryBinding::local(
                registry_endpoint.clone(),
                None,
            );

            let mut env_map: HashMap<String, String> = env::vars().collect();
            let binding_json =
                serde_json::to_string(&binding).expect("Failed to serialize binding");
            env_map.insert(
                alien_core::bindings::binding_env_var_name(binding_name),
                binding_json,
            );
            env_map.insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "local".to_string());

            let provider = Arc::new(
                BindingsProvider::from_env(env_map)
                    .await
                    .expect("Failed to load bindings provider"),
            );
            let artifact_registry = provider
                .load_artifact_registry(binding_name)
                .await
                .unwrap_or_else(|e| {
                    panic!(
                        "Failed to load Local artifact registry for binding '{}' using registry endpoint '{}': {:?}",
                        binding_name, registry_endpoint, e
                    )
                });

            Self {
                artifact_registry,
                _temp_dir: temp_dir,
                _registry_handle: registry_handle,
            }
        }
        #[cfg(all(feature = "local", not(unix)))]
        {
            panic!("Local artifact registry tests require Unix because container-registry uses symlinks");
        }
        #[cfg(not(feature = "local"))]
        {
            panic!("Local feature is required for LocalProviderArtifactRegistryTestContext");
        }
    }

    async fn teardown(self) {
        // Clean up the registry
        self._registry_handle.abort();
    }
}

#[async_trait]
impl ArtifactRegistryTestContext for LocalProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "local"
    }
}

// --- gRPC Provider Context ---
#[cfg(feature = "grpc")]
struct GrpcProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
    _server_handle:
        JoinHandle<Result<(), alien_error::AlienError<alien_bindings::error::ErrorData>>>,
    _temp_data_dir: TempDir,
    _registry_handle: JoinHandle<()>,
}

#[cfg(feature = "grpc")]
impl AsyncTestContext for GrpcProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let temp_data_dir =
            tempfile::tempdir().expect("Failed to create temp dir for gRPC server test");

        #[cfg(all(feature = "local", unix))]
        {
            // Start a container registry for the gRPC server (no auth, matching production behavior)
            use container_registry::ContainerRegistry;

            let mut registry = ContainerRegistry::builder().build_for_testing();

            // Bind to a random port on localhost
            registry.bind(([127, 0, 0, 1], 0).into());
            let running_registry = registry.run_in_background();
            let bound_addr = running_registry.bound_addr();
            let registry_endpoint = format!("localhost:{}", bound_addr.port());

            // Keep the registry running in the background
            let registry_handle = tokio::spawn(async move {
                let _guard = running_registry;
                // Wait for the test to complete
                tokio::time::sleep(Duration::from_secs(300)).await;
            });

            // Set up environment for the gRPC server with registry URL
            let server_binding = alien_core::bindings::ArtifactRegistryBinding::local(
                registry_endpoint.clone(),
                None,
            );

            let mut server_provider_env_map: HashMap<String, String> = env::vars().collect();
            let server_binding_json =
                serde_json::to_string(&server_binding).expect("Failed to serialize server binding");
            server_provider_env_map.insert(
                alien_core::bindings::binding_env_var_name(GRPC_BINDING_NAME),
                server_binding_json,
            );
            server_provider_env_map
                .insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "local".to_string());

            let local_provider_for_server = Arc::new(
                BindingsProvider::from_env(server_provider_env_map)
                    .await
                    .expect("Failed to load bindings provider"),
            );

            let listener = TcpListener::bind("127.0.0.1:0")
                .await
                .expect("Failed to bind to random port");
            let addr = listener.local_addr().expect("Failed to get local address");
            drop(listener);

            let server_addr_str = addr.to_string();
            let server_addr_for_spawn = server_addr_str.clone();

            let server_handle = tokio::spawn(async move {
                let handles = run_grpc_server(local_provider_for_server, &server_addr_for_spawn)
                    .await
                    .unwrap();

                // Wait for server to be ready
                handles
                    .readiness_receiver
                    .await
                    .expect("Server should become ready");
                handles.server_task.await.unwrap()
            });

            tokio::time::sleep(std::time::Duration::from_millis(500)).await;

            let mut service_provider_env_map: HashMap<String, String> = env::vars().collect();
            service_provider_env_map.insert(
                "ALIEN_BINDINGS_GRPC_ADDRESS".to_string(),
                server_addr_str.clone(),
            );
            service_provider_env_map
                .insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "grpc".to_string());

            let grpc_provider = GrpcBindingsProvider::new_with_env(service_provider_env_map)
                .expect("Failed to load bindings provider");

            let artifact_registry_client = grpc_provider
                .load_artifact_registry(GRPC_BINDING_NAME)
                .await
                .unwrap_or_else(|e| {
                    panic!(
                        "Failed to load Grpc artifact registry for binding '{}' using ALIEN_BINDINGS_GRPC_ADDRESS='{}': {:?}",
                        GRPC_BINDING_NAME, server_addr_str, e
                    )
                });

            Self {
                artifact_registry: artifact_registry_client,
                _server_handle: server_handle,
                _temp_data_dir: temp_data_dir,
                _registry_handle: registry_handle,
            }
        }
        #[cfg(all(feature = "local", not(unix)))]
        {
            panic!("Local artifact registry tests require Unix because container-registry uses symlinks");
        }
        #[cfg(not(feature = "local"))]
        {
            // For gRPC provider, we can use a mock or skip the test
            // For now, we'll skip the test when local feature is not available
            panic!("Local feature is required for GrpcProviderArtifactRegistryTestContext");
        }
    }

    async fn teardown(self) {
        self._server_handle.abort();
        self._registry_handle.abort();
    }
}

#[cfg(feature = "grpc")]
#[async_trait]
impl ArtifactRegistryTestContext for GrpcProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "grpc"
    }
}

// --- AWS Provider Context ---
#[cfg(feature = "aws")]
struct AwsProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
}

#[cfg(feature = "aws")]
impl AsyncTestContext for AwsProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let binding_name = "test-aws-artifact-registry";

        let region = std::env::var("AWS_MANAGEMENT_REGION")
            .expect("AWS_MANAGEMENT_REGION must be set in .env.test");
        let access_key = std::env::var("AWS_MANAGEMENT_ACCESS_KEY_ID")
            .expect("AWS_MANAGEMENT_ACCESS_KEY_ID must be set in .env.test");
        let secret_key = std::env::var("AWS_MANAGEMENT_SECRET_ACCESS_KEY")
            .expect("AWS_MANAGEMENT_SECRET_ACCESS_KEY must be set in .env.test");
        let account_id = std::env::var("AWS_MANAGEMENT_ACCOUNT_ID")
            .expect("AWS_MANAGEMENT_ACCOUNT_ID must be set in .env.test");

        let pull_role_arn = std::env::var("ALIEN_TEST_AWS_ECR_PULL_ROLE_ARN").ok();
        let push_role_arn = std::env::var("ALIEN_TEST_AWS_ECR_PUSH_ROLE_ARN").ok();

        let binding = alien_core::bindings::ArtifactRegistryBinding::ecr(
            "test".to_string(),
            pull_role_arn,
            push_role_arn,
        );

        // Set up environment for the provider
        let mut env_map: HashMap<String, String> = HashMap::new();
        env_map.insert("AWS_REGION".to_string(), region);
        env_map.insert("AWS_ACCESS_KEY_ID".to_string(), access_key);
        env_map.insert("AWS_SECRET_ACCESS_KEY".to_string(), secret_key);
        env_map.insert("AWS_ACCOUNT_ID".to_string(), account_id);
        env_map.insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "aws".to_string());
        let binding_json = serde_json::to_string(&binding).expect("Failed to serialize binding");
        env_map.insert(
            alien_core::bindings::binding_env_var_name(binding_name),
            binding_json,
        );

        let provider = BindingsProvider::from_env(env_map)
            .await
            .expect("Failed to load bindings provider");
        let artifact_registry = provider
            .load_artifact_registry(binding_name)
            .await
            .unwrap_or_else(|e| {
                panic!(
                    "Failed to load AWS artifact registry for binding '{}': {:?}",
                    binding_name, e
                )
            });

        Self { artifact_registry }
    }
}

#[cfg(feature = "aws")]
#[async_trait]
impl ArtifactRegistryTestContext for AwsProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "aws"
    }
}

// --- GCP Provider Context ---
#[cfg(feature = "gcp")]
struct GcpProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
}

#[cfg(feature = "gcp")]
impl AsyncTestContext for GcpProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let binding_name = "test-gcp-artifact-registry";

        let service_account_key_json = env::var("GOOGLE_MANAGEMENT_SERVICE_ACCOUNT_KEY")
            .expect("GOOGLE_MANAGEMENT_SERVICE_ACCOUNT_KEY must be set in .env.test");
        let gcp_region = env::var("GOOGLE_MANAGEMENT_REGION")
            .expect("GOOGLE_MANAGEMENT_REGION must be set in .env.test");

        // Extract client_email from service account key JSON
        let credential_value: serde_json::Value = serde_json::from_str(&service_account_key_json)
            .expect("GOOGLE_MANAGEMENT_SERVICE_ACCOUNT_KEY must be valid JSON");
        let client_email = credential_value
            .get("client_email")
            .and_then(|v| v.as_str())
            .expect("client_email field must be present in service account key")
            .to_string();

        let binding = alien_core::bindings::ArtifactRegistryBinding::gar(
            "test-repo",
            Some(client_email.clone()),
            Some(client_email),
        );

        let mut env_map: HashMap<String, String> = HashMap::new();
        env_map.insert(
            "GOOGLE_SERVICE_ACCOUNT_KEY".to_string(),
            service_account_key_json,
        );
        env_map.insert("GCP_REGION".to_string(), gcp_region);
        env_map.insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "gcp".to_string());
        let binding_json = serde_json::to_string(&binding).expect("Failed to serialize binding");
        env_map.insert(
            alien_core::bindings::binding_env_var_name(binding_name),
            binding_json,
        );

        let provider = BindingsProvider::from_env(env_map)
            .await
            .expect("Failed to load bindings provider");
        let artifact_registry = provider
            .load_artifact_registry(binding_name)
            .await
            .unwrap_or_else(|e| {
                panic!(
                    "Failed to load GCP artifact registry for binding '{}': {:?}",
                    binding_name, e
                )
            });

        Self { artifact_registry }
    }
}

#[cfg(feature = "gcp")]
#[async_trait]
impl ArtifactRegistryTestContext for GcpProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "gcp"
    }
}

// --- Azure Provider Context ---
#[cfg(feature = "azure")]
struct AzureProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
}

#[cfg(feature = "azure")]
impl AsyncTestContext for AzureProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let binding_name = "test-azure-artifact-registry";

        let resource_group = env::var("ALIEN_TEST_AZURE_RESOURCE_GROUP");
        if resource_group.is_err() {
            panic!(
                "Skipping Azure artifact registry test: ALIEN_TEST_AZURE_RESOURCE_GROUP not set."
            );
        }
        let resource_group_name = resource_group.unwrap();

        // We'll use a test registry name - this would normally be created by the infra layer
        let registry_name = env::var("ALIEN_TEST_AZURE_REGISTRY_NAME").expect(
            "Skipping Azure artifact registry test: ALIEN_TEST_AZURE_REGISTRY_NAME not set.",
        );

        let binding = alien_core::bindings::ArtifactRegistryBinding::acr(
            registry_name,
            resource_group_name.clone(),
        );

        let mut env_map: HashMap<String, String> = HashMap::new();
        env_map.insert(
            "AZURE_TENANT_ID".to_string(),
            env::var("AZURE_MANAGEMENT_TENANT_ID").unwrap(),
        );
        env_map.insert(
            "AZURE_CLIENT_ID".to_string(),
            env::var("AZURE_MANAGEMENT_CLIENT_ID").unwrap(),
        );
        env_map.insert(
            "AZURE_CLIENT_SECRET".to_string(),
            env::var("AZURE_MANAGEMENT_CLIENT_SECRET").unwrap(),
        );
        env_map.insert(
            "AZURE_SUBSCRIPTION_ID".to_string(),
            env::var("AZURE_MANAGEMENT_SUBSCRIPTION_ID").unwrap(),
        );
        env_map.insert("AZURE_RESOURCE_GROUP".to_string(), resource_group_name);
        env_map.insert("ALIEN_DEPLOYMENT_TYPE".to_string(), "azure".to_string());
        let binding_json = serde_json::to_string(&binding).expect("Failed to serialize binding");
        env_map.insert(
            alien_core::bindings::binding_env_var_name(binding_name),
            binding_json,
        );

        let provider = BindingsProvider::from_env(env_map)
            .await
            .expect("Failed to load bindings provider");
        let artifact_registry = provider
            .load_artifact_registry(binding_name)
            .await
            .unwrap_or_else(|e| {
                panic!(
                    "Failed to load Azure artifact registry for binding '{}': {:?}",
                    binding_name, e
                )
            });

        Self { artifact_registry }
    }
}

#[cfg(feature = "azure")]
#[async_trait]
impl ArtifactRegistryTestContext for AzureProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "azure"
    }
}

// --- Kubernetes Provider Context ---
#[cfg(feature = "kubernetes")]
struct KubernetesProviderArtifactRegistryTestContext {
    artifact_registry: Arc<dyn ArtifactRegistry>,
}

#[cfg(feature = "kubernetes")]
impl AsyncTestContext for KubernetesProviderArtifactRegistryTestContext {
    async fn setup() -> Self {
        load_test_env();
        let binding_name = "test-k8s-artifact-registry";

        let mut env_map: HashMap<String, String> = env::vars().collect();
        // Add any Kubernetes-specific configuration here
        env_map.insert(
            format!(
                "ALIEN_{}_NAMESPACE",
                binding_name.replace('-', "_").to_uppercase()
            ),
            "default".to_string(),
        );
        env_map.insert(
            "ALIEN_DEPLOYMENT_TYPE".to_string(),
            "kubernetes".to_string(),
        );

        let provider = BindingsProvider::from_env(env_map)
            .await
            .expect("Failed to load bindings provider");
        let artifact_registry = provider
            .load_artifact_registry(binding_name)
            .await
            .unwrap_or_else(|e| {
                // Kubernetes provider doesn't support artifact registry operations yet
                if let Some(alien_bindings::error::ErrorData::OperationNotSupported { .. }) = e.error {
                    panic!("SKIP: Kubernetes provider does not support artifact registry operations yet");
                }
                panic!("Failed to load Kubernetes artifact registry for binding '{}': {:?}", binding_name, e)
            });
        Self { artifact_registry }
    }
}

#[cfg(feature = "kubernetes")]
#[async_trait]
impl ArtifactRegistryTestContext for KubernetesProviderArtifactRegistryTestContext {
    async fn get_artifact_registry(&self) -> Arc<dyn ArtifactRegistry> {
        self.artifact_registry.clone()
    }
    fn provider_name(&self) -> &'static str {
        "kubernetes"
    }
}

// Helper function to get real service account email from environment
fn get_real_service_account_email() -> Option<String> {
    if let Ok(credential_json) = env::var("GOOGLE_MANAGEMENT_SERVICE_ACCOUNT_KEY") {
        if let Ok(credential_value) = serde_json::from_str::<serde_json::Value>(&credential_json) {
            if let Some(email) = credential_value
                .get("client_email")
                .and_then(|v| v.as_str())
            {
                return Some(format!("serviceAccount:{}", email));
            }
        }
    }
    None
}

// Helper function to generate unique repository names
fn generate_unique_repo_name(provider_name: &str) -> String {
    format!("alien-test-{}-{}", provider_name, Uuid::new_v4().simple())
}

// Helper function to wait for repository to be ready (for async operations like GCP)
async fn wait_for_repository_ready(
    artifact_registry: &Arc<dyn ArtifactRegistry>,
    repo_id: &str,
    provider_name: &str,
    max_wait_seconds: u64,
) -> bool {
    let start_time = std::time::Instant::now();
    let max_duration = Duration::from_secs(max_wait_seconds);

    loop {
        match artifact_registry.get_repository(repo_id).await {
            Ok(_repository) => {
                // Repository exists and is ready
                return true;
            }
            Err(e) => {
                // Check if it's a ResourceNotFound error (repository still being created)
                if let Some(alien_bindings::error::ErrorData::ResourceNotFound { .. }) = e.error {
                    if start_time.elapsed() > max_duration {
                        panic!(
                            "[{}] Repository {} did not become ready within {} seconds",
                            provider_name, repo_id, max_wait_seconds
                        );
                    }
                    tokio::time::sleep(Duration::from_secs(2)).await;
                } else {
                    // Some other error occurred
                    panic!("[{}] Failed to get repository: {:?}", provider_name, e);
                }
            }
        }
    }
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(
    feature = "local",
    feature = "grpc",
    feature = "aws",
    feature = "azure",
    feature = "gcp"
))]
#[tokio::test]
async fn test_create_repository_and_get_status(#[case] ctx: impl ArtifactRegistryTestContext) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();
    let repo_name = generate_unique_repo_name(provider_name);

    // Create the repository
    let create_response = artifact_registry
        .create_repository(&repo_name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to create repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    assert!(
        !create_response.name.is_empty(),
        "[{}] Repository name should not be empty",
        provider_name
    );

    // For real cloud providers, wait for repository to be ready
    if matches!(provider_name, "aws" | "gcp" | "azure") {
        let is_ready = wait_for_repository_ready(
            &artifact_registry,
            &create_response.name,
            provider_name,
            300,
        )
        .await;
        assert!(
            is_ready,
            "[{}] Repository should eventually be ready",
            provider_name
        );
    }

    // Verify we can get repository details
    let repository = artifact_registry
        .get_repository(&create_response.name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to get repository details: {:?}",
                provider_name, e
            )
        });

    println!(
        "[{}] Successfully created repository '{}' with URI: {:?}",
        provider_name, repo_name, repository.uri
    );

    // Clean up
    artifact_registry
        .delete_repository(&create_response.name)
        .await
        .ok();
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(
    feature = "local",
    feature = "grpc",
    feature = "aws",
    feature = "azure",
    feature = "gcp"
))]
#[tokio::test]
async fn test_add_remove_cross_account_access(#[case] ctx: impl ArtifactRegistryTestContext) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();
    let repo_name = generate_unique_repo_name(provider_name);

    // Create the repository first
    let create_response = artifact_registry
        .create_repository(&repo_name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to create repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    // Wait for repository to be ready if needed
    if matches!(provider_name, "gcp") {
        wait_for_repository_ready(
            &artifact_registry,
            &create_response.name,
            provider_name,
            300,
        )
        .await;
    }

    // Create two different cross-account access configurations based on provider
    let (cross_account_access_1, cross_account_access_2) = match provider_name {
        "aws" => {
            let access_1 = CrossAccountAccess::Aws(AwsCrossAccountAccess {
                account_ids: vec!["123456789012".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                role_arns: vec!["arn:aws:iam::123456789012:role/test-role-1".to_string()],
                regions: vec![],
            });
            let access_2 = CrossAccountAccess::Aws(AwsCrossAccountAccess {
                account_ids: vec!["987654321098".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                role_arns: vec!["arn:aws:iam::987654321098:role/test-role-2".to_string()],
                regions: vec![],
            });
            (access_1, access_2)
        }
        "gcp" => {
            // Use real service account from environment if available
            let service_accounts = if let Some(real_sa) = get_real_service_account_email() {
                // Strip the "serviceAccount:" prefix if present
                let email = real_sa.strip_prefix("serviceAccount:").unwrap_or(&real_sa);
                vec![email.to_string()]
            } else {
                vec!["test1@example.com".to_string()]
            };

            let access_1 = CrossAccountAccess::Gcp(GcpCrossAccountAccess {
                project_numbers: vec!["123456789012".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                service_account_emails: service_accounts,
            });
            let access_2 = CrossAccountAccess::Gcp(GcpCrossAccountAccess {
                project_numbers: vec!["987654321098".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                service_account_emails: vec!["test2@example.com".to_string()],
            });
            (access_1, access_2)
        }
        "azure" => {
            // Azure should return OperationNotSupported
            println!(
                "[{}] Testing OperationNotSupported for cross-account access",
                provider_name
            );

            // Test get_cross_account_access first
            match artifact_registry
                .get_cross_account_access(&create_response.name)
                .await
            {
                Ok(_) => panic!(
                    "[{}] Expected OperationNotSupported error for get_cross_account_access",
                    provider_name
                ),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for get: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error for get, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            // Test add_cross_account_access
            let test_access = CrossAccountAccess::Aws(AwsCrossAccountAccess {
                account_ids: vec!["123456789012".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                role_arns: vec!["arn:aws:iam::123456789012:role/test-role".to_string()],
                regions: vec![],
            });

            match artifact_registry
                .add_cross_account_access(&create_response.name, test_access.clone())
                .await
            {
                Ok(()) => panic!("[{}] Expected OperationNotSupported error", provider_name),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for add: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            // Test remove_cross_account_access
            match artifact_registry
                .remove_cross_account_access(&create_response.name, test_access)
                .await
            {
                Ok(()) => panic!(
                    "[{}] Expected OperationNotSupported error for remove",
                    provider_name
                ),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for remove: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error for remove, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            // Clean up and return early for Azure
            artifact_registry
                .delete_repository(&create_response.name)
                .await
                .ok();
            return;
        }
        "local" | "grpc" => {
            // Local and gRPC should also return OperationNotSupported
            println!(
                "[{}] Testing OperationNotSupported for cross-account access",
                provider_name
            );

            // Test get_cross_account_access first
            match artifact_registry
                .get_cross_account_access(&create_response.name)
                .await
            {
                Ok(_) => panic!(
                    "[{}] Expected OperationNotSupported error for get_cross_account_access",
                    provider_name
                ),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for get: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error for get, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            let test_access = CrossAccountAccess::Aws(AwsCrossAccountAccess {
                account_ids: vec!["123456789012".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                role_arns: vec!["arn:aws:iam::123456789012:role/test-role".to_string()],
                regions: vec![],
            });

            // Test add_cross_account_access
            match artifact_registry
                .add_cross_account_access(&create_response.name, test_access.clone())
                .await
            {
                Ok(()) => panic!("[{}] Expected OperationNotSupported error", provider_name),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for add: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            // Test remove_cross_account_access
            match artifact_registry
                .remove_cross_account_access(&create_response.name, test_access)
                .await
            {
                Ok(()) => panic!(
                    "[{}] Expected OperationNotSupported error for remove",
                    provider_name
                ),
                Err(e) => {
                    if let Some(alien_bindings::error::ErrorData::OperationNotSupported {
                        operation,
                        reason,
                    }) = e.error
                    {
                        println!(
                            "[{}] ✓ Correctly received OperationNotSupported for remove: {} - {}",
                            provider_name, operation, reason
                        );
                    } else {
                        panic!(
                            "[{}] Expected OperationNotSupported error for remove, got: {:?}",
                            provider_name, e
                        );
                    }
                }
            }

            // Clean up and return early
            artifact_registry
                .delete_repository(&create_response.name)
                .await
                .ok();
            return;
        }
        _ => panic!("Unknown provider: {}", provider_name),
    };

    // Test the comprehensive add/remove cross-account access flow

    // Step 0: Get initial state - should be empty
    match artifact_registry
        .get_cross_account_access(&create_response.name)
        .await
    {
        Ok(initial_permissions) => {
            println!(
                "[{}] ✓ Retrieved initial cross-account access: {:?}",
                provider_name, initial_permissions
            );

            // Verify initial state is empty
            match (&initial_permissions.access, provider_name) {
                (CrossAccountAccess::Aws(aws_access), "aws") => {
                    let is_empty = aws_access.account_ids.is_empty()
                        && aws_access.role_arns.is_empty()
                        && aws_access.allowed_service_types.is_empty();
                    if is_empty {
                        println!(
                            "[{}] ✓ Initial AWS cross-account access is empty as expected",
                            provider_name
                        );
                    } else {
                        println!(
                            "[{}] ⚠ Initial AWS cross-account access is not empty: {:?}",
                            provider_name, aws_access
                        );
                    }
                }
                (CrossAccountAccess::Gcp(gcp_access), "gcp") => {
                    let is_empty = gcp_access.project_numbers.is_empty()
                        && gcp_access.service_account_emails.is_empty()
                        && gcp_access.allowed_service_types.is_empty();
                    if is_empty {
                        println!(
                            "[{}] ✓ Initial GCP cross-account access is empty as expected",
                            provider_name
                        );
                    } else {
                        println!(
                            "[{}] ⚠ Initial GCP cross-account access is not empty: {:?}",
                            provider_name, gcp_access
                        );
                    }
                }
                _ => {
                    println!(
                        "[{}] ⚠ Unexpected initial cross-account access format",
                        provider_name
                    );
                }
            }
        }
        Err(e) => {
            println!(
                "[{}] ⚠ Failed to get initial cross-account access: {:?}",
                provider_name, e
            );
        }
    }

    // Step 1: Add first cross-account access
    match artifact_registry
        .add_cross_account_access(&create_response.name, cross_account_access_1.clone())
        .await
    {
        Ok(()) => {
            println!(
                "[{}] ✓ Successfully added first cross-account access",
                provider_name
            );

            // Step 2: Verify first access was added
            match artifact_registry
                .get_cross_account_access(&create_response.name)
                .await
            {
                Ok(permissions_after_first) => {
                    println!(
                        "[{}] ✓ Retrieved cross-account access after adding first: {:?}",
                        provider_name, permissions_after_first
                    );

                    // Step 3: Add second cross-account access
                    match artifact_registry
                        .add_cross_account_access(
                            &create_response.name,
                            cross_account_access_2.clone(),
                        )
                        .await
                    {
                        Ok(()) => {
                            println!(
                                "[{}] ✓ Successfully added second cross-account access",
                                provider_name
                            );

                            // Step 4: Verify both accesses are present
                            match artifact_registry
                                .get_cross_account_access(&create_response.name)
                                .await
                            {
                                Ok(permissions_after_both) => {
                                    println!("[{}] ✓ Retrieved cross-account access after adding both: {:?}", provider_name, permissions_after_both);

                                    // Verify both accesses are present
                                    match (&permissions_after_both.access, provider_name) {
                                        (CrossAccountAccess::Aws(aws_access), "aws") => {
                                            let has_multiple = aws_access.account_ids.len() >= 2
                                                || aws_access.role_arns.len() >= 2;
                                            if has_multiple {
                                                println!("[{}] ✓ AWS cross-account access contains multiple entries", provider_name);
                                            } else {
                                                println!("[{}] ⚠ AWS cross-account access may not contain both entries: {:?}", provider_name, aws_access);
                                            }
                                        }
                                        (CrossAccountAccess::Gcp(gcp_access), "gcp") => {
                                            let has_multiple = gcp_access.project_numbers.len()
                                                >= 2
                                                || gcp_access.service_account_emails.len() >= 2;
                                            if has_multiple {
                                                println!("[{}] ✓ GCP cross-account access contains multiple entries", provider_name);
                                            } else {
                                                println!("[{}] ⚠ GCP cross-account access may not contain both entries: {:?}", provider_name, gcp_access);
                                            }
                                        }
                                        _ => {
                                            println!(
                                                "[{}] ⚠ Unexpected cross-account access format",
                                                provider_name
                                            );
                                        }
                                    }

                                    // Step 5: Remove first access
                                    match artifact_registry
                                        .remove_cross_account_access(
                                            &create_response.name,
                                            cross_account_access_1,
                                        )
                                        .await
                                    {
                                        Ok(()) => {
                                            println!("[{}] ✓ Successfully removed first cross-account access", provider_name);

                                            // Step 6: Verify only second access remains
                                            match artifact_registry
                                                .get_cross_account_access(&create_response.name)
                                                .await
                                            {
                                                Ok(permissions_after_remove_first) => {
                                                    println!("[{}] ✓ Retrieved cross-account access after removing first: {:?}", provider_name, permissions_after_remove_first);

                                                    // Step 7: Remove second access
                                                    match artifact_registry
                                                        .remove_cross_account_access(
                                                            &create_response.name,
                                                            cross_account_access_2,
                                                        )
                                                        .await
                                                    {
                                                        Ok(()) => {
                                                            println!("[{}] ✓ Successfully removed second cross-account access", provider_name);

                                                            // Step 8: Verify all access was removed
                                                            match artifact_registry
                                                                .get_cross_account_access(
                                                                    &create_response.name,
                                                                )
                                                                .await
                                                            {
                                                                Ok(final_permissions) => {
                                                                    println!("[{}] ✓ Retrieved final cross-account access: {:?}", provider_name, final_permissions);

                                                                    // Verify final state is empty
                                                                    match (
                                                                        &final_permissions.access,
                                                                        provider_name,
                                                                    ) {
                                                                        (
                                                                            CrossAccountAccess::Aws(
                                                                                aws_access,
                                                                            ),
                                                                            "aws",
                                                                        ) => {
                                                                            let is_empty = aws_access
                                                                                .account_ids
                                                                                .is_empty()
                                                                                && aws_access
                                                                                    .role_arns
                                                                                    .is_empty()
                                                                                && aws_access
                                                                                    .allowed_service_types
                                                                                    .is_empty();
                                                                            if is_empty {
                                                                                println!("[{}] ✓ Final AWS cross-account access is empty - all access properly removed", provider_name);
                                                                            } else {
                                                                                println!("[{}] ⚠ Final AWS cross-account access is not empty: {:?}", provider_name, aws_access);
                                                                            }
                                                                        }
                                                                        (
                                                                            CrossAccountAccess::Gcp(
                                                                                gcp_access,
                                                                            ),
                                                                            "gcp",
                                                                        ) => {
                                                                            let is_empty = gcp_access
                                                                                .project_numbers
                                                                                .is_empty()
                                                                                && gcp_access
                                                                                    .service_account_emails
                                                                                    .is_empty()
                                                                                && gcp_access
                                                                                    .allowed_service_types
                                                                                    .is_empty();
                                                                            if is_empty {
                                                                                println!("[{}] ✓ Final GCP cross-account access is empty - all access properly removed", provider_name);
                                                                            } else {
                                                                                println!("[{}] ⚠ Final GCP cross-account access is not empty: {:?}", provider_name, gcp_access);
                                                                            }
                                                                        }
                                                                        _ => {
                                                                            println!("[{}] ⚠ Unexpected final cross-account access format", provider_name);
                                                                        }
                                                                    }
                                                                }
                                                                Err(e) => {
                                                                    println!("[{}] ⚠ Failed to get final cross-account access: {:?}", provider_name, e);
                                                                }
                                                            }
                                                        }
                                                        Err(e) => {
                                                            println!("[{}] ⚠ Failed to remove second cross-account access: {:?}", provider_name, e);
                                                        }
                                                    }
                                                }
                                                Err(e) => {
                                                    println!("[{}] ⚠ Failed to get cross-account access after removing first: {:?}", provider_name, e);
                                                }
                                            }
                                        }
                                        Err(e) => {
                                            println!("[{}] ⚠ Failed to remove first cross-account access: {:?}", provider_name, e);
                                        }
                                    }
                                }
                                Err(e) => {
                                    println!("[{}] ⚠ Failed to get cross-account access after adding both: {:?}", provider_name, e);
                                }
                            }
                        }
                        Err(e) => {
                            println!(
                                "[{}] ⚠ Failed to add second cross-account access: {:?}",
                                provider_name, e
                            );
                        }
                    }
                }
                Err(e) => {
                    println!(
                        "[{}] ⚠ Failed to get cross-account access after adding first: {:?}",
                        provider_name, e
                    );
                }
            }
        }
        Err(e) => {
            println!("[{}] ⚠ Failed to add first cross-account access (acceptable for some test environments): {:?}", provider_name, e);
            println!("[{}] This is acceptable when the test environment doesn't have IAM permission management capabilities", provider_name);
        }
    }

    // Clean up
    artifact_registry
        .delete_repository(&create_response.name)
        .await
        .ok();
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
// TODO (CRITICAL): Enable AWS test (need to create pull/push roles)
// #[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(feature = "local", feature = "grpc", feature = "azure"))]
#[tokio::test]
async fn test_generate_credentials(#[case] ctx: impl ArtifactRegistryTestContext) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();
    let repo_name = generate_unique_repo_name(provider_name);

    // Create the repository first
    let create_response = artifact_registry
        .create_repository(&repo_name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to create repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    // Wait for repository to be ready if needed
    if matches!(provider_name, "gcp") {
        wait_for_repository_ready(
            &artifact_registry,
            &create_response.name,
            provider_name,
            300,
        )
        .await;
    }

    // Test generating pull credentials
    let credentials_result = artifact_registry
        .generate_credentials(
            &create_response.name,
            ArtifactRegistryPermissions::Pull,
            Some(3600),
        )
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to generate credentials for repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    // Clean up
    artifact_registry
        .delete_repository(&create_response.name)
        .await
        .ok();
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(
    feature = "local",
    feature = "grpc",
    feature = "aws",
    feature = "azure",
    feature = "gcp"
))]
#[tokio::test]
async fn test_delete_repository(#[case] ctx: impl ArtifactRegistryTestContext) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();
    let repo_name = generate_unique_repo_name(provider_name);

    // Create the repository first
    let create_response = artifact_registry
        .create_repository(&repo_name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to create repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    // Wait for repository to be ready if needed
    if matches!(provider_name, "gcp") {
        wait_for_repository_ready(
            &artifact_registry,
            &create_response.name,
            provider_name,
            300,
        )
        .await;
    }

    // Delete the repository
    artifact_registry
        .delete_repository(&create_response.name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to delete repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });

    println!(
        "[{}] Successfully deleted repository '{}'",
        provider_name, repo_name
    );

    // Note: We don't verify that the repository is gone since some providers
    // might have eventual consistency or different deletion semantics
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(
    feature = "local",
    feature = "grpc",
    feature = "aws",
    feature = "azure",
    feature = "gcp"
))]
#[tokio::test]
async fn test_full_repository_lifecycle(#[case] ctx: impl ArtifactRegistryTestContext) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();
    let repo_name = generate_unique_repo_name(provider_name);

    println!(
        "[{}] Starting full lifecycle test for repository '{}'",
        provider_name, repo_name
    );

    // 1. Create repository
    let create_response = artifact_registry
        .create_repository(&repo_name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] Failed to create repository '{}': {:?}",
                provider_name, repo_name, e
            )
        });
    println!("[{}] ✓ Created repository", provider_name);

    // Round-trip invariant (per `RepositoryResponse::name` doc): the value
    // returned from `create_repository` must be usable verbatim as `repo_id`
    // for every subsequent method on the trait. Caught the regression in
    // commit 3f0824a where ECR receivers re-prefixed and GAR's delete called
    // the wrong API surface.
    let get_response = artifact_registry
        .get_repository(&create_response.name)
        .await
        .unwrap_or_else(|e| {
            panic!(
                "[{}] get_repository must accept the routable name from \
                 create_repository as-is. Provider returned: {:?}",
                provider_name, e
            )
        });
    assert_eq!(
        get_response.name, create_response.name,
        "[{}] get_repository must round-trip the routable name unchanged",
        provider_name
    );

    // 2. Wait for repository to be ready
    if matches!(provider_name, "gcp") {
        let is_ready = wait_for_repository_ready(
            &artifact_registry,
            &create_response.name,
            provider_name,
            300,
        )
        .await;
        assert!(is_ready);
    }
    println!("[{}] ✓ Repository is ready", provider_name);

    // 3. Add cross-account access (only for AWS and GCP)
    if matches!(provider_name, "aws" | "gcp") {
        let cross_account_access = match provider_name {
            "aws" => CrossAccountAccess::Aws(AwsCrossAccountAccess {
                account_ids: vec!["123456789012".to_string()],
                allowed_service_types: vec![ComputeServiceType::Worker],
                role_arns: vec!["arn:aws:iam::123456789012:role/test-role".to_string()],
                regions: vec![],
            }),
            "gcp" => {
                let service_accounts = if let Some(real_sa) = get_real_service_account_email() {
                    let email = real_sa.strip_prefix("serviceAccount:").unwrap_or(&real_sa);
                    vec![email.to_string()]
                } else {
                    vec!["test@example.com".to_string()]
                };

                CrossAccountAccess::Gcp(GcpCrossAccountAccess {
                    project_numbers: vec!["123456789012".to_string()],
                    allowed_service_types: vec![ComputeServiceType::Worker],
                    service_account_emails: service_accounts,
                })
            }
            _ => unreachable!(),
        };

        match artifact_registry
            .add_cross_account_access(&create_response.name, cross_account_access.clone())
            .await
        {
            Ok(()) => {
                println!("[{}] ✓ Added cross-account access", provider_name);

                // 4. Get cross-account access and verify it was added
                match artifact_registry
                    .get_cross_account_access(&create_response.name)
                    .await
                {
                    Ok(retrieved_permissions) => {
                        println!(
                            "[{}] ✓ Retrieved cross-account access: {:?}",
                            provider_name, retrieved_permissions
                        );

                        // 5. Remove cross-account access
                        match artifact_registry
                            .remove_cross_account_access(
                                &create_response.name,
                                cross_account_access,
                            )
                            .await
                        {
                            Ok(()) => {
                                println!("[{}] ✓ Removed cross-account access", provider_name);

                                // 6. Verify access was removed
                                match artifact_registry
                                    .get_cross_account_access(&create_response.name)
                                    .await
                                {
                                    Ok(empty_permissions) => {
                                        println!("[{}] ✓ Verified cross-account access was removed: {:?}", provider_name, empty_permissions);
                                    }
                                    Err(_) => {
                                        println!("[{}] ⚠ Could not verify removal (acceptable for some test environments)", provider_name);
                                    }
                                }
                            }
                            Err(_) => {
                                println!("[{}] ⚠ Could not remove cross-account access (acceptable for some test environments)", provider_name);
                            }
                        }
                    }
                    Err(_) => {
                        println!("[{}] ⚠ Could not retrieve cross-account access (acceptable for some test environments)", provider_name);
                    }
                }
            }
            Err(_) => {
                println!("[{}] ⚠ Could not add cross-account access (acceptable for some test environments)", provider_name);
            }
        }
    } else {
        // For Azure, local, grpc, kubernetes - these should return OperationNotSupported
        println!(
            "[{}] ✓ Skipped cross-account access (not supported for this provider)",
            provider_name
        );
    }

    // 7. Try to generate credentials (may not be supported by all providers)
    if let Ok(credentials) = artifact_registry
        .generate_credentials(
            &create_response.name,
            ArtifactRegistryPermissions::Pull,
            Some(3600),
        )
        .await
    {
        println!(
            "[{}] ✓ Generated pull credentials: username={}",
            provider_name, credentials.username
        );
    } else {
        println!("[{}] ⚠ Credential generation not supported", provider_name);
    }

    // 8. Delete repository
    artifact_registry
        .delete_repository(&create_response.name)
        .await
        .unwrap_or_else(|e| panic!("[{}] Failed to delete repository: {:?}", provider_name, e));
    println!("[{}] ✓ Deleted repository", provider_name);

    println!(
        "[{}] ✅ Full lifecycle test completed successfully",
        provider_name
    );
}

#[rstest]
#[cfg_attr(feature = "local", case::local(LocalProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "grpc", case::grpc(GrpcProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "aws", case::aws(AwsProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "azure", case::azure(AzureProviderArtifactRegistryTestContext::setup().await))]
#[cfg_attr(feature = "gcp", case::gcp(GcpProviderArtifactRegistryTestContext::setup().await))]
// #[cfg_attr(feature = "kubernetes", case::kubernetes(KubernetesProviderArtifactRegistryTestContext::setup().await))]
#[cfg(any(
    feature = "local",
    feature = "grpc",
    feature = "aws",
    feature = "azure",
    feature = "gcp"
))]
#[tokio::test]
async fn test_get_nonexistent_repository_returns_404(
    #[case] ctx: impl ArtifactRegistryTestContext,
) {
    let artifact_registry = ctx.get_artifact_registry().await;
    let provider_name = ctx.provider_name();

    // Use a repository name that definitely doesn't exist
    let nonexistent_repo = format!("alien-test-nonexistent-{}", Uuid::new_v4().simple());
    let expected_repo_name = if provider_name == "aws" {
        // AWS ECR bindings apply a repository prefix in tests.
        format!("test-{}", nonexistent_repo)
    } else {
        nonexistent_repo.clone()
    };

    println!(
        "[{}] Testing get_repository for non-existent repo '{}'",
        provider_name, nonexistent_repo
    );

    // Try to get a repository that doesn't exist
    let result = artifact_registry.get_repository(&nonexistent_repo).await;

    // Should get an error
    assert!(
        result.is_err(),
        "[{}] Expected error when getting non-existent repository",
        provider_name
    );

    let error = result.unwrap_err();
    println!("[{}] Error: {:?}", provider_name, error);

    // Check that the error is ResourceNotFound or RemoteResourceNotFound
    match &error.error {
        Some(alien_bindings::error::ErrorData::ResourceNotFound { resource_id }) => {
            assert_eq!(resource_id, &expected_repo_name);
            println!("[{}] ✓ Correctly returned ResourceNotFound", provider_name);
        }
        Some(alien_bindings::error::ErrorData::RemoteResourceNotFound {
            resource_name, ..
        }) => {
            assert_eq!(resource_name, &expected_repo_name);
            println!(
                "[{}] ✓ Correctly returned RemoteResourceNotFound",
                provider_name
            );
        }
        other => {
            panic!(
                "[{}] Expected ResourceNotFound or RemoteResourceNotFound error, got: {:?}",
                provider_name, other
            );
        }
    }

    // CRITICAL: Check that the HTTP status code is 404, not 500
    assert_eq!(
        error.http_status_code,
        Some(404),
        "[{}] HTTP status code should be 404 for not found, got: {:?}",
        provider_name,
        error.http_status_code
    );

    println!("[{}] ✓ HTTP status code is correctly 404", provider_name);
}