alien-aws-clients 1.4.1

Deploy software into your customers' cloud accounts and keep it fully managed
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
1670
1671
1672
1673
/*!
# Lambda Client Integration Tests

These tests perform real AWS Lambda operations including creating functions, function URLs,
and making HTTP requests to deployed Lambda functions.

## Prerequisites

### 1. AWS Credentials
Set up `.env.test` in the workspace root with:
```
AWS_MANAGEMENT_REGION=eu-central-1
AWS_MANAGEMENT_ACCESS_KEY_ID=your_access_key
AWS_MANAGEMENT_SECRET_ACCESS_KEY=your_secret_key
AWS_MANAGEMENT_ACCOUNT_ID=your_account_id
ALIEN_TEST_AWS_LAMBDA_IMAGE=your_account_id.dkr.ecr.eu-central-1.amazonaws.com/test-lambda:latest
ALIEN_TEST_AWS_LAMBDA_EXECUTION_ROLE_ARN=arn:aws:iam::your_account_id:role/lambda-execution-role
```

### 2. Create and Push Test Lambda Image
```bash
cd infra/test/test-images/lambda

# Build for ARM64 (Lambda's default architecture)
docker build --platform linux/arm64 -t test-lambda .

# Tag for ECR
docker tag test-lambda:latest YOUR_ACCOUNT_ID.dkr.ecr.eu-central-1.amazonaws.com/test-lambda:latest

# Create ECR repository
aws ecr create-repository --repository-name test-lambda --region eu-central-1

# Login to ECR
aws ecr get-login-password --region eu-central-1 | docker login --username AWS --password-stdin YOUR_ACCOUNT_ID.dkr.ecr.eu-central-1.amazonaws.com

# Push image
docker push YOUR_ACCOUNT_ID.dkr.ecr.eu-central-1.amazonaws.com/test-lambda:latest
```

### 3. Create IAM Role for Lambda Execution
```bash
# Create trust policy for Lambda
cat > lambda-trust-policy.json << EOF
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": {
        "Service": "lambda.amazonaws.com"
      },
      "Action": "sts:AssumeRole"
    }
  ]
}
EOF

# Create the IAM role
aws iam create-role \
    --role-name lambda-execution-role \
    --assume-role-policy-document file://lambda-trust-policy.json

# Attach basic Lambda execution policy
aws iam attach-role-policy \
    --role-name lambda-execution-role \
    --policy-arn arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole

# Attach SQS execution policy (required for SQS event source mappings)
    aws iam attach-role-policy \
        --role-name lambda-execution-role \
        --policy-arn arn:aws:iam::aws:policy/service-role/AWSLambdaSQSQueueExecutionRole

# Get the role ARN (use this in ALIEN_TEST_AWS_LAMBDA_EXECUTION_ROLE_ARN)
aws iam get-role --role-name lambda-execution-role --query 'Role.Arn' --output text
```

### 4. Required Permissions
Your AWS credentials need these permissions:
- `lambda:*` (or specific Lambda permissions)
- `sqs:*` (or specific SQS permissions for SQS-Lambda integration tests)
- `iam:PassRole` for the Lambda execution role
- `ecr:GetAuthorizationToken`, `ecr:BatchCheckLayerAvailability`, `ecr:GetDownloadUrlForLayer`, `ecr:BatchGetImage`

**Note:** The Lambda execution role itself needs:
- `AWSLambdaBasicExecutionRole` (for CloudWatch logging)
- `AWSLambdaSQSQueueExecutionRole` (for SQS event source mappings)

## Running Tests
```bash
# Run all Lambda tests
cargo test --package alien-infra --test lambda_client_tests

# Run specific test
cargo test --package alien-infra --test lambda_client_tests test_end_to_end_function_execution -- --nocapture
```

## Troubleshooting

### SQS Event Source Mapping Permission Error
If you get an error like "The function execution role does not have permissions to call ReceiveMessage on SQS", make sure you've attached the `AWSLambdaSQSQueueExecutionRole` policy to your Lambda execution role:

```bash
aws iam attach-role-policy \
    --role-name lambda-execution-role \
    --policy-arn arn:aws:iam::aws:policy/service-role/AWSLambdaSQSQueueExecutionRole
```
*/

use alien_aws_clients::lambda::*;
use alien_aws_clients::sqs::SqsApi as _;
use alien_aws_clients::AwsCredentialProvider;
use alien_client_core::Error;
use alien_client_core::ErrorData;
use anyhow;
use backon::{ConstantBuilder, Retryable};
use chrono;
use reqwest::Client;
use std::collections::{HashMap, HashSet};
use std::path::PathBuf as StdPathBuf;
use std::sync::Mutex;
use std::time::Duration;
use test_context::{test_context, AsyncTestContext};
use tokio;
use tracing::{info, warn};
use uuid::Uuid;
use workspace_root;

struct LambdaTestContext {
    client: LambdaClient,
    image_uri: String,
    role_arn: String,
    created_functions: Mutex<HashSet<String>>,
    created_function_urls: Mutex<HashSet<String>>,
}

impl AsyncTestContext for LambdaTestContext {
    async fn setup() -> LambdaTestContext {
        let root: StdPathBuf = workspace_root::get_workspace_root();
        dotenvy::from_path(root.join(".env.test")).expect("Failed to load .env.test");
        tracing_subscriber::fmt::try_init().ok();

        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 aws_config = alien_aws_clients::AwsClientConfig {
            account_id,
            region,
            credentials: alien_aws_clients::AwsCredentials::AccessKeys {
                access_key_id: access_key,
                secret_access_key: secret_key,
                session_token: None,
            },
            service_overrides: None,
        };
        let client = LambdaClient::new(
            Client::new(),
            AwsCredentialProvider::from_config_sync(aws_config),
        );

        let image_uri = std::env::var("ALIEN_TEST_AWS_LAMBDA_IMAGE")
            .expect("ALIEN_TEST_AWS_LAMBDA_IMAGE must be set in .env.test");
        let role_arn =
            std::env::var("ALIEN_TEST_AWS_LAMBDA_EXECUTION_ROLE_ARN").unwrap_or_else(|_| {
                let account_id = std::env::var("AWS_MANAGEMENT_ACCOUNT_ID")
                    .expect("AWS_MANAGEMENT_ACCOUNT_ID must be set in .env.test");
                format!("arn:aws:iam::{}:role/lambda-execution-role", account_id)
            });

        LambdaTestContext {
            client,
            image_uri,
            role_arn,
            created_functions: Mutex::new(HashSet::new()),
            created_function_urls: Mutex::new(HashSet::new()),
        }
    }

