fakecloud-appconfig 0.40.1

AWS AppConfig (appconfig + appconfigdata) implementation for FakeCloud
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
//! End-to-end handler tests for AWS AppConfig + AppConfig Data.
//!
//! Each test drives [`AppConfigService::handle`] with a hand-built restJson1
//! `AwsRequest`, proving real round-trip behaviour: create -> get/list reflect
//! persisted state, update persists, delete removes (and cascades to children),
//! hosted configuration version bytes round-trip with an auto-incrementing
//! version number, deployments settle to COMPLETE, predefined deployment
//! strategies resolve, the AppConfig Data plane returns deployed bytes, tags
//! round-trip, and documented error codes fire.

use std::collections::HashMap;
use std::sync::Arc;

use bytes::Bytes;
use http::{HeaderMap, Method};
use parking_lot::{Mutex, RwLock};
use serde_json::{json, Value};

use fakecloud_appconfig::{AppConfigService, SharedAppConfigState};
use fakecloud_core::multi_account::MultiAccountState;
use fakecloud_core::service::{AwsRequest, AwsResponse, AwsService, ResponseBody};

fn service() -> AppConfigService {
    let state: SharedAppConfigState = Arc::new(RwLock::new(MultiAccountState::new(
        "000000000000",
        "us-east-1",
        "",
    )));
    AppConfigService::new(state)
}

fn build(method: Method, path: &str, body: Bytes, headers: HeaderMap) -> AwsRequest {
    let raw_path = path.split('?').next().unwrap_or(path).to_string();
    let raw_query = path
        .split_once('?')
        .map(|(_, q)| q.to_string())
        .unwrap_or_default();
    let mut query_params = HashMap::new();
    for pair in raw_query.split('&').filter(|s| !s.is_empty()) {
        if let Some((k, v)) = pair.split_once('=') {
            query_params.insert(k.to_string(), v.to_string());
        }
    }
    let path_segments = raw_path
        .split('/')
        .filter(|s| !s.is_empty())
        .map(|s| s.to_string())
        .collect();
    AwsRequest {
        service: "appconfig".to_string(),
        action: String::new(),
        region: "us-east-1".to_string(),
        account_id: "000000000000".to_string(),
        request_id: "test".to_string(),
        headers,
        query_params,
        body,
        body_stream: Mutex::new(None),
        path_segments,
        raw_path,
        raw_query,
        method,
        is_query_protocol: false,
        access_key_id: None,
        principal: None,
    }
}

fn req(method: Method, path: &str, body: Value) -> AwsRequest {
    build(
        method,
        path,
        Bytes::from(serde_json::to_vec(&body).unwrap()),
        HeaderMap::new(),
    )
}

async fn call(svc: &AppConfigService, r: AwsRequest) -> AwsResponse {
    svc.handle(r).await.expect("handler returned an error")
}

async fn call_err(svc: &AppConfigService, r: AwsRequest) -> (u16, String) {
    match svc.handle(r).await {
        Ok(_) => panic!("expected an error, got success"),
        Err(e) => (e.status().as_u16(), e.code().to_string()),
    }
}

fn raw_bytes(resp: &AwsResponse) -> Vec<u8> {
    match &resp.body {
        ResponseBody::Bytes(b) => b.to_vec(),
        _ => panic!("non-bytes body"),
    }
}

fn body_of(resp: &AwsResponse) -> Value {
    let bytes = raw_bytes(resp);
    if bytes.is_empty() {
        return Value::Null;
    }
    serde_json::from_slice(&bytes).unwrap()
}

fn header(resp: &AwsResponse, name: &str) -> String {
    resp.headers
        .get(name)
        .and_then(|v| v.to_str().ok())
        .unwrap_or("")
        .to_string()
}

fn id_of(v: &Value) -> String {
    v.get("Id").and_then(|x| x.as_str()).unwrap().to_string()
}

async fn make_app(svc: &AppConfigService, name: &str) -> String {
    let resp = call(
        svc,
        req(Method::POST, "/applications", json!({ "Name": name })),
    )
    .await;
    assert_eq!(resp.status.as_u16(), 201);
    id_of(&body_of(&resp))
}

async fn make_profile(svc: &AppConfigService, app: &str, name: &str) -> String {
    let resp = call(
        svc,
        req(
            Method::POST,
            &format!("/applications/{app}/configurationprofiles"),
            json!({ "Name": name, "LocationUri": "hosted" }),
        ),
    )
    .await;
    assert_eq!(resp.status.as_u16(), 201);
    id_of(&body_of(&resp))
}

