apollo-router 2.16.3

A configurable, high-performance routing runtime for Apollo Federation 🚀
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
//! Be aware that this test file contains some fairly flaky tests which embed a number of
//! assumptions about how traces and stats are reported to Apollo Studio.
//!
//! In particular:
//!  - There are timings (sleeps) which work as things are implemented right now, but
//!    may be sources of problems in the future.
//!
//!  - These tests must execute serially across this binary AND across the
//!    sibling `apollo_otel_traces` / `apollo_otel_http_proxy` binaries, because
//!    they each install process-wide OpenTelemetry tracer/meter providers and
//!    Apollo Studio mock collectors that would otherwise stomp each other.
//!    Serialization is enforced by the `serial-apollo-telemetry-integration`
//!    nextest test-group in `.config/nextest.toml` (an in-source mutex cannot
//!    do this because each `tests/*.rs` is a separate binary).
//!    DO NOT run these tests with bare `cargo test` -- only `cargo nextest`
//!    honours the group; bare `cargo test` will race the global state.
//!
//!  - There are assumptions about the different ways in which traces and metrics work. The main
//!    limitation with these tests is that you are unlikely to get a single report containing all the
//!    metrics that you need to make a test assertion. You might, but raciness in the way metrics are
//!    generated in the router means you probably won't. That's why the test `test_batch_stats` has
//!    its own stack of functions for testing and only tests that the total number of requests match.
//!
//! Summary: The dragons here are ancient and very evil. Do not attempt to take their treasure.
//!
use std::future::Future;
use std::io::Read;
use std::sync::Arc;
use std::time::Duration;
use std::time::Instant;

use anyhow::anyhow;
use apollo_router::TestHarness;
use apollo_router::make_fake_batch;
use apollo_router::services::router;
use apollo_router::services::router::BoxCloneService;
use apollo_router::services::supergraph;
use axum::Extension;
use axum::Json;
use axum::body::Bytes;
use axum::routing::post;
use flate2::read::GzDecoder;
use http::header::ACCEPT;
use http_body_util::BodyExt as _;
use once_cell::sync::Lazy;
use prost::Message;
use proto::reports::Report;
use tokio::sync::Mutex;
use tokio::task::JoinHandle;
use tower::Service;
use tower::ServiceExt;
use tower_http::decompression::DecompressionLayer;
use tracing_common::proto;
use wiremock::Mock;
use wiremock::MockServer;
use wiremock::ResponseTemplate;
use wiremock::matchers::method;
use wiremock::matchers::path;

mod tracing_common;

static ROUTER_SERVICE_RUNTIME: Lazy<Arc<tokio::runtime::Runtime>> = Lazy::new(|| {
    Arc::new(tokio::runtime::Runtime::new().expect("must be able to create tokio runtime"))
});

async fn config(
    use_legacy_request_span: bool,
    reports: Arc<Mutex<Vec<Report>>>,
    demand_control: bool,
    experimental_field_stats: bool,
    config_str: &str,
) -> (JoinHandle<()>, serde_json::Value) {
    *apollo_router::_private::APOLLO_KEY.lock() = Some("test".to_string());
    *apollo_router::_private::APOLLO_GRAPH_REF.lock() = Some("test".to_string());

    let listener = tokio::net::TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr = listener.local_addr().unwrap();
    let app = axum::Router::new()
        .route("/", post(report))
        .layer(DecompressionLayer::new())
        .layer(tower_http::add_extension::AddExtensionLayer::new(reports));

    let task = ROUTER_SERVICE_RUNTIME.spawn(async move {
        axum::serve(listener, app.into_make_service())
            .await
            .expect("could not start axum server")
    });

    let mut config = serde_yaml::from_str(config_str).expect("config yaml was invalid");

    config = jsonpath_lib::replace_with(config, "$.telemetry.apollo.endpoint", &mut |_| {
        Some(serde_json::Value::String(format!("http://{addr}")))
    })
    .expect("Could not sub in endpoint");
    config =
        jsonpath_lib::replace_with(config, "$.telemetry.spans.legacy_request_span", &mut |_| {
            Some(serde_json::Value::Bool(use_legacy_request_span))
        })
        .expect("Could not sub in endpoint");
    config = jsonpath_lib::replace_with(config, "$.demand_control.enabled", &mut |_| {
        Some(serde_json::Value::Bool(demand_control))
    })
    .expect("Could not sub in demand_control");

    config = jsonpath_lib::replace_with(
        config,
        "$.telemetry.apollo.experimental_local_field_metrics",
        &mut |_| Some(serde_json::Value::Bool(experimental_field_stats)),
    )
    .expect("Could not sub in experimental_local_field_metrics");
    (task, config)
}