    async fn teardown(self) {
        info!("🧹 Starting Lambda test cleanup...");

        let functions_to_cleanup = {
            let functions = self.created_functions.lock().unwrap();
            functions.clone()
        };

        let urls_to_cleanup = {
            let urls = self.created_function_urls.lock().unwrap();
            urls.clone()
        };

        // First clean up function URLs
        for function_name in &urls_to_cleanup {
            self.cleanup_function_url(function_name).await;
        }

        // Then clean up functions
        for function_name in functions_to_cleanup {
            self.cleanup_function(&function_name).await;
        }

        info!("βœ… Lambda test cleanup completed");
    }
}

impl LambdaTestContext {
    fn track_function(&self, function_name: &str) {
        let mut functions = self.created_functions.lock().unwrap();
        functions.insert(function_name.to_string());
        info!("πŸ“ Tracking function for cleanup: {}", function_name);
    }

    fn untrack_function(&self, function_name: &str) {
        let mut functions = self.created_functions.lock().unwrap();
        functions.remove(function_name);
        info!(
            "βœ… Function {} successfully cleaned up and untracked",
            function_name
        );
    }

    fn track_function_url(&self, function_name: &str) {
        let mut urls = self.created_function_urls.lock().unwrap();
        urls.insert(function_name.to_string());
        info!("πŸ“ Tracking function URL for cleanup: {}", function_name);
    }

    fn untrack_function_url(&self, function_name: &str) {
        let mut urls = self.created_function_urls.lock().unwrap();
        urls.remove(function_name);
        info!(
            "βœ… Function URL {} successfully cleaned up and untracked",
            function_name
        );
    }

    async fn cleanup_function_url(&self, function_name: &str) {
        info!("🧹 Cleaning up function URL: {}", function_name);

        match self
            .client
            .delete_function_url_config(function_name, None)
            .await
        {
            Ok(_) => {
                info!("βœ… Function URL {} deleted successfully", function_name);
            }
            Err(e) => {
                if !matches!(
                    e,
                    Error {
                        error: Some(ErrorData::RemoteResourceNotFound { .. }),
                        ..
                    }
                ) {
                    warn!(
                        "Failed to delete function URL {} during cleanup: {:?}",
                        function_name, e
                    );
                }
            }
        }
    }

    async fn cleanup_function(&self, function_name: &str) {
        info!("🧹 Cleaning up function: {}", function_name);

        match self.client.delete_function(function_name, None).await {
            Ok(_) => {
                info!("βœ… Function {} deleted successfully", function_name);
            }
            Err(e) => {
                if !matches!(
                    e,
                    Error {
                        error: Some(ErrorData::RemoteResourceNotFound { .. }),
                        ..
                    }
                ) {
                    warn!(
                        "Failed to delete function {} during cleanup: {:?}",
                        function_name, e
                    );
                }
            }
        }
    }

    fn get_test_function_name(&self) -> String {
        format!("alien-test-function-{}", Uuid::new_v4().simple())
    }

    async fn create_test_function(
        &self,
        function_name: &str,
    ) -> Result<FunctionConfiguration, Error> {
        let request = CreateFunctionRequest::builder()
            .function_name(function_name.to_string())
            .role(self.role_arn.clone())
            .code(
                FunctionCode::builder()
                    .image_uri(self.image_uri.clone())
                    .build(),
            )
            .description("Test function created by alien-infra tests".to_string())
            .timeout(30)
            .memory_size(128)
            .publish(false)
            .architectures(vec!["arm64".to_string()])
            .build();

        let result = self.client.create_function(request).await;
        if result.is_ok() {
            self.track_function(function_name);
        }
        result
    }

    async fn create_test_function_with_env(
        &self,
        function_name: &str,
        env_vars: HashMap<String, String>,
    ) -> Result<FunctionConfiguration, Error> {
        let request = CreateFunctionRequest::builder()
            .function_name(function_name.to_string())
            .role(self.role_arn.clone())
            .code(
                FunctionCode::builder()
                    .image_uri(self.image_uri.clone())
                    .build(),
            )
            .description("Test function created by alien-infra tests".to_string())
            .timeout(30)
            .memory_size(128)
            .publish(false)
            .environment(Environment::builder().variables(env_vars).build())
            .tracing_config(
                TracingConfig::builder()
                    .mode("PassThrough".to_string())
                    .build(),
            )
            .tags({
                let mut tags = HashMap::new();
                tags.insert("Environment".to_string(), "Test".to_string());
                tags.insert("Project".to_string(), "Alien".to_string());
                tags
            })
            .architectures(vec!["arm64".to_string()])
            .ephemeral_storage(EphemeralStorage::builder().size(512).build())
            .build();

        let result = self.client.create_function(request).await;
        if result.is_ok() {
            self.track_function(function_name);
        }
        result
    }

    async fn wait_for_function_ready(&self, function_name: &str) -> bool {
        info!("⏳ Waiting for function to be active...");
        let mut attempts = 0;
        let max_attempts = 30; // 5 minutes max wait

        loop {
            attempts += 1;

            match self
                .client
                .get_function_configuration(function_name, None)
                .await
            {
                Ok(config) => {
                    info!(
                        "πŸ“Š Function state: {:?}, update status: {:?}",
                        config.state.as_ref().unwrap_or(&"Unknown".to_string()),
                        config
                            .last_update_status
                            .as_ref()
                            .unwrap_or(&"Unknown".to_string())
                    );

                    if config.state == Some("Active".to_string())
                        && config.last_update_status == Some("Successful".to_string())
                    {
                        info!("βœ… Function is ready!");
                        return true;
                    }

                    if attempts >= max_attempts {
                        warn!("⚠️  Function didn't become ready within 5 minutes");
                        return false;
                    }

                    tokio::time::sleep(tokio::time::Duration::from_secs(10)).await;
                }
                Err(e) => {
                    warn!("Failed to get function status: {:?}", e);
                    tokio::time::sleep(tokio::time::Duration::from_secs(10)).await;
                }
            }
        }
    }