async fn make_env(svc: &AppConfigService, app: &str, name: &str) -> String {
    let resp = call(
        svc,
        req(
            Method::POST,
            &format!("/applications/{app}/environments"),
            json!({ "Name": name }),
        ),
    )
    .await;
    assert_eq!(resp.status.as_u16(), 201);
    id_of(&body_of(&resp))
}

/// Create a hosted configuration version with a raw body + Content-Type header.
async fn make_hosted_version(
    svc: &AppConfigService,
    app: &str,
    profile: &str,
    content: &[u8],
    content_type: &str,
) -> AwsResponse {
    let mut headers = HeaderMap::new();
    headers.insert("Content-Type", content_type.parse().unwrap());
    let r = build(
        Method::POST,
        &format!("/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions"),
        Bytes::copy_from_slice(content),
        headers,
    );
    call(svc, r).await
}

#[tokio::test]
async fn application_crud_roundtrip() {
    let svc = service();
    let app = make_app(&svc, "my-app").await;

    let got = body_of(
        &call(
            &svc,
            req(Method::GET, &format!("/applications/{app}"), Value::Null),
        )
        .await,
    );
    assert_eq!(got["Name"], "my-app");

    // Update mutates.
    let updated = body_of(
        &call(
            &svc,
            req(
                Method::PATCH,
                &format!("/applications/{app}"),
                json!({ "Description": "desc" }),
            ),
        )
        .await,
    );
    assert_eq!(updated["Description"], "desc");

    // List reflects.
    let list = body_of(&call(&svc, req(Method::GET, "/applications", Value::Null)).await);
    assert_eq!(list["Items"].as_array().unwrap().len(), 1);

    // Delete removes.
    let del = call(
        &svc,
        req(Method::DELETE, &format!("/applications/{app}"), Value::Null),
    )
    .await;
    assert_eq!(del.status.as_u16(), 204);
    let (code, name) = call_err(
        &svc,
        req(Method::GET, &format!("/applications/{app}"), Value::Null),
    )
    .await;
    assert_eq!(code, 404);
    assert_eq!(name, "ResourceNotFoundException");
}