async fn get_router_service(
    reports: Arc<Mutex<Vec<Report>>>,
    use_legacy_request_span: bool,
    mocked: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&str>,
) -> (JoinHandle<()>, BoxCloneService) {
    let (task, config) = config(
        use_legacy_request_span,
        reports,
        demand_control,
        experimental_local_field_metrics,
        config_str.unwrap_or(include_str!("fixtures/reports/apollo_reports.router.yaml")),
    )
    .await;
    let builder = TestHarness::builder()
        .try_log_level("INFO")
        .configuration_json(config)
        .expect("test harness had config errors")
        .schema(include_str!("fixtures/supergraph.graphql"));
    let builder = if mocked {
        builder.subgraph_hook(|subgraph, _service| tracing_common::subgraph_mocks(subgraph))
    } else {
        builder.with_subgraph_network_requests()
    };
    (
        task,
        builder
            .build_router()
            .await
            .expect("could create router test harness"),
    )
}

/// Stand up a localhost wiremock that serves canned federation responses
/// for the three demo subgraphs (`accounts`, `products`, `reviews`) at
/// distinct paths, so callers can `override_subgraph_url` the
/// `https://*.demo.starstuff.dev/` URIs hardcoded in
/// `fixtures/supergraph.graphql`.
///
/// `tests/fixtures/supergraph.graphql` points the federation subgraphs at
/// public Apollo demo hosts. Tests that go through
/// `with_subgraph_network_requests()` therefore hit the public internet,
/// and an `ECONNRESET` from those hosts (Linux CI runners see this
/// sporadically) turns the snapshot from "no subgraph errors" into a
/// `SubrequestHttpError`-shaped payload, drifting the snapshot. The
/// canned responses below are captured from the live demo deployment and
/// include valid base64-encoded FTV1 trace blobs in `extensions.ftv1`;
/// the FTV1 bytes are redacted by `assert_report!` (and not used by the
/// metrics shape at all), so any non-empty blob suffices.
///
/// Same shape as `apollo_otel_traces::start_demo_subgraphs_mock_server`,
/// which fixes the same flake mode for the sibling OTel-traces binary.
async fn start_demo_subgraphs_mock_server() -> MockServer {
    let server = wiremock::MockServer::builder().start().await;

    Mock::given(method("POST"))
        .and(path("/products"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": {
                "topProducts": [
                    {"__typename": "Product", "upc": "1", "name": "Table"},
                    {"__typename": "Product", "upc": "2", "name": "Couch"},
                    {"__typename": "Product", "upc": "3", "name": "Chair"},
                    {"__typename": "Product", "upc": "4", "name": "Bed"},
                ]
            },
            "extensions": {
                "ftv1": "GgwI+Py80AYQwPCHgAIiDAj4/LzQBhDA8IeAAljyuRRywgJivwIKC3RvcFByb2R1Y3RzGglbUHJvZHVjdF1AyK4KSIDhC2JEEABiHwoDdXBjGgdTdHJpbmchQMS8DUju7w1qB1Byb2R1Y3RiHwoEbmFtZRoGU3RyaW5nQIS3Dkjwyg5qB1Byb2R1Y3RiRBABYh8KA3VwYxoHU3RyaW5nIUDGqA9IutQPagdQcm9kdWN0Yh8KBG5hbWUaBlN0cmluZ0De5g9I7vMPagdQcm9kdWN0YkQQAmIfCgN1cGMaB1N0cmluZyFA4LIQSPC/EGoHUHJvZHVjdGIfCgRuYW1lGgZTdHJpbmdAsOoQSOb7EGoHUHJvZHVjdGJEEANiHwoDdXBjGgdTdHJpbmchQILBEUjI0BFqB1Byb2R1Y3RiHwoEbmFtZRoGU3RyaW5nQLLjEUik8BFqB1Byb2R1Y3RqBVF1ZXJ5+QEAAAAAAADwPw=="
            }
        })))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/reviews"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": {
                "_entities": [
                    {"reviews": [
                        {"author": {"__typename": "User", "id": "1"}},
                        {"author": {"__typename": "User", "id": "2"}},
                    ]},
                    {"reviews": [
                        {"author": {"__typename": "User", "id": "1"}},
                    ]},
                    {"reviews": [
                        {"author": {"__typename": "User", "id": "2"}},
                    ]},
                    {"reviews": []},
                ]
            },
            "extensions": {
                "ftv1": "GgwI+/y80AYQwObxvAMiDAj7/LzQBhDA1P26A1imyfwBcuEDYt4DCglfZW50aXRpZXMaCltfRW50aXR5XSFAjq/wAUjyr/oBYq0BEABiqAEKB3Jldmlld3MaCFtSZXZpZXddQL7h8wFIwuX0AWI/EABiOwoGYXV0aG9yGgRVc2VyQIa/9QFI/tP1AWIZCgJpZBoDSUQhQNyc9gFIrLH2AWoEVXNlcmoGUmV2aWV3Yj8QAWI7CgZhdXRob3IaBFVzZXJAju32AUiO9/YBYhkKAmlkGgNJRCFA7Jz3AUiGpfcBagRVc2VyagZSZXZpZXdqB1Byb2R1Y3RiaxABYmcKB3Jldmlld3MaCFtSZXZpZXddQKrG9wFIsuP3AWI/EABiOwoGYXV0aG9yGgRVc2VyQKD99wFI0pb4AWIZCgJpZBoDSUQhQISr+AFIssL4AWoEVXNlcmoGUmV2aWV3agdQcm9kdWN0YmsQAmJnCgdyZXZpZXdzGghbUmV2aWV3XUDG5fgBSKSB+QFiPxAAYjsKBmF1dGhvchoEVXNlckDilvkBSNqw+QFiGQoCaWQaA0lEIUDqwvkBSKLf+QFqBFVzZXJqBlJldmlld2oHUHJvZHVjdGIqEANiJgoHcmV2aWV3cxoIW1Jldmlld11A8v35AUjMiPoBagdQcm9kdWN0agVRdWVyefkBAAAAAAAA8D8="
            }
        })))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/accounts"))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "data": {
                "_entities": [
                    {"name": "Ada Lovelace"},
                    {"name": "Alan Turing"},
                ]
            },
            "extensions": {
                "ftv1": "GgsIgv280AYQwPP2NCILCIL9vNAGEMDhgjNY3JDaAXJyYnAKCV9lbnRpdGllcxoKW19FbnRpdHldIUCE/dQBSOqn2AFiIhAAYh4KBG5hbWUaBlN0cmluZ0DUuNcBSPru1wFqBFVzZXJiIhABYh4KBG5hbWUaBlN0cmluZ0DgidgBSNCV2AFqBFVzZXJqBVF1ZXJ5+QEAAAAAAADwPw=="
            }
        })))
        .mount(&server)
        .await;

    server
}