    async fn create_test_function_url(&self, function_name: &str) -> Result<String, Error> {
        let url_request = CreateFunctionUrlConfigRequest::builder()
            .auth_type("NONE".to_string())
            .cors(
                Cors::builder()
                    .allow_credentials(false)
                    .allow_headers(vec!["Content-Type".to_string(), "X-Amz-Date".to_string()])
                    .allow_methods(vec!["GET".to_string(), "POST".to_string()])
                    .allow_origins(vec!["*".to_string()])
                    .max_age(300)
                    .build(),
            )
            .invoke_mode("BUFFERED".to_string())
            .build();

        let result = self
            .client
            .create_function_url_config(function_name, url_request)
            .await;
        if result.is_ok() {
            self.track_function_url(function_name);
            Ok(result.unwrap().function_url)
        } else {
            Err(result.unwrap_err())
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_create_function_success(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!("πŸš€ Testing create function: {}", function_name);

    let _function_config = match ctx
        .create_test_function_with_env(&function_name, {
            let mut vars = HashMap::new();
            vars.insert("TEST_VAR".to_string(), "test_value".to_string());
            vars
        })
        .await
    {
        Ok(config) => {
            info!(
                "βœ… Function created: {}",
                config.function_name.as_deref().unwrap_or("Unknown")
            );
            config
        }
        Err(e) => {
            panic!("Function creation failed: {:?}. Please ensure you have proper AWS credentials and permissions set up in .env.test", e);
        }
    };

    // Function will be cleaned up automatically via teardown
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_get_function_configuration_not_found(ctx: &mut LambdaTestContext) {
    let non_existent_function = "alien-test-non-existent-function";

    let result = ctx
        .client
        .get_function_configuration(non_existent_function, None)
        .await;

    assert!(result.is_err());
    match result.unwrap_err() {
        Error {
            error:
                Some(ErrorData::RemoteResourceNotFound {
                    resource_type,
                    resource_name,
                    ..
                }),
            ..
        } => {
            assert_eq!(resource_type, "Function");
            assert_eq!(resource_name, non_existent_function);
        }
        other => panic!("Expected RemoteResourceNotFound, got: {:?}", other),
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_create_function_url_config_success(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!("πŸ”— Testing create function URL config: {}", function_name);

    // First create a function
    match ctx.create_test_function(&function_name).await {
        Ok(_) => {
            info!("βœ… Function created successfully, now testing URL config");

            // Wait for function to be ready
            if ctx.wait_for_function_ready(&function_name).await {
                match ctx.create_test_function_url(&function_name).await {
                    Ok(function_url) => {
                        info!("βœ… Successfully created function URL: {}", function_url);
                        assert!(function_url.starts_with("https://"));

                        // Verify we can get the URL config
                        match ctx
                            .client
                            .get_function_url_config(&function_name, None)
                            .await
                        {
                            Ok(url_config) => {
                                assert_eq!(url_config.function_url, function_url);
                                assert_eq!(url_config.auth_type, "NONE");
                            }
                            Err(e) => {
                                warn!("Failed to get function URL config: {:?}", e);
                            }
                        }
                    }
                    Err(e) => {
                        panic!("URL config creation failed: {:?}", e);
                    }
                }
            }
        }
        Err(e) => {
            panic!("Function creation failed: {:?}. Please ensure you have proper AWS credentials and permissions set up in .env.test", e);
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_create_function_with_invalid_role(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();
    let invalid_role_arn = "arn:aws:iam::123456789012:role/non-existent-role";

    info!(
        "🚫 Testing create function with invalid role: {}",
        function_name
    );

    let request = CreateFunctionRequest::builder()
        .function_name(function_name.clone())
        .role(invalid_role_arn.to_string())
        .code(
            FunctionCode::builder()
                .image_uri(ctx.image_uri.clone())
                .build(),
        )
        .description("Test function with invalid role".to_string())
        .timeout(30)
        .memory_size(128)
        .publish(false)
        .build();

    let result = ctx.client.create_function(request).await;

    assert!(result.is_err());
    // This should result in an access denied or invalid parameter error
    match result.unwrap_err() {
        Error {
            error: Some(ErrorData::RemoteAccessDenied { .. }),
            ..
        }
        | Error {
            error: Some(ErrorData::GenericError { .. }),
            ..
        } => {
            info!("βœ… Correctly rejected invalid role");
        }
        other => {
            warn!(
                "Got unexpected error type (may be valid depending on AWS setup): {:?}",
                other
            );
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_create_function_already_exists(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!("πŸ”„ Testing create duplicate function: {}", function_name);

    let request = CreateFunctionRequest::builder()
        .function_name(function_name.clone())
        .role(ctx.role_arn.clone())
        .code(
            FunctionCode::builder()
                .image_uri(ctx.image_uri.clone())
                .build(),
        )
        .description("Test function for duplicate creation".to_string())
        .timeout(30)
        .memory_size(128)
        .publish(false)
        .build();

    // Try to create function twice
    match ctx.client.create_function(request.clone()).await {
        Ok(_) => {
            info!("βœ… First function creation succeeded");
            ctx.track_function(&function_name);

            // Try to create the same function again
            let result = ctx.client.create_function(request).await;

            assert!(result.is_err());
            match result.unwrap_err() {
                Error {
                    error:
                        Some(ErrorData::RemoteResourceConflict {
                            resource_type,
                            resource_name,
                            ..
                        }),
                    ..
                } => {
                    assert_eq!(resource_type, "Function");
                    assert_eq!(resource_name, function_name);
                    info!("βœ… Correctly detected duplicate function creation");
                }
                other => {
                    panic!("Expected RemoteResourceConflict, got: {:?}", other);
                }
            }
        }
        Err(e) => {
            panic!("Initial function creation failed: {:?}. Please ensure you have proper AWS credentials and permissions set up in .env.test", e);
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_lambda_client_with_invalid_credentials(ctx: &mut LambdaTestContext) {
    let region = std::env::var("AWS_MANAGEMENT_REGION")
        .expect("AWS_MANAGEMENT_REGION must be set in .env.test");
    let account_id =
        std::env::var("AWS_MANAGEMENT_ACCOUNT_ID").unwrap_or_else(|_| "123456789012".to_string());
    let client_invalid = Client::new();

    let aws_config = alien_aws_clients::AwsClientConfig {
        account_id,
        region,
        credentials: alien_aws_clients::AwsCredentials::AccessKeys {
            access_key_id: "invalid".to_string(),
            secret_access_key: "invalid".to_string(),
            session_token: None,
        },
        service_overrides: None,
    };
    let lambda_client = LambdaClient::new(
        client_invalid,
        AwsCredentialProvider::from_config_sync(aws_config),
    );

    info!("πŸ” Testing Lambda client with invalid credentials");

    let result = lambda_client
        .get_function_configuration("any-function", None)
        .await;

    assert!(result.is_err());
    match result.unwrap_err() {
        Error {
            error: Some(ErrorData::RemoteAccessDenied { .. }),
            ..
        } => {
            info!("βœ… Correctly detected invalid credentials");
        }
        Error {
            error: Some(ErrorData::HttpRequestFailed { .. }),
            ..
        } => {
            info!("βœ… Got HTTP error for invalid credentials (also acceptable)");
        }
        other => {
            warn!(
                "Got unexpected error type for invalid credentials: {:?}",
                other
            );
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_serde_structs(ctx: &mut LambdaTestContext) {
    // Test serialization and deserialization of key structs
    let create_request = CreateFunctionRequest::builder()
        .function_name("test".to_string())
        .role("arn:aws:iam::123456789012:role/test".to_string())
        .code(
            FunctionCode::builder()
                .image_uri("123456789012.dkr.ecr.us-east-1.amazonaws.com/test:latest".to_string())
                .build(),
        )
        .build();

    let json = serde_json::to_string(&create_request).expect("Should serialize");
    assert!(json.contains("test"));
    assert!(json.contains("FunctionName")); // Verify PascalCase serialization
    assert!(json.contains("Role"));
    assert!(json.contains("Code"));
    assert!(json.contains("PackageType"));

    let cors = Cors::builder()
        .allow_credentials(true)
        .allow_headers(vec!["Content-Type".to_string()])
        .allow_methods(vec!["GET".to_string(), "POST".to_string()])
        .allow_origins(vec!["*".to_string()])
        .max_age(300)
        .build();

    let cors_json = serde_json::to_string(&cors).expect("Should serialize CORS");
    assert!(cors_json.contains("AllowCredentials"));
    assert!(cors_json.contains("AllowHeaders"));
    assert!(cors_json.contains("AllowMethods"));
    assert!(cors_json.contains("AllowOrigins"));
    assert!(cors_json.contains("MaxAge"));
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_http_request_signing_and_construction(ctx: &mut LambdaTestContext) {
    info!("πŸ”§ Testing HTTP request construction and signing");

    // Test that we can construct and sign an HTTP request
    // We'll call a method that makes an HTTP request but expect it to fail with permission error
    // This verifies the HTTP request construction, signing, and response parsing works
    let non_existent_function = "test-function-http-verification";

    let result = ctx
        .client
        .get_function_configuration(non_existent_function, None)
        .await;

    // This should make a real HTTP request and return a structured error
    assert!(result.is_err());

    let error = result.unwrap_err();
    match error {
        Error {
            error: Some(ErrorData::RemoteResourceNotFound { .. }),
            ..
        } => {
            // Perfect! This means we successfully:
            // 1. Constructed the HTTP request
            // 2. Signed it with AWS SigV4
            // 3. Made the HTTP call
            // 4. Received the response
            // 5. Parsed the JSON error response
            // 6. Mapped it to our error type
            info!("βœ“ HTTP request construction, signing, and response parsing all work!");
        }
        Error {
            error: Some(ErrorData::RemoteAccessDenied { .. }),
            ..
        } => {
            // Also good! This means HTTP worked but we have auth issues
            info!("βœ“ HTTP request works, got auth error (expected in some environments)");
        }
        other => {
            info!(
                "Got different error type, but HTTP request was made: {:?}",
                other
            );
            // Still counts as successful HTTP request/response cycle
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_end_to_end_function_execution(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!(
        "πŸš€ Starting end-to-end Lambda function test: {}",
        function_name
    );

    // Step 1: Create the function
    let _function_config = match ctx
        .create_test_function_with_env(&function_name, {
            let mut vars = HashMap::new();
            vars.insert("TEST_MODE".to_string(), "true".to_string());
            vars
        })
        .await
    {
        Ok(config) => {
            info!(
                "βœ… Function created: {}",
                config.function_name.as_deref().unwrap_or("Unknown")
            );
            config
        }
        Err(e) => {
            panic!("Function creation failed: {:?}. Please ensure you have proper AWS credentials and permissions set up in .env.test", e);
        }
    };

    // Step 2: Wait for function to be ready and proceed only if ready
    if ctx.wait_for_function_ready(&function_name).await {
        // Step 3: Create function URL
        info!("πŸ”— Creating function URL...");

        match ctx.create_test_function_url(&function_name).await {
            Ok(function_url) => {
                info!("βœ… Function URL created: {}", function_url);

                // Step 4: Add permissions for public access to the function URL.
                // Public Function URLs require both InvokeFunctionUrl and InvokeFunction.
                info!("πŸ” Adding permissions for public access...");
                let url_perm = AddPermissionRequest::builder()
                    .statement_id("AllowFunctionUrlInvoke".to_string())
                    .action("lambda:InvokeFunctionUrl".to_string())
                    .principal("*".to_string())
                    .function_url_auth_type("NONE".to_string())
                    .build();
                let invoke_perm = AddPermissionRequest::builder()
                    .statement_id("AllowPublicInvoke".to_string())
                    .action("lambda:InvokeFunction".to_string())
                    .principal("*".to_string())
                    .function_url_auth_type("NONE".to_string())
                    .build();

                for perm in [url_perm, invoke_perm] {
                    let sid = perm.statement_id.clone();
                    match ctx.client.add_permission(&function_name, perm).await {
                        Ok(_) => info!("βœ… Permission {} added", sid),
                        Err(e) => {
                            warn!("Failed to add permission {} (may still work): {:?}", sid, e)
                        }
                    }
                }

                // Step 5: Verify function URL config
                info!("πŸ” Verifying function URL configuration...");
                match ctx
                    .client
                    .get_function_url_config(&function_name, None)
                    .await
                {
                    Ok(url_config) => {
                        info!(
                            "βœ… Function URL config retrieved: {}",
                            url_config.function_url
                        );
                        assert_eq!(url_config.function_url, function_url);
                        assert_eq!(url_config.auth_type, "NONE");
                        if let Some(cors) = &url_config.cors {
                            assert_eq!(cors.allow_credentials, Some(false));
                        }
                    }
                    Err(e) => {
                        warn!("Failed to get function URL config: {:?}", e);
                    }
                }

                // Step 6: Test HTTP requests with retry logic
                info!("🌐 Testing HTTP requests to function with retry logic...");

                let http_client = reqwest::Client::new();
                let function_url_clone = function_url.clone();

                // Test GET request with retry
                let get_request = || async {
                    let response = http_client.get(&function_url_clone).send().await?;
                    let status = response.status();

                    if status.is_success() {
                        let body = response
                            .text()
                            .await
                            .unwrap_or_else(|_| "Failed to read body".to_string());
                        info!("πŸ“₯ GET Response: {} - {}", status, body);
                        Ok(body)
                    } else {
                        anyhow::bail!("GET request failed with status: {}", status);
                    }
                };

                match get_request
                    .retry(
                        ConstantBuilder::default()
                            .with_delay(Duration::from_secs(10))
                            .with_max_times(12),
                    )
                    .sleep(tokio::time::sleep)
                    .when(|_| true) // Retry on any error
                    .notify(|err: &anyhow::Error, dur: Duration| {
                        info!("πŸ”„ Retrying GET request after {:?}, error: {}", dur, err);
                    })
                    .await
                {
                    Ok(_) => {
                        info!("βœ… GET request successful!");
                    }
                    Err(e) => {
                        warn!("GET request failed after retries: {:?}", e);
                    }
                }

                // Test POST request with retry
                let post_request = || async {
                    let response = http_client
                        .post(&function_url_clone)
                        .header("Content-Type", "application/json")
                        .body(r#"{"test": "data", "method": "POST"}"#)
                        .send()
                        .await?;

                    let status = response.status();

                    if status.is_success() {
                        let body = response
                            .text()
                            .await
                            .unwrap_or_else(|_| "Failed to read body".to_string());
                        info!("πŸ“€ POST Response: {} - {}", status, body);
                        Ok(body)
                    } else {
                        anyhow::bail!("POST request failed with status: {}", status);
                    }
                };

                match post_request
                    .retry(
                        ConstantBuilder::default()
                            .with_delay(Duration::from_secs(10))
                            .with_max_times(12),
                    )
                    .sleep(tokio::time::sleep)
                    .when(|_| true) // Retry on any error
                    .notify(|err: &anyhow::Error, dur: Duration| {
                        info!("πŸ”„ Retrying POST request after {:?}, error: {}", dur, err);
                    })
                    .await
                {
                    Ok(_) => {
                        info!("βœ… POST request successful!");
                    }
                    Err(e) => {
                        warn!("POST request failed after retries: {:?}", e);
                    }
                }

                // Step 7: Test Lambda invoke functionality
                info!("πŸ“€ Testing Lambda invoke functionality...");

                // Test RequestResponse invocation with JSON payload
                info!("πŸ“€ Testing RequestResponse invocation with JSON payload...");
                let test_payload = r#"{"test": "data", "number": 42, "method": "invoke"}"#;
                let invoke_request = InvokeRequest::builder()
                    .function_name(function_name.clone())
                    .invocation_type(InvocationType::RequestResponse)
                    .payload(test_payload.as_bytes().to_vec())
                    .log_type("Tail".to_string())
                    .build();

                match ctx.client.invoke(invoke_request).await {
                    Ok(response) => {
                        info!("βœ… RequestResponse invocation successful!");
                        info!("   Status code: {}", response.status_code);

                        // Check if we have a function error
                        if let Some(ref function_error) = response.function_error {
                            info!("   Function error: {}", function_error);
                        } else {
                            info!("   No function error");
                        }

                        // Parse response payload
                        if !response.payload.is_empty() {
                            match String::from_utf8(response.payload.clone()) {
                                Ok(payload_str) => {
                                    info!(
                                        "   Response payload: {}",
                                        payload_str.chars().take(200).collect::<String>()
                                    );

                                    // Try to parse as JSON to verify structure
                                    if let Ok(parsed_json) =
                                        serde_json::from_str::<serde_json::Value>(&payload_str)
                                    {
                                        info!("   βœ… Response is valid JSON");
                                        if let Some(status_code) = parsed_json.get("statusCode") {
                                            info!("      StatusCode in response: {}", status_code);
                                        }
                                    }
                                }
                                Err(_) => {
                                    info!(
                                        "   Response payload is binary data ({} bytes)",
                                        response.payload.len()
                                    );
                                }
                            }
                        } else {
                            info!("   Empty response payload");
                        }

                        // Verify that we got a reasonable response
                        assert!(
                            response.status_code >= 200 && response.status_code < 300,
                            "Expected 2xx status code, got {}",
                            response.status_code
                        );
                    }
                    Err(e) => {
                        warn!("RequestResponse invocation failed: {:?}", e);
                    }
                }

                // Test Event (asynchronous) invocation
                info!("πŸ“€ Testing Event (async) invocation...");
                let async_payload =
                    r#"{"test": "async_data", "timestamp": "2023-01-01T00:00:00Z"}"#;
                let async_invoke_request = InvokeRequest::builder()
                    .function_name(function_name.clone())
                    .invocation_type(InvocationType::Event)
                    .payload(async_payload.as_bytes().to_vec())
                    .build();

                match ctx.client.invoke(async_invoke_request).await {
                    Ok(response) => {
                        info!("βœ… Event invocation successful!");
                        info!("   Status code: {}", response.status_code);

                        // For async invocations, we typically get 202 Accepted
                        if response.status_code == 202 {
                            info!("   βœ… Got expected 202 status for async invocation");
                        } else {
                            info!(
                                "   Got status {} (may vary by AWS setup)",
                                response.status_code
                            );
                        }

                        // Async invocations typically have empty payload
                        if response.payload.is_empty() {
                            info!("   βœ… Empty payload as expected for async invocation");
                        } else {
                            info!("   Response payload: {} bytes", response.payload.len());
                        }
                    }
                    Err(e) => {
                        warn!("Event invocation failed: {:?}", e);
                    }
                }

                // Test DryRun invocation (validation only)
                info!("πŸ“€ Testing DryRun invocation...");
                let dryrun_payload = r#"{"test": "dryrun_data"}"#;
                let dryrun_invoke_request = InvokeRequest::builder()
                    .function_name(function_name.clone())
                    .invocation_type(InvocationType::DryRun)
                    .payload(dryrun_payload.as_bytes().to_vec())
                    .build();

                match ctx.client.invoke(dryrun_invoke_request).await {
                    Ok(response) => {
                        info!("βœ… DryRun invocation successful!");
                        info!("   Status code: {}", response.status_code);

                        // DryRun should return 204 No Content
                        if response.status_code == 204 {
                            info!("   βœ… Got expected 204 status for dry run");
                        } else {
                            info!(
                                "   Got status {} (may vary by AWS setup)",
                                response.status_code
                            );
                        }
                    }
                    Err(e) => {
                        warn!("DryRun invocation failed: {:?}", e);
                    }
                }

                // Test invocation with qualifier (version)
                info!("πŸ“€ Testing invocation with qualifier...");
                let qualified_invoke_request = InvokeRequest::builder()
                    .function_name(function_name.clone())
                    .invocation_type(InvocationType::RequestResponse)
                    .qualifier("$LATEST".to_string())
                    .payload(r#"{"test": "qualified_invoke"}"#.as_bytes().to_vec())
                    .build();

                match ctx.client.invoke(qualified_invoke_request).await {
                    Ok(response) => {
                        info!("βœ… Qualified invocation successful!");
                        info!("   Status code: {}", response.status_code);
                        assert!(response.status_code >= 200 && response.status_code < 300);
                    }
                    Err(e) => {
                        warn!("Qualified invocation failed: {:?}", e);
                    }
                }

                // Step 8: Test error case - invoke non-existent function
                info!("🚫 Testing invoke on non-existent function...");
                let non_existent_function = "alien-test-non-existent-function-invoke";
                let error_invoke_request = InvokeRequest::builder()
                    .function_name(non_existent_function.to_string())
                    .invocation_type(InvocationType::RequestResponse)
                    .payload(r#"{"test": "error_case"}"#.as_bytes().to_vec())
                    .build();

                match ctx.client.invoke(error_invoke_request).await {
                    Ok(response) => {
                        // AWS might still return success but with error details in headers/payload
                        if let Some(ref function_error) = response.function_error {
                            info!("βœ… Function error reported in response: {}", function_error);
                        } else {
                            info!("ℹ️  Function invoke returned {} without function error (this may be valid depending on AWS behavior)", response.status_code);
                        }
                    }
                    Err(e) => {
                        // This is what we typically expect for non-existent functions
                        info!("βœ… Correctly got error for non-existent function: {:?}", e);
                    }
                }

                info!("βœ… Lambda invoke functionality testing completed!");
            }
            Err(e) => {
                warn!("Failed to create function URL: {:?}", e);
            }
        }
    }

    info!("πŸŽ‰ End-to-end test completed!");
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_update_function_code(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!("πŸ”„ Testing function code update: {}", function_name);

    // Step 1: Create initial function
    match ctx.create_test_function(&function_name).await {
        Ok(_) => {
            info!("βœ… Initial function created");

            // Step 2: Wait for function to be ready
            if ctx.wait_for_function_ready(&function_name).await {
                // Step 3: Update function code
                info!("πŸ“¦ Updating function code...");
                let update_request = UpdateFunctionCodeRequest::builder()
                    .image_uri(ctx.image_uri.clone()) // Using same image for simplicity
                    .publish(false)
                    .build();

                match ctx
                    .client
                    .update_function_code(&function_name, update_request)
                    .await
                {
                    Ok(updated_config) => {
                        info!("βœ… Function code updated successfully");
                        assert_eq!(
                            updated_config.function_name.as_deref(),
                            Some(function_name.as_str())
                        );
                        info!("Updated function state: {:?}", updated_config.state);
                    }
                    Err(e) => {
                        warn!("Function code update failed: {:?}", e);
                    }
                }
            }
        }
        Err(e) => {
            panic!("Initial function creation failed: {:?}", e);
        }
    }
}

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_get_policy(ctx: &mut LambdaTestContext) {
    let function_name = ctx.get_test_function_name();

    info!("πŸ“‹ Testing function policy operations: {}", function_name);

    // Step 1: Create function
    match ctx.create_test_function(&function_name).await {
        Ok(_) => {
            info!("βœ… Function created");

            // Step 2: Wait for function to be ready
            if ctx.wait_for_function_ready(&function_name).await {
                // Step 3: Try to get policy (should be empty initially)
                info!("πŸ“„ Getting initial policy (should be empty)...");
                match ctx.client.get_policy(&function_name, None).await {
                    Ok(policy_response) => {
                        info!("βœ… Got policy response: {:?}", policy_response.policy);
                    }
                    Err(e) => {
                        // This is expected for a new function with no policy
                        match e {
                            Error {
                                error: Some(ErrorData::RemoteResourceNotFound { .. }),
                                ..
                            } => {
                                info!("βœ… No policy found (expected for new function)");
                            }
                            other => {
                                warn!("Unexpected error getting policy: {:?}", other);
                            }
                        }
                    }
                }

                // Step 4: Add a permission
                info!("πŸ” Adding a permission...");
                let permission_request = AddPermissionRequest::builder()
                    .statement_id("TestPermission".to_string())
                    .action("lambda:InvokeFunction".to_string())
                    .principal("123456789012".to_string()) // Dummy account ID
                    .build();

                match ctx
                    .client
                    .add_permission(&function_name, permission_request)
                    .await
                {
                    Ok(_) => {
                        info!("βœ… Permission added");

                        // Step 5: Now get the policy again (should have content)
                        info!("πŸ“„ Getting policy after adding permission...");
                        match ctx.client.get_policy(&function_name, None).await {
                            Ok(policy_response) => {
                                info!("βœ… Got policy with content!");
                                if let Some(policy) = &policy_response.policy {
                                    assert!(policy.contains("TestPermission"));
                                    assert!(policy.contains("lambda:InvokeFunction"));
                                    info!("Policy contains expected elements");
                                }
                            }
                            Err(e) => {
                                warn!("Failed to get policy after adding permission: {:?}", e);
                            }
                        }
                    }
                    Err(e) => {
                        warn!("Failed to add permission: {:?}", e);
                    }
                }
            }
        }
        Err(e) => {
            panic!("Function creation failed: {:?}", e);
        }
    }
}

// ---------------------------------------------------------------------------
// Event Source Mapping End-to-End Tests
// ---------------------------------------------------------------------------

#[test_context(LambdaTestContext)]
#[tokio::test]
async fn test_sqs_lambda_event_source_mapping_e2e(ctx: &mut LambdaTestContext) {
    info!("πŸš€ Starting SQS to Lambda Event Source Mapping End-to-End Test");

    // Test names
    let function_name = ctx.get_test_function_name();
    let queue_name = format!("alien-test-queue-{}", Uuid::new_v4().simple());

    // Step 1: Create SQS client
    let sqs_client = alien_aws_clients::sqs::SqsClient::new(
        Client::new(),
        AwsCredentialProvider::from_config_sync(alien_aws_clients::AwsClientConfig {
            account_id: std::env::var("AWS_MANAGEMENT_ACCOUNT_ID")
                .expect("AWS_MANAGEMENT_ACCOUNT_ID must be set"),
            region: std::env::var("AWS_MANAGEMENT_REGION")
                .expect("AWS_MANAGEMENT_REGION must be set"),
            credentials: alien_aws_clients::AwsCredentials::AccessKeys {
                access_key_id: std::env::var("AWS_MANAGEMENT_ACCESS_KEY_ID")
                    .expect("AWS_MANAGEMENT_ACCESS_KEY_ID must be set"),
                secret_access_key: std::env::var("AWS_MANAGEMENT_SECRET_ACCESS_KEY")
                    .expect("AWS_MANAGEMENT_SECRET_ACCESS_KEY must be set"),
                session_token: None,
            },
            service_overrides: None,
        }),
    );

    // Step 2: Create SQS Queue
    info!("πŸ—‚οΈ Creating SQS queue: {}", queue_name);
    let queue_create_request = alien_aws_clients::sqs::CreateQueueRequest::builder()
        .queue_name(queue_name.clone())
        .attributes({
            let mut attrs = HashMap::new();
            attrs.insert("VisibilityTimeout".to_string(), "300".to_string()); // 5 minutes for Lambda processing
            attrs.insert("MessageRetentionPeriod".to_string(), "86400".to_string()); // 1 day
            attrs.insert(
                "ReceiveMessageWaitTimeSeconds".to_string(),
                "20".to_string(),
            ); // Long polling
            attrs
        })
        .tags({
            let mut tags = HashMap::new();
            tags.insert("Environment".to_string(), "Test".to_string());
            tags.insert("Purpose".to_string(), "Lambda-Integration".to_string());
            tags
        })
        .build();

    let queue_response = match sqs_client.create_queue(queue_create_request).await {
        Ok(response) => {
            info!(
                "βœ… SQS queue created: {}",
                response.create_queue_result.queue_url
            );
            response
        }
        Err(e) => {
            panic!("Failed to create SQS queue: {:?}", e);
        }
    };

    let queue_url = queue_response.create_queue_result.queue_url.clone();

    // Step 3: Get queue ARN (needed for event source mapping)
    info!("πŸ” Getting queue ARN...");
    let queue_arn = {
        let get_attrs_request = alien_aws_clients::sqs::GetQueueAttributesRequest::builder()
            .attribute_names(vec!["QueueArn".to_string()])
            .build();

        match sqs_client
            .get_queue_attributes(&queue_url, get_attrs_request)
            .await
        {
            Ok(response) => {
                let arn = response
                    .get_queue_attributes_result
                    .attributes
                    .iter()
                    .find(|attr| attr.name == "QueueArn")
                    .map(|attr| attr.value.clone())
                    .expect("QueueArn should be present");
                info!("βœ… Queue ARN: {}", arn);
                arn
            }
            Err(e) => {
                panic!("Failed to get queue ARN: {:?}", e);
            }
        }
    };

    // Step 4: Create Lambda function
    info!("⚑ Creating Lambda function: {}", function_name);
    let function_config = match ctx
        .create_test_function_with_env(&function_name, {
            let mut vars = HashMap::new();
            vars.insert("SQS_QUEUE_URL".to_string(), queue_url.clone());
            vars.insert("TEST_MODE".to_string(), "sqs_integration".to_string());
            vars
        })
        .await
    {
        Ok(config) => {
            info!(
                "βœ… Lambda function created: {}",
                config.function_name.as_deref().unwrap_or("Unknown")
            );
            config
        }
        Err(e) => {
            panic!("Lambda function creation failed: {:?}", e);
        }
    };

    // Step 5: Wait for Lambda function to be ready
    if !ctx.wait_for_function_ready(&function_name).await {
        panic!("Lambda function did not become ready in time");
    }

    // Step 6: Add permissions for SQS to invoke Lambda
    info!("πŸ” Adding SQS invoke permission to Lambda function...");
    let permission_request = AddPermissionRequest::builder()
        .statement_id("AllowSQSInvoke".to_string())
        .action("lambda:InvokeFunction".to_string())
        .principal("sqs.amazonaws.com".to_string())
        .build();

    match ctx
        .client
        .add_permission(&function_name, permission_request)
        .await
    {
        Ok(_) => {
            info!("βœ… SQS invoke permission added to Lambda function");
        }
        Err(e) => {
            warn!("Failed to add SQS permission (continuing anyway): {:?}", e);
        }
    }

    // Step 7: Create event source mapping
    info!("πŸ”— Creating SQS to Lambda event source mapping...");
    let create_mapping_request = CreateEventSourceMappingRequest::builder()
        .event_source_arn(queue_arn.clone())
        .function_name(function_name.clone())
        .batch_size(5) // Process up to 5 messages at once
        .enabled(true)
        .maximum_batching_window_in_seconds(10) // Wait up to 10 seconds to gather messages
        .function_response_types(vec!["ReportBatchItemFailures".to_string()]) // Enable partial batch failure reporting
        .scaling_config(ScalingConfig::builder().maximum_concurrency(5).build()) // Limit concurrency
        .build();

    let event_source_mapping = match ctx
        .client
        .create_event_source_mapping(create_mapping_request)
        .await
    {
        Ok(mapping) => {
            info!(
                "βœ… Event source mapping created: UUID={}",
                mapping.uuid.as_deref().unwrap_or("Unknown")
            );
            info!(
                "   State: {}",
                mapping.state.as_deref().unwrap_or("Unknown")
            );
            info!("   Batch size: {}", mapping.batch_size.unwrap_or(0));
            mapping
        }
        Err(e) => {
            panic!("Failed to create event source mapping: {:?}", e);
        }
    };

    let mapping_uuid = event_source_mapping
        .uuid
        .as_ref()
        .expect("Mapping should have UUID")
        .clone();

    // Step 8: Verify event source mapping
    info!("πŸ” Verifying event source mapping...");
    match ctx.client.get_event_source_mapping(&mapping_uuid).await {
        Ok(retrieved_mapping) => {
            assert_eq!(
                retrieved_mapping.uuid.as_deref(),
                Some(mapping_uuid.as_str())
            );
            assert_eq!(
                retrieved_mapping.event_source_arn.as_deref(),
                Some(queue_arn.as_str())
            );
            assert_eq!(retrieved_mapping.batch_size, Some(5));
            assert_eq!(
                retrieved_mapping.maximum_batching_window_in_seconds,
                Some(10)
            );
            info!("βœ… Event source mapping verification successful");
        }
        Err(e) => {
            warn!("Failed to verify event source mapping: {:?}", e);
        }
    }

    // Step 9: List event source mappings
    info!("πŸ“‹ Listing event source mappings for function...");
    let list_request = ListEventSourceMappingsRequest::builder()
        .function_name(function_name.clone())
        .max_items(10)
        .build();

    match ctx.client.list_event_source_mappings(list_request).await {
        Ok(list_response) => {
            let empty_vec = vec![];
            let mappings = list_response
                .event_source_mappings
                .as_ref()
                .unwrap_or(&empty_vec);
            info!(
                "βœ… Found {} event source mappings for function",
                mappings.len()
            );

            let our_mapping = mappings
                .iter()
                .find(|m| m.uuid.as_deref() == Some(mapping_uuid.as_str()));
            assert!(
                our_mapping.is_some(),
                "Should find our event source mapping in the list"
            );

            if let Some(mapping) = our_mapping {
                info!(
                    "   Our mapping - State: {}, BatchSize: {}",
                    mapping.state.as_deref().unwrap_or("Unknown"),
                    mapping.batch_size.unwrap_or(0)
                );
            }
        }
        Err(e) => {
            warn!("Failed to list event source mappings: {:?}", e);
        }
    }

    // Step 10: Update event source mapping
    info!("πŸ”„ Updating event source mapping (changing batch size)...");
    let update_request = UpdateEventSourceMappingRequest::builder()
        .batch_size(3) // Reduce batch size
        .maximum_batching_window_in_seconds(5) // Reduce batching window
        .build();

    match ctx
        .client
        .update_event_source_mapping(&mapping_uuid, update_request)
        .await
    {
        Ok(updated_mapping) => {
            info!("βœ… Event source mapping updated successfully");
            assert_eq!(updated_mapping.batch_size, Some(3));
            assert_eq!(updated_mapping.maximum_batching_window_in_seconds, Some(5));
        }
        Err(e) => {
            warn!("Failed to update event source mapping: {:?}", e);
        }
    }

    // Step 11: Send test messages to SQS
    info!("πŸ“€ Sending test messages to SQS queue...");
    for i in 1..=3 {
        let send_request = alien_aws_clients::sqs::SendMessageRequest::builder()
            .message_body(format!(
                r#"{{"test": true, "messageNumber": {}, "timestamp": "{}"}}"#,
                i,
                chrono::Utc::now().to_rfc3339()
            ))
            .message_attributes({
                let mut attrs = HashMap::new();
                attrs.insert(
                    "TestAttribute".to_string(),
                    alien_aws_clients::sqs::MessageAttributeValue::builder()
                        .string_value(format!("test-value-{}", i))
                        .data_type("String".to_string())
                        .build(),
                );
                attrs
            })
            .build();

        match sqs_client.send_message(&queue_url, send_request).await {
            Ok(response) => {
                info!(
                    "βœ… Message {} sent with ID: {}",
                    i, response.send_message_result.message_id
                );
            }
            Err(e) => {
                warn!("Failed to send message {}: {:?}", i, e);
            }
        }
    }

    // Step 12: Wait a bit for processing (in real scenarios, Lambda would process the messages)
    info!("⏳ Waiting for message processing...");
    tokio::time::sleep(tokio::time::Duration::from_secs(30)).await;

    // Step 13: Disable event source mapping temporarily
    info!("⏸️ Temporarily disabling event source mapping...");
    let disable_request = UpdateEventSourceMappingRequest::builder()
        .enabled(false)
        .build();

    match ctx
        .client
        .update_event_source_mapping(&mapping_uuid, disable_request)
        .await
    {
        Ok(disabled_mapping) => {
            info!("βœ… Event source mapping disabled");
            // Note: State might not immediately show as disabled due to eventual consistency
        }
        Err(e) => {
            warn!("Failed to disable event source mapping: {:?}", e);
        }
    }

    // Step 14: Re-enable event source mapping
    info!("▢️ Re-enabling event source mapping...");
    let enable_request = UpdateEventSourceMappingRequest::builder()
        .enabled(true)
        .build();

    match ctx
        .client
        .update_event_source_mapping(&mapping_uuid, enable_request)
        .await
    {
        Ok(enabled_mapping) => {
            info!("βœ… Event source mapping re-enabled");
        }
        Err(e) => {
            warn!("Failed to re-enable event source mapping: {:?}", e);
        }
    }

    // Step 15: Cleanup - Delete event source mapping
    info!("πŸ—‘οΈ Deleting event source mapping...");
    match ctx.client.delete_event_source_mapping(&mapping_uuid).await {
        Ok(deleted_mapping) => {
            info!("βœ… Event source mapping deleted successfully");
            info!(
                "   Final state: {}",
                deleted_mapping.state.as_deref().unwrap_or("Unknown")
            );
        }
        Err(e) => {
            warn!("Failed to delete event source mapping: {:?}", e);
        }
    }

    // Step 16: Cleanup - Delete SQS queue
    info!("πŸ—‘οΈ Deleting SQS queue...");
    match sqs_client.delete_queue(&queue_url).await {
        Ok(_) => {
            info!("βœ… SQS queue deleted successfully");
        }
        Err(e) => {
            warn!("Failed to delete SQS queue: {:?}", e);
        }
    }

    // Lambda function will be cleaned up automatically by the test context

    info!("πŸŽ‰ SQS to Lambda Event Source Mapping E2E Test completed successfully!");

    // Verify serialization works for our structs
    info!("πŸ§ͺ Verifying struct serialization...");
    let test_create_request = CreateEventSourceMappingRequest::builder()
        .event_source_arn("arn:aws:sqs:us-east-1:123456789012:test".to_string())
        .function_name("test-func".to_string())
        .batch_size(10)
        .enabled(true)
        .build();

    let json = serde_json::to_string(&test_create_request).expect("Should serialize");
    assert!(json.contains("EventSourceArn"));
    assert!(json.contains("FunctionName"));
    assert!(json.contains("BatchSize"));
    assert!(json.contains("Enabled"));

    info!("βœ… All struct serialization tests passed");
}