#[tokio::test]
async fn delete_application_cascades_to_children() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;

    call(
        &svc,
        req(Method::DELETE, &format!("/applications/{app}"), Value::Null),
    )
    .await;

    // Both children are gone (their parent lookups now 404).
    let (c1, _) = call_err(
        &svc,
        req(
            Method::GET,
            &format!("/applications/{app}/configurationprofiles/{profile}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(c1, 404);
    let (c2, _) = call_err(
        &svc,
        req(
            Method::GET,
            &format!("/applications/{app}/environments/{env}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(c2, 404);
}

#[tokio::test]
async fn hosted_version_bytes_roundtrip_and_autoincrement() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;

    let content1 = b"{\"flag\": true}";
    let v1 = make_hosted_version(&svc, &app, &profile, content1, "application/json").await;
    assert_eq!(v1.status.as_u16(), 201);
    assert_eq!(header(&v1, "Version-Number"), "1");
    assert_eq!(raw_bytes(&v1), content1);

    // Second version auto-increments to 2 and keeps distinct bytes.
    let content2 = &[0u8, 1, 2, 3, 255];
    let v2 = make_hosted_version(&svc, &app, &profile, content2, "application/octet-stream").await;
    assert_eq!(header(&v2, "Version-Number"), "2");

    // Get returns the exact raw bytes + metadata headers.
    let got = call(
        &svc,
        req(
            Method::GET,
            &format!(
                "/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions/2"
            ),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(raw_bytes(&got), content2);
    assert_eq!(header(&got, "Content-Type"), "application/octet-stream");
    // The id headers the model binds are populated on both create and get.
    assert_eq!(header(&got, "Application-Id"), app);
    assert_eq!(header(&got, "Configuration-Profile-Id"), profile);
    assert_eq!(header(&v1, "Application-Id"), app);
    assert_eq!(header(&v1, "Configuration-Profile-Id"), profile);

    // List returns both summaries.
    let list = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                &format!("/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions"),
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(list["Items"].as_array().unwrap().len(), 2);

    // Delete removes v1; deleting the profile cascades away the rest.
    let del = call(
        &svc,
        req(
            Method::DELETE,
            &format!(
                "/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions/1"
            ),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(del.status.as_u16(), 204);
    call(
        &svc,
        req(
            Method::DELETE,
            &format!("/applications/{app}/configurationprofiles/{profile}"),
            Value::Null,
        ),
    )
    .await;
    let (code, _) = call_err(
        &svc,
        req(
            Method::GET,
            &format!(
                "/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions/2"
            ),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(code, 404);
}

#[tokio::test]
async fn deployment_strategy_custom_and_predefined() {
    let svc = service();
    let created = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                "/deploymentstrategies",
                json!({
                    "Name": "custom",
                    "DeploymentDurationInMinutes": 10,
                    "GrowthFactor": 25.0,
                    "GrowthType": "LINEAR",
                }),
            ),
        )
        .await,
    );
    let sid = id_of(&created);
    let got = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                &format!("/deploymentstrategies/{sid}"),
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(got["Name"], "custom");
    assert_eq!(got["DeploymentDurationInMinutes"], 10);

    // Predefined strategies resolve by their well-known ids.
    for id in [
        "AppConfig.AllAtOnce",
        "AppConfig.Linear50PercentEvery30Seconds",
        "AppConfig.Canary10Percent20Minutes",
    ] {
        let p = body_of(
            &call(
                &svc,
                req(
                    Method::GET,
                    &format!("/deploymentstrategies/{id}"),
                    Value::Null,
                ),
            )
            .await,
        );
        assert_eq!(p["Id"], id);
        assert_eq!(p["Name"], id);
    }

    // List includes the four predefined plus the custom one.
    let list = body_of(&call(&svc, req(Method::GET, "/deploymentstrategies", Value::Null)).await);
    assert!(list["Items"].as_array().unwrap().len() >= 5);

    // DELETE uses AWS's misspelled `deployementstrategies` path.
    let del = call(
        &svc,
        req(
            Method::DELETE,
            &format!("/deployementstrategies/{sid}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(del.status.as_u16(), 204);
}

#[tokio::test]
async fn deployment_settles_to_complete() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;
    make_hosted_version(&svc, &app, &profile, b"content", "text/plain").await;

    let dep = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                &format!("/applications/{app}/environments/{env}/deployments"),
                json!({
                    "DeploymentStrategyId": "AppConfig.AllAtOnce",
                    "ConfigurationProfileId": profile,
                    "ConfigurationVersion": "1",
                }),
            ),
        )
        .await,
    );
    assert_eq!(dep["State"], "COMPLETE");
    assert_eq!(dep["PercentageComplete"], 100.0);
    assert!(!dep["EventLog"].as_array().unwrap().is_empty());
    let number = dep["DeploymentNumber"].as_i64().unwrap();
    assert_eq!(number, 1);

    // Get reflects the settled deployment.
    let got = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                &format!("/applications/{app}/environments/{env}/deployments/{number}"),
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(got["State"], "COMPLETE");

    // Stop returns 202 and marks it rolled back.
    let stopped = call(
        &svc,
        req(
            Method::DELETE,
            &format!("/applications/{app}/environments/{env}/deployments/{number}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(stopped.status.as_u16(), 202);
    assert_eq!(body_of(&stopped)["State"], "ROLLED_BACK");

    // List shows the deployment summary.
    let list = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                &format!("/applications/{app}/environments/{env}/deployments"),
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(list["Items"].as_array().unwrap().len(), 1);
}

#[tokio::test]
async fn extension_and_association_crud() {
    let svc = service();
    let ext = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                "/extensions",
                json!({ "Name": "ext", "Actions": { "PRE_START_DEPLOYMENT": [] } }),
            ),
        )
        .await,
    );
    let ext_id = id_of(&ext);
    assert_eq!(ext["VersionNumber"], 1);

    let got = body_of(
        &call(
            &svc,
            req(Method::GET, &format!("/extensions/{ext_id}"), Value::Null),
        )
        .await,
    );
    assert_eq!(got["Name"], "ext");

    // UpdateExtension bumps VersionNumber (AWS increments on every update).
    let updated = body_of(
        &call(
            &svc,
            req(
                Method::PATCH,
                &format!("/extensions/{ext_id}"),
                json!({ "Description": "v2" }),
            ),
        )
        .await,
    );
    assert_eq!(updated["VersionNumber"], 2);
    assert_eq!(updated["Description"], "v2");

    let assoc = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                "/extensionassociations",
                json!({ "ExtensionIdentifier": ext_id, "ResourceIdentifier": "arn:aws:appconfig:us-east-1:000000000000:application/abc1234" }),
            ),
        )
        .await,
    );
    let assoc_id = id_of(&assoc);
    let got_assoc = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                &format!("/extensionassociations/{assoc_id}"),
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(
        got_assoc["ResourceArn"],
        "arn:aws:appconfig:us-east-1:000000000000:application/abc1234"
    );

    let del = call(
        &svc,
        req(
            Method::DELETE,
            &format!("/extensionassociations/{assoc_id}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(del.status.as_u16(), 204);
}

#[tokio::test]
async fn delete_application_cascades_child_tags() {
    // Regression: deleting an application must drop the tags of its child
    // environments and profiles, not just the application's own tags.
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;

    let app_arn = format!("arn:aws:appconfig:us-east-1:000000000000:application/{app}");
    let env_arn = format!("{app_arn}/environment/{env}");
    let profile_arn = format!("{app_arn}/configurationprofile/{profile}");
    for arn in [&app_arn, &env_arn, &profile_arn] {
        let enc = arn.replace('/', "%2F");
        call(
            &svc,
            req(
                Method::POST,
                &format!("/tags/{enc}"),
                json!({ "Tags": { "team": "infra" } }),
            ),
        )
        .await;
    }

    // Delete the application; its cascade must sweep child tags too.
    let del = call(
        &svc,
        req(Method::DELETE, &format!("/applications/{app}"), Value::Null),
    )
    .await;
    assert_eq!(del.status.as_u16(), 204);

    for arn in [&app_arn, &env_arn, &profile_arn] {
        let enc = arn.replace('/', "%2F");
        let tags =
            body_of(&call(&svc, req(Method::GET, &format!("/tags/{enc}"), Value::Null)).await);
        assert!(
            tags["Tags"].as_object().unwrap().is_empty(),
            "tags for {arn} should have been cascaded away"
        );
    }
}

#[tokio::test]
async fn delete_extension_association_removes_referenced_extension() {
    // Regression: deleting the sole association referencing an AWS-authored
    // extension must drop the referenced-extension shim it created.
    let svc = service();
    let assoc = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                "/extensionassociations",
                json!({
                    "ExtensionIdentifier": "AWS.AppConfig.JiraServiceManagement",
                    "ResourceIdentifier": "arn:aws:appconfig:us-east-1:000000000000:application/abc1234",
                }),
            ),
        )
        .await,
    );
    let assoc_id = id_of(&assoc);

    // GetExtension resolves via the referenced-extension shim.
    let got = body_of(
        &call(
            &svc,
            req(
                Method::GET,
                "/extensions/AWS.AppConfig.JiraServiceManagement",
                Value::Null,
            ),
        )
        .await,
    );
    assert_eq!(got["Name"], "AWS.AppConfig.JiraServiceManagement");

    call(
        &svc,
        req(
            Method::DELETE,
            &format!("/extensionassociations/{assoc_id}"),
            Value::Null,
        ),
    )
    .await;

    // The shim is gone now that no association references it.
    let (code, _) = call_err(
        &svc,
        req(
            Method::GET,
            "/extensions/AWS.AppConfig.JiraServiceManagement",
            Value::Null,
        ),
    )
    .await;
    assert_eq!(code, 404);
}

#[tokio::test]
async fn experiment_definition_and_run_lifecycle() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;

    let def = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                &format!("/applications/{app}/experimentdefinitions"),
                json!({
                    "Name": "exp",
                    "ConfigurationProfileIdentifier": profile,
                    "EnvironmentIdentifier": env,
                    "FlagKey": "flag",
                    "Treatments": [{ "Name": "t1", "VariantKey": "v1" }],
                    "Control": { "Name": "c", "VariantKey": "v0" },
                    "AudienceRule": "true",
                }),
            ),
        )
        .await,
    );
    let def_id = id_of(&def);
    assert_eq!(def["Status"], "IDLE");

    let run = body_of(
        &call(
            &svc,
            req(
                Method::POST,
                &format!("/applications/{app}/experimentdefinitions/{def_id}/experimentruns"),
                json!({ "Description": "run one" }),
            ),
        )
        .await,
    );
    let run_no = run["Run"].as_i64().unwrap();
    assert_eq!(run["Status"], "RUNNING");

    let stopped = body_of(
        &call(
            &svc,
            req(
                Method::PATCH,
                &format!("/applications/{app}/experimentdefinitions/{def_id}/experimentruns/{run_no}/stop"),
                json!({}),
            ),
        )
        .await,
    );
    assert_eq!(stopped["Status"], "DONE");
}