/// Variant of `get_router_service` that points the three demo subgraph URLs
/// at a localhost wiremock instead of the public `https://*.demo.starstuff.dev/`
/// hosts. The wiremock returns canned federation responses (with valid FTV1
/// trace blobs) captured from the live demo deployment so the resulting
/// metrics shape still matches the existing snapshots, but without any
/// off-box network egress.
///
/// Mirrors `apollo_otel_traces::get_router_service_with_subgraph_mock`. See
/// `start_demo_subgraphs_mock_server` for the broader root cause.
async fn get_router_service_with_subgraph_mock(
    reports: Arc<Mutex<Vec<Report>>>,
    use_legacy_request_span: bool,
    _mocked: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&str>,
) -> (JoinHandle<()>, BoxCloneService) {
    let (task, mut config) = config(
        use_legacy_request_span,
        reports,
        demand_control,
        experimental_local_field_metrics,
        config_str.unwrap_or(include_str!("fixtures/reports/apollo_reports.router.yaml")),
    )
    .await;

    let subgraph_mock = start_demo_subgraphs_mock_server().await;
    let mock_url = subgraph_mock.uri();
    // Leak so the wiremock outlives this helper's return. Tests in this
    // binary are serialised by the `serial-apollo-telemetry-integration`
    // nextest group, so leaking is safe.
    let _ = Box::leak(Box::new(subgraph_mock));

    if let Some(obj) = config.as_object_mut() {
        obj.insert(
            "override_subgraph_url".to_string(),
            serde_json::json!({
                "accounts": format!("{mock_url}/accounts"),
                "products": format!("{mock_url}/products"),
                "reviews": format!("{mock_url}/reviews"),
            }),
        );
    }

    let builder = TestHarness::builder()
        .try_log_level("INFO")
        .configuration_json(config)
        .expect("test harness had config errors")
        .schema(include_str!("fixtures/supergraph.graphql"))
        .with_subgraph_network_requests();
    (
        task,
        builder
            .build_router()
            .await
            .expect("could create router test harness"),
    )
}

async fn get_batch_router_service(
    reports: Arc<Mutex<Vec<Report>>>,
    use_legacy_request_span: bool,
    mocked: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&str>,
) -> (JoinHandle<()>, BoxCloneService) {
    let (task, config) = config(
        use_legacy_request_span,
        reports,
        demand_control,
        experimental_local_field_metrics,
        config_str.unwrap_or(include_str!(
            "fixtures/reports/apollo_reports_batch.router.yaml"
        )),
    )
    .await;
    let builder = TestHarness::builder()
        .try_log_level("INFO")
        .configuration_json(config)
        .expect("test harness had config errors")
        .schema(include_str!("fixtures/supergraph.graphql"));
    let builder = if mocked {
        builder.subgraph_hook(|subgraph, _service| tracing_common::subgraph_mocks(subgraph))
    } else {
        builder.with_subgraph_network_requests()
    };
    (
        task,
        builder
            .build_router()
            .await
            .expect("could create router test harness"),
    )
}

/// Batch counterpart of `get_router_service_with_subgraph_mock`. Swaps
/// the real `https://*.demo.starstuff.dev/` subgraph egress for a
/// localhost wiremock. See `start_demo_subgraphs_mock_server` /
/// ROUTER-1814 for the underlying flake.
async fn get_batch_router_service_with_subgraph_mock(
    reports: Arc<Mutex<Vec<Report>>>,
    use_legacy_request_span: bool,
    _mocked: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&str>,
) -> (JoinHandle<()>, BoxCloneService) {
    let (task, mut config) = config(
        use_legacy_request_span,
        reports,
        demand_control,
        experimental_local_field_metrics,
        config_str.unwrap_or(include_str!(
            "fixtures/reports/apollo_reports_batch.router.yaml"
        )),
    )
    .await;

    let subgraph_mock = start_demo_subgraphs_mock_server().await;
    let mock_url = subgraph_mock.uri();
    let _ = Box::leak(Box::new(subgraph_mock));

    if let Some(obj) = config.as_object_mut() {
        obj.insert(
            "override_subgraph_url".to_string(),
            serde_json::json!({
                "accounts": format!("{mock_url}/accounts"),
                "products": format!("{mock_url}/products"),
                "reviews": format!("{mock_url}/reviews"),
            }),
        );
    }

    let builder = TestHarness::builder()
        .try_log_level("INFO")
        .configuration_json(config)
        .expect("test harness had config errors")
        .schema(include_str!("fixtures/supergraph.graphql"))
        .with_subgraph_network_requests();
    (
        task,
        builder
            .build_router()
            .await
            .expect("could create router test harness"),
    )
}