#[tokio::test]
async fn account_settings_get_and_update() {
    let svc = service();
    let default = body_of(&call(&svc, req(Method::GET, "/settings", Value::Null)).await);
    assert_eq!(default["DeletionProtection"]["Enabled"], false);

    let updated = body_of(
        &call(
            &svc,
            req(
                Method::PATCH,
                "/settings",
                json!({ "DeletionProtection": { "Enabled": true, "ProtectionPeriodInMinutes": 30 } }),
            ),
        )
        .await,
    );
    assert_eq!(updated["DeletionProtection"]["Enabled"], true);

    let reread = body_of(&call(&svc, req(Method::GET, "/settings", Value::Null)).await);
    assert_eq!(reread["DeletionProtection"]["Enabled"], true);
}

#[tokio::test]
async fn tags_roundtrip() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let arn = format!("arn:aws:appconfig:us-east-1:000000000000:application/{app}");
    let enc = arn.replace('/', "%2F");

    call(
        &svc,
        req(
            Method::POST,
            &format!("/tags/{enc}"),
            json!({ "Tags": { "team": "infra" } }),
        ),
    )
    .await;
    let tags = body_of(&call(&svc, req(Method::GET, &format!("/tags/{enc}"), Value::Null)).await);
    assert_eq!(tags["Tags"]["team"], "infra");

    call(
        &svc,
        req(
            Method::DELETE,
            &format!("/tags/{enc}?tagKeys=team"),
            Value::Null,
        ),
    )
    .await;
    let after = body_of(&call(&svc, req(Method::GET, &format!("/tags/{enc}"), Value::Null)).await);
    assert!(after["Tags"].as_object().unwrap().is_empty());
}