macro_rules! assert_report {
        ($report: expr)=> {
            insta::with_settings!({sort_maps => true}, {
                    insta::assert_yaml_snapshot!($report, {
                        ".**.agent_version" => "[agent_version]",
                        ".**.executable_schema_id" => "[executable_schema_id]",
                        ".**.agent_id" => "[agent_id]",
                        ".header.hostname" => "[hostname]",
                        ".header.uname" => "[uname]",
                        ".**.seconds" => "[seconds]",
                        ".**.nanos" => "[nanos]",
                        ".**.duration_ns" => "[duration_ns]",
                        ".**.child[].start_time" => "[start_time]",
                        ".**.child[].end_time" => "[end_time]",
                        ".**.trace_id.value[]" => "[trace_id]",
                        ".**.sent_time_offset" => "[sent_time_offset]",
                        ".**.my_trace_id" => "[my_trace_id]",
                        ".**.latency_count" => "[latency_count]",
                        ".**.cache_latency_count" => "[cache_latency_count]",
                        ".**.public_cache_ttl_count" => "[public_cache_ttl_count]",
                        ".**.private_cache_ttl_count" => "[private_cache_ttl_count]",
                    });
                });
        }
    }

pub(crate) mod plugins {
    pub(crate) mod telemetry {
        pub(crate) mod apollo_exporter {
            use serde::ser::SerializeStruct;

            pub(crate) fn serialize_timestamp<S>(
                timestamp: &Option<prost_types::Timestamp>,
                serializer: S,
            ) -> Result<S::Ok, S::Error>
            where
                S: serde::Serializer,
            {
                match timestamp {
                    Some(ts) => {
                        let mut ts_strukt = serializer.serialize_struct("Timestamp", 2)?;
                        ts_strukt.serialize_field("seconds", &ts.seconds)?;
                        ts_strukt.serialize_field("nanos", &ts.nanos)?;
                        ts_strukt.end()
                    }
                    None => serializer.serialize_none(),
                }
            }
        }
    }
}

async fn report(
    Extension(state): Extension<Arc<Mutex<Vec<Report>>>>,
    bytes: Bytes,
) -> Result<Json<()>, http::StatusCode> {
    let mut gz = GzDecoder::new(&*bytes);
    let mut buf = Vec::new();
    gz.read_to_end(&mut buf)
        .expect("could not decompress bytes");
    let report = Report::decode(&*buf).expect("could not deserialize report");

    state.lock().await.push(report);
    Ok(Json(()))
}

fn has_metrics(r: &&Report) -> bool {
    !r.traces_per_query
        .values()
        .next()
        .expect("traces and stats required")
        .stats_with_context
        .is_empty()
}

async fn get_metrics_report(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&'static str>,
) -> Report {
    get_report(
        get_router_service,
        reports,
        false,
        false,
        request,
        demand_control,
        experimental_local_field_metrics,
        has_metrics,
        config_str,
    )
    .await
}

async fn get_batch_metrics_report(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
) -> u64 {
    get_batch_stats_report(reports, false, request, has_metrics).await
}

async fn get_metrics_report_mocked(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
    config_str: Option<&'static str>,
) -> Report {
    get_report(
        get_router_service,
        reports,
        false,
        true,
        request,
        false,
        false,
        has_metrics,
        config_str,
    )
    .await
}

/// Variant of `get_metrics_report` that swaps the real
/// `https://*.demo.starstuff.dev/` subgraph egress for a localhost
/// wiremock. See `start_demo_subgraphs_mock_server` / ROUTER-1814 for
/// the underlying flake.
async fn get_metrics_report_with_subgraph_mock(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&'static str>,
) -> Report {
    get_report(
        get_router_service_with_subgraph_mock,
        reports,
        false,
        false,
        request,
        demand_control,
        experimental_local_field_metrics,
        has_metrics,
        config_str,
    )
    .await
}

/// Trace-report counterpart of `get_metrics_report_with_subgraph_mock`.
/// Swaps the real `https://*.demo.starstuff.dev/` subgraph egress for a
/// localhost wiremock so the trace-family tests don't take a `ECONNRESET`
/// / `502` from the public demo subgraphs on CI. See
/// `start_demo_subgraphs_mock_server` and the sibling ROUTER-1823 /
/// ROUTER-1827 fixes for the underlying flake.
async fn get_trace_report_with_subgraph_mock(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
    use_legacy_request_span: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&'static str>,
) -> Report {
    get_report(
        get_router_service_with_subgraph_mock,
        reports,
        use_legacy_request_span,
        false,
        request,
        demand_control,
        experimental_local_field_metrics,
        |r| {
            !r.traces_per_query
                .values()
                .next()
                .expect("traces and stats required")
                .trace
                .is_empty()
        },
        config_str,
    )
    .await
}

/// Batch-trace-report counterpart of `get_trace_report_with_subgraph_mock`.
/// See `start_demo_subgraphs_mock_server` and the sibling ROUTER-1823
/// / ROUTER-1827 fixes for the underlying flake.
async fn get_batch_trace_report_with_subgraph_mock(
    reports: Arc<Mutex<Vec<Report>>>,
    request: router::Request,
    use_legacy_request_span: bool,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    config_str: Option<&'static str>,
) -> Report {
    get_report(
        get_batch_router_service_with_subgraph_mock,
        reports,
        use_legacy_request_span,
        false,
        request,
        demand_control,
        experimental_local_field_metrics,
        |r| {
            !r.traces_per_query
                .values()
                .next()
                .expect("traces and stats required")
                .trace
                .is_empty()
        },
        config_str,
    )
    .await
}

#[allow(clippy::too_many_arguments)]
async fn get_report<Fut, T: Fn(&&Report) -> bool + Send + Sync + Copy + 'static>(
    service_fn: impl FnOnce(
        Arc<Mutex<Vec<Report>>>,
        bool,
        bool,
        bool,
        bool,
        Option<&'static str>,
    ) -> Fut,
    reports: Arc<Mutex<Vec<Report>>>,
    use_legacy_request_span: bool,
    mocked: bool,
    request: router::Request,
    demand_control: bool,
    experimental_local_field_metrics: bool,
    filter: T,
    config_str: Option<&'static str>,
) -> Report
where
    Fut: Future<Output = (JoinHandle<()>, BoxCloneService)>,
{
    reports.lock().await.clear();
    let (task, mut service) = service_fn(
        reports.clone(),
        use_legacy_request_span,
        mocked,
        demand_control,
        experimental_local_field_metrics,
        config_str,
    )
    .await;
    let response = service
        .ready()
        .await
        .expect("router service was never ready")
        .call(request)
        .await
        .expect("router service call failed");

    // Drain the response
    let mut found_report = match response
        .response
        .into_body()
        .collect()
        .await
        .map(|b| String::from_utf8(b.to_bytes().to_vec()))
    {
        Ok(Ok(response)) => {
            if response.contains("errors") {
                eprintln!("response had errors {response}");
            }
            Ok(None)
        }
        _ => Err(anyhow!("error retrieving response")),
    };

    // Poll until the expected report arrives. The old 10 × 100 ms window was too tight for CI.
    let deadline = Instant::now() + Duration::from_secs(10);
    loop {
        let my_reports = reports.lock().await;
        let report = my_reports.iter().find(filter);
        if report.is_some() && matches!(found_report, Ok(None)) {
            found_report = Ok(report.cloned());
            break;
        }
        drop(my_reports);
        assert!(
            Instant::now() < deadline,
            "timed out waiting for matching report"
        );
        tokio::time::sleep(Duration::from_millis(50)).await;
    }
    task.abort();

    found_report
        .expect("failed to get report")
        .expect("failed to find report")
}

async fn get_batch_stats_report<T: Fn(&&Report) -> bool + Send + Sync + Copy + 'static>(
    reports: Arc<Mutex<Vec<Report>>>,
    mocked: bool,
    request: router::Request,
    filter: T,
) -> u64 {
    reports.lock().await.clear();
    let (task, mut service) =
        get_batch_router_service(reports.clone(), mocked, false, false, false, None).await;
    let response = service
        .ready()
        .await
        .expect("router service was never ready")
        .call(request)
        .await
        .expect("router service call failed");

    // Drain the response (and throw it away)
    let _found_report = response.response.into_body().collect().await;

    // Poll until at least one matching report with stats arrives. The old fixed 500 ms sleep
    // was too short under CI load.
    let deadline = Instant::now() + Duration::from_secs(10);
    let request_count = loop {
        let mut count = 0;
        for report in reports.lock().await.iter().filter(filter) {
            let stats = &report
                .traces_per_query
                .values()
                .next()
                .expect("has something")
                .stats_with_context;
            count += stats[0].query_latency_stats.as_ref().unwrap().request_count;
        }
        if count > 0 {
            break count;
        }
        assert!(
            Instant::now() < deadline,
            "timed out waiting for batch stats reports"
        );
        tokio::time::sleep(Duration::from_millis(50)).await;
    };
    task.abort();
    request_count
}