/// Deploy `version` of `profile` to `env` via AllAtOnce (settles COMPLETE).
async fn deploy(svc: &AppConfigService, app: &str, env: &str, profile: &str, version: &str) {
    let resp = call(
        svc,
        req(
            Method::POST,
            &format!("/applications/{app}/environments/{env}/deployments"),
            json!({
                "DeploymentStrategyId": "AppConfig.AllAtOnce",
                "ConfigurationProfileId": profile,
                "ConfigurationVersion": version,
            }),
        ),
    )
    .await;
    assert_eq!(resp.status.as_u16(), 201);
}

/// Start a data-plane session, returning its InitialConfigurationToken.
async fn start_session(svc: &AppConfigService, app: &str, env: &str, profile: &str) -> String {
    let session = body_of(
        &call(
            svc,
            req(
                Method::POST,
                "/configurationsessions",
                json!({
                    "ApplicationIdentifier": app,
                    "EnvironmentIdentifier": env,
                    "ConfigurationProfileIdentifier": profile,
                }),
            ),
        )
        .await,
    );
    session["InitialConfigurationToken"]
        .as_str()
        .unwrap()
        .to_string()
}

#[tokio::test]
async fn appconfigdata_session_returns_deployed_bytes() {
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;
    let content = b"{\"feature\": \"on\"}";
    make_hosted_version(&svc, &app, &profile, content, "application/json").await;
    deploy(&svc, &app, &env, &profile, "1").await;

    let token = start_session(&svc, &app, &env, &profile).await;

    // GetLatestConfiguration returns the deployed hosted-config bytes.
    let cfg = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={token}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(raw_bytes(&cfg), content);
    assert_eq!(header(&cfg, "Content-Type"), "application/json");
    assert!(!header(&cfg, "Next-Poll-Configuration-Token").is_empty());

    // An unknown token is a BadRequestException.
    let (code, name) = call_err(
        &svc,
        req(
            Method::GET,
            "/configuration?configuration_token=bogus",
            Value::Null,
        ),
    )
    .await;
    assert_eq!(code, 400);
    assert_eq!(name, "BadRequestException");
}

#[tokio::test]
async fn appconfigdata_next_poll_token_resolves_on_second_poll() {
    // Regression: the rotated Next-Poll-Configuration-Token must be a live
    // token, or the AWS poll loop dies with "Invalid ConfigurationToken".
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;
    let content = b"{\"k\": 1}";
    make_hosted_version(&svc, &app, &profile, content, "application/json").await;
    deploy(&svc, &app, &env, &profile, "1").await;

    let token = start_session(&svc, &app, &env, &profile).await;
    let first = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={token}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(first.status.as_u16(), 200);
    let next = header(&first, "Next-Poll-Configuration-Token");
    assert!(!next.is_empty());

    // Poll again with the rotated token: still 200, still the bytes.
    let second = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={next}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(second.status.as_u16(), 200);
    assert_eq!(raw_bytes(&second), content);
    assert!(!header(&second, "Next-Poll-Configuration-Token").is_empty());
}

#[tokio::test]
async fn appconfigdata_serves_deployed_version_not_latest() {
    // Regression: the data plane must serve the DEPLOYED version, not merely
    // the newest hosted version.
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;

    let v1_bytes = b"{\"v\": 1}";
    make_hosted_version(&svc, &app, &profile, v1_bytes, "application/json").await;
    deploy(&svc, &app, &env, &profile, "1").await;

    // Create v2 but DO NOT deploy it.
    make_hosted_version(&svc, &app, &profile, b"{\"v\": 2}", "application/json").await;

    let token = start_session(&svc, &app, &env, &profile).await;
    let cfg = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={token}"),
            Value::Null,
        ),
    )
    .await;
    // Deployed v1 wins over the newer, undeployed v2.
    assert_eq!(raw_bytes(&cfg), v1_bytes);

    // Legacy GetConfiguration agrees.
    let legacy = call(
        &svc,
        req(
            Method::GET,
            &format!(
                "/applications/{app}/environments/{env}/configurations/{profile}?client_id=c1"
            ),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(raw_bytes(&legacy), v1_bytes);
    assert_eq!(header(&legacy, "Configuration-Version"), "1");
}

#[tokio::test]
async fn appconfigdata_no_deployment_returns_empty() {
    // An environment with no deployment serves an empty configuration.
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;
    make_hosted_version(&svc, &app, &profile, b"{\"x\": 1}", "application/json").await;

    let token = start_session(&svc, &app, &env, &profile).await;
    let cfg = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={token}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(cfg.status.as_u16(), 200);
    assert!(raw_bytes(&cfg).is_empty());
    // No served version => no Version-Label header (never the literal "null").
    assert_eq!(header(&cfg, "Version-Label"), "");
}

#[tokio::test]
async fn appconfigdata_version_label_is_the_label_not_number() {
    // Regression: Version-Label must carry the served version's label string,
    // not its number, and be omitted when unlabeled.
    let svc = service();
    let app = make_app(&svc, "app").await;
    let profile = make_profile(&svc, &app, "prof").await;
    let env = make_env(&svc, &app, "env").await;

    // Hosted version 1 carries a VersionLabel header.
    let mut headers = HeaderMap::new();
    headers.insert("Content-Type", "application/json".parse().unwrap());
    headers.insert("VersionLabel", "release-2024".parse().unwrap());
    let r = build(
        Method::POST,
        &format!("/applications/{app}/configurationprofiles/{profile}/hostedconfigurationversions"),
        Bytes::from_static(b"{\"labeled\": true}"),
        headers,
    );
    call(&svc, r).await;
    deploy(&svc, &app, &env, &profile, "1").await;

    let token = start_session(&svc, &app, &env, &profile).await;
    let cfg = call(
        &svc,
        req(
            Method::GET,
            &format!("/configuration?configuration_token={token}"),
            Value::Null,
        ),
    )
    .await;
    assert_eq!(header(&cfg, "Version-Label"), "release-2024");
}

#[tokio::test]
async fn missing_and_invalid_inputs_error() {
    let svc = service();
    // Missing required Name -> BadRequestException.
    let (code, name) = call_err(&svc, req(Method::POST, "/applications", json!({}))).await;
    assert_eq!(code, 400);
    assert_eq!(name, "BadRequestException");

    // Unknown application -> ResourceNotFoundException.
    let (code, name) = call_err(&svc, req(Method::GET, "/applications/zzz9999", Value::Null)).await;
    assert_eq!(code, 404);
    assert_eq!(name, "ResourceNotFoundException");

    // Out-of-range MaxResults is rejected by model validation.
    let (code, _) = call_err(
        &svc,
        req(Method::GET, "/applications?max_results=0", Value::Null),
    )
    .await;
    assert_eq!(code, 400);
}