#[tokio::test(flavor = "multi_thread")]
async fn non_defer() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_condition_if() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query($if: Boolean!) {topProducts {  name    ... @defer(if: $if) {  reviews {    author {      name    }  }  reviews {    author {      name    }  }    }}}")
            .variable("if", true)
            .header(ACCEPT, "multipart/mixed;deferSpec=20220824")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_condition_else() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
        .query("query($if: Boolean!) {topProducts {  name    ... @defer(if: $if) {  reviews {    author {      name    }  }  reviews {    author {      name    }  }    }}}")
        .variable("if", false)
        .header(ACCEPT, "multipart/mixed;deferSpec=20220824")
        .build()
        .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_trace_id() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_batch_trace_id() {
    for use_legacy_request_span in [true, false] {
        let request = make_fake_batch(
            supergraph::Request::fake_builder()
                .query("query one {topProducts{name reviews {author{name}} reviews{author{name}}}}")
                .operation_name("one")
                .build()
                .unwrap()
                .supergraph_request,
            Some(("one", "two")),
        );
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_batch_trace_report_with_subgraph_mock(
            reports,
            request.into(),
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_trace_with_client_name_http_header() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .header("apollographql-client-name", "my client")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_trace_with_client_version_http_header() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .header("apollographql-client-version", "my client version")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_client_name_http_header() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .header("apollographql-client-name", "my client")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_client_version_http_header() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .header("apollographql-client-version", "my client version")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_library_name_http_header() {
    // Uses the wiremock-backed `get_metrics_report_with_subgraph_mock`
    // rather than `get_metrics_report`. The latter routes through
    // `with_subgraph_network_requests()` against the live
    // `https://*.demo.starstuff.dev/` subgraphs hardcoded in
    // `fixtures/supergraph.graphql`; on ARM Linux CI those hosts
    // sporadically reset the TLS connection (`ECONNRESET` / `os error 104`)
    // and the snapshot then drifts to a `SubrequestHttpError`-shaped
    // payload (see ROUTER-1814 sibling fix in `apollo_otel_traces`).
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .header("apollographql-library-name", "apollo library")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_library_version_http_header() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .header("apollographql-library-version", "apollo library version")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_library_name_request_extension() {
    let mut clients_map = serde_json_bytes::map::Map::new();
    clients_map.insert("name", "apollo library".into());
    let mut extensions_map = serde_json_bytes::map::Map::new();
    extensions_map.insert("clientLibrary", clients_map.into());

    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .extensions(extensions_map.clone())
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_metrics_with_library_version_request_extension() {
    let mut clients_map = serde_json_bytes::map::Map::new();
    clients_map.insert("version", "apollo library version".into());
    let mut extensions_map = serde_json_bytes::map::Map::new();
    extensions_map.insert("clientLibrary", clients_map.into());

    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .extensions(extensions_map.clone())
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_send_header() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .header("send-header", "Header value")
            .header("dont-send-header", "Header value")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_batch_send_header() {
    for use_legacy_request_span in [true, false] {
        let request = make_fake_batch(
            supergraph::Request::fake_builder()
                .query("query one {topProducts{name reviews {author{name}} reviews{author{name}}}}")
                .operation_name("one")
                .header("send-header", "Header value")
                .header("dont-send-header", "Header value")
                .build()
                .unwrap()
                .supergraph_request,
            Some(("one", "two")),
        );
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_batch_trace_report_with_subgraph_mock(
            reports,
            request.into(),
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_send_variable_value() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
        .query("query($sendValue:Boolean!, $dontSendValue: Boolean!){topProducts{name reviews @include(if: $sendValue) {author{name}} reviews @include(if: $dontSendValue){author{name}}}}")
        .variable("sendValue", true)
        .variable("dontSendValue", true)
        .build()
        .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            false,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_stats() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(reports, req, false, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_batch_stats() {
    let request = make_fake_batch(
        supergraph::Request::fake_builder()
            .query("query one {topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .operation_name("one")
            .build()
            .unwrap()
            .supergraph_request,
        Some(("one", "two")),
    );
    let reports = Arc::new(Mutex::new(vec![]));
    // We can't do a report assert here because we will probably have multiple reports which we
    // can't merge...
    // Let's call a function that enables us to at least assert that we received the correct number
    // of requests.
    let request_count = get_batch_metrics_report(reports, request.into()).await;
    assert!(request_count == 1 || request_count == 2);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_stats_mocked() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_mocked(reports, req, None).await;
    let per_query = report.traces_per_query.values().next().unwrap();
    let stats = per_query.stats_with_context.first().unwrap();
    insta::with_settings!({sort_maps => true}, {
        insta::assert_yaml_snapshot!(stats, {
            ".query_latency_stats.latency_count" => "[latency_count]"
        });
    });
}

#[tokio::test(flavor = "multi_thread")]
async fn test_new_field_stats() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(reports, req, true, true, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_demand_control_stats() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(reports, req, true, false, None).await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_demand_control_trace() {
    for use_legacy_request_span in [true, false] {
        let request = supergraph::Request::fake_builder()
            .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
            .build()
            .unwrap();
        let req: router::Request = request.try_into().expect("could not convert request");
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            true,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_demand_control_trace_batched() {
    for use_legacy_request_span in [true, false] {
        let request = make_fake_batch(
            supergraph::Request::fake_builder()
                .query("query one {topProducts{name reviews {author{name}} reviews{author{name}}}}")
                .operation_name("one")
                .build()
                .unwrap()
                .supergraph_request,
            Some(("one", "two")),
        );
        let req: router::Request = request.into();
        let reports = Arc::new(Mutex::new(vec![]));
        let report = get_batch_trace_report_with_subgraph_mock(
            reports,
            req,
            use_legacy_request_span,
            true,
            false,
            None,
        )
        .await;
        assert_report!(report);
    }
}

#[tokio::test(flavor = "multi_thread")]
async fn test_features_enabled() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(
        reports,
        req,
        false,
        false,
        Some(include_str!(
            "fixtures/reports/all_features_enabled.router.yaml"
        )),
    )
    .await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_features_disabled() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name reviews {author{name}} reviews{author{name}}}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(
        reports,
        req,
        false,
        false,
        Some(include_str!(
            "fixtures/reports/all_features_disabled.router.yaml"
        )),
    )
    .await;
    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_persisted_query_by_id_stats() {
    let request = supergraph::Request::fake_builder()
        .extension(
            "persistedQuery",
            serde_json::json!({
                "version": 1,
                "sha256Hash": "test_pq_id"
            }),
        )
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report_with_subgraph_mock(
        reports,
        req,
        false,
        false,
        Some(include_str!("fixtures/reports/pq_enabled.router.yaml")),
    )
    .await;

    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_persisted_query_by_safelist_body_stats() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(
        reports,
        req,
        false,
        false,
        Some(include_str!("fixtures/reports/pq_enabled.router.yaml")),
    )
    .await;

    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_persisted_query_by_id_logging_only_stats() {
    let request = supergraph::Request::fake_builder()
        .extension(
            "persistedQuery",
            serde_json::json!({
                "version": 1,
                "sha256Hash": "test_pq_id"
            }),
        )
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(
        reports,
        req,
        false,
        false,
        Some(include_str!("fixtures/reports/pq_logging.router.yaml")),
    )
    .await;

    assert_report!(report);
}

#[tokio::test(flavor = "multi_thread")]
async fn test_persisted_query_by_safelist_body_logging_pq_only_stats() {
    let request = supergraph::Request::fake_builder()
        .query("query{topProducts{name}}")
        .build()
        .unwrap();
    let req: router::Request = request.try_into().expect("could not convert request");
    let reports = Arc::new(Mutex::new(vec![]));
    let report = get_metrics_report(
        reports,
        req,
        false,
        false,
        Some(include_str!("fixtures/reports/pq_logging.router.yaml")),
    )
    .await;

    assert_report!(report);
}