apollo-router 2.13.1

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
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
//! Cross Origin Resource Sharing (CORS configuration)
//!
//! This module provides configuration structures for CORS (Cross-Origin Resource Sharing) settings.
//!
//! # Default Behavior
//!
//! When the `policies` field is omitted from the CORS config, the router uses a default policy:
//! - **Origins:** `["https://studio.apollographql.com"]`
//! - **Methods:** `["GET", "POST", "OPTIONS"]`
//! - **Allow credentials:** `false`
//! - **Allow any origin:** `false`
//!
//! # Policy Configuration
//!
//! When specifying individual policies within the `policies` array:
//! - **Origins:** Defaults to `["https://studio.apollographql.com"]` when no policies are specified at all.
//!   If you specify any policies, you must explicitly set origins for each policy.
//! - **Match origins:** Defaults to an empty list (no regex matching) unless explicitly set
//! - **Allow credentials:** Has three possible states:
//!   - not specified: Use the global default allow_credentials
//!   - `true`: Enable credentials for this policy
//!   - `false`: Disable credentials for this policy
//! - **Allow headers:** Inherits global headers if empty, otherwise uses policy-specific headers
//! - **Expose headers:** Inherits global headers if empty, otherwise uses policy-specific headers
//! - **Methods:** Has three possible states:
//!   - not specified: Use the global default methods
//!   - `[]` (empty array): No methods allowed for this policy
//!   - `[values]` (with values): Use these specific methods
//! - **Max age:** Has three possible states:
//!   - not specified: Use the global default max_age
//!   - `"0s"` or other duration: Set specific max age for this policy
//!
//! # Origin Matching
//!
//! The router matches request origins against policies in order:
//! 1. **Exact match**: First checks if the origin exactly matches any origin in the policy's `origins` list
//! 2. **Regex match**: If no exact match is found, checks if the origin matches any pattern in the policy's `match_origins` list
//! 3. **No match**: If no policy matches, the request is rejected (no CORS headers are set)
//! # Examples
//!
//! ```yaml
//! # Use global default (Apollo Studio only)
//! cors: {}
//!
//! # Disable all CORS
//! cors:
//!   policies: []
//!
//! # Global methods with policy-specific overrides
//! cors:
//!   methods: [POST]  # Global default
//!   policies:
//!     - origins: [https://app1.com]
//!       # methods not specified - uses global default [POST]
//!     - origins: [https://app2.com]
//!       methods: []  # Explicitly disable all methods
//!     - origins: [https://app3.com]
//!       methods: [GET, DELETE]  # Use specific methods
//!     - origins: [https://api.example.com]
//!       match_origins: ["^https://.*\\.example\\.com$"]  # Regex pattern for subdomains
//!       allow_headers: [content-type, authorization]
//!       # Uses global methods [POST]
//! ```

use std::sync::Arc;
use std::time::Duration;

use regex::Regex;
use schemars::JsonSchema;
use serde::Deserialize;
use serde::Serialize;

/// Configuration for a specific set of origins
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[serde(deny_unknown_fields)]
#[serde(default)]
pub(crate) struct Policy {
    /// Set to true to add the `Access-Control-Allow-Credentials` header for these origins
    pub(crate) allow_credentials: Option<bool>,

    /// The headers to allow for these origins
    pub(crate) allow_headers: Arc<[Arc<str>]>,

    /// Which response headers should be made available to scripts running in the browser
    pub(crate) expose_headers: Arc<[Arc<str>]>,

    /// Regex patterns to match origins against.
    #[serde(with = "arc_regex")]
    #[schemars(with = "Vec<String>")]
    pub(crate) match_origins: Arc<[Regex]>,

    /// The `Access-Control-Max-Age` header value in time units
    #[serde(deserialize_with = "humantime_serde::deserialize", default)]
    #[schemars(with = "String", default)]
    pub(crate) max_age: Option<Duration>,

    /// Allowed request methods for these origins.
    pub(crate) methods: Option<Arc<[Arc<str>]>>,

    /// The origins to allow requests from.
    pub(crate) origins: Arc<[Arc<str>]>,

    /// When `Some`, the `Access-Control-Allow-Private-Network` header will be added as well as the
    /// respective headers contained within the policy.
    pub(crate) private_network_access: Option<PrivateNetworkAccessPolicy>,
}

#[derive(Debug, Default, Clone, Deserialize, Serialize, JsonSchema)]
#[serde(deny_unknown_fields)]
#[serde(default)]
pub(crate) struct PrivateNetworkAccessPolicy {
    /// When specified, the `Private-Network-Access-ID` header will be added with the given ID.
    /// The ID must be a 48-bit value presented as 6 hexadecimal bytes separated by colons, e.g.
    /// `01:23:45:67:89:0A`.
    pub(crate) access_id: Option<Arc<str>>,

    /// When `Some`, the `Private-Network-Access-Name` header will be added with the given name.
    /// The name can be at most 248 UTF-8 code units and match a RegEx equivalent to the ECMAScript
    /// RegEx `/^[a-z0-9_-.]+$/.`
    pub(crate) access_name: Option<Arc<str>>,
}

impl Default for Policy {
    fn default() -> Self {
        Self {
            allow_credentials: None,
            allow_headers: Arc::new([]),
            expose_headers: Arc::new([]),
            match_origins: Arc::new([]),
            max_age: None,
            methods: None,
            origins: default_origins(),
            private_network_access: None,
        }
    }
}

fn default_origins() -> Arc<[Arc<str>]> {
    Arc::new(["https://studio.apollographql.com".into()])
}

fn default_cors_methods() -> Arc<[Arc<str>]> {
    Arc::new(["GET".into(), "POST".into(), "OPTIONS".into()])
}

// Currently, this is only used for testing.
#[cfg(test)]
#[buildstructor::buildstructor]
impl Policy {
    #[builder]
    pub(crate) fn new(
        allow_credentials: Option<bool>,
        allow_headers: Vec<String>,
        expose_headers: Vec<String>,
        match_origins: Vec<Regex>,
        max_age: Option<Duration>,
        methods: Option<Vec<String>>,
        origins: Vec<String>,
        private_network_access: Option<PrivateNetworkAccessPolicy>,
    ) -> Self {
        Self {
            allow_credentials,
            allow_headers: allow_headers.into_iter().map(Arc::from).collect(),
            expose_headers: expose_headers.into_iter().map(Arc::from).collect(),
            match_origins: match_origins.into(),
            max_age,
            methods: methods.map(|methods| methods.into_iter().map(Arc::from).collect()),
            origins: origins.into_iter().map(Arc::from).collect(),
            private_network_access,
        }
    }
}

#[cfg(test)]
#[buildstructor::buildstructor]
impl PrivateNetworkAccessPolicy {
    #[builder]
    pub(crate) fn new(access_name: Option<String>, access_id: Option<String>) -> Self {
        Self {
            access_id: access_id.map(Arc::from),
            access_name: access_name.map(Arc::from),
        }
    }
}

/// Cross origin request configuration.
#[derive(Debug, Clone, Deserialize, Serialize, JsonSchema)]
#[serde(deny_unknown_fields)]
#[serde(default)]
pub(crate) struct Cors {
    /// Set to true to allow any origin. Defaults to false. This is the only way to allow Origin: null.
    pub(crate) allow_any_origin: bool,

    /// Set to true to add the `Access-Control-Allow-Credentials` header.
    pub(crate) allow_credentials: bool,

    /// The headers to allow.
    ///
    /// If this value is not set, the router will mirror client's `Access-Control-Request-Headers`.
    ///
    /// Note that if you set headers here,
    /// you also want to have a look at your `CSRF` plugins configuration,
    /// and make sure you either:
    /// - accept `x-apollo-operation-name` AND / OR `apollo-require-preflight`
    /// - defined `csrf` required headers in your yml configuration, as shown in the
    ///   `examples/cors-and-csrf/custom-headers.router.yaml` files.
    pub(crate) allow_headers: Arc<[Arc<str>]>,

    /// Which response headers should be made available to scripts running in the browser,
    /// in response to a cross-origin request.
    pub(crate) expose_headers: Option<Arc<[Arc<str>]>>,

    /// Allowed request methods. See module documentation for default behavior.
    pub(crate) methods: Arc<[Arc<str>]>,

    /// The `Access-Control-Max-Age` header value in time units
    #[serde(deserialize_with = "humantime_serde::deserialize", default)]
    #[schemars(with = "String", default)]
    pub(crate) max_age: Option<Duration>,

    /// The origin(s) to allow requests from. The router matches request origins against policies
    /// in order, first by exact match, then by regex. See module documentation for default behavior.
    pub(crate) policies: Option<Arc<[Policy]>>,
}

impl Default for Cors {
    fn default() -> Self {
        Self::builder().build()
    }
}

#[buildstructor::buildstructor]
impl Cors {
    #[builder]
    pub(crate) fn new(
        allow_any_origin: Option<bool>,
        allow_credentials: Option<bool>,
        allow_headers: Option<Vec<String>>,
        expose_headers: Option<Vec<String>>,
        max_age: Option<Duration>,
        methods: Option<Vec<String>>,
        policies: Option<Vec<Policy>>,
    ) -> Self {
        let global_methods = methods.map_or_else(default_cors_methods, |methods| {
            methods.into_iter().map(Arc::from).collect()
        });
        let policies = policies.or_else(|| {
            let default_policy = Policy {
                methods: Some(global_methods.clone()),
                ..Default::default()
            };
            Some(vec![default_policy])
        });

        Self {
            allow_any_origin: allow_any_origin.unwrap_or_default(),
            allow_credentials: allow_credentials.unwrap_or_default(),
            allow_headers: allow_headers.map_or_else(Default::default, |headers| {
                headers.into_iter().map(Arc::from).collect()
            }),
            expose_headers: expose_headers
                .map(|headers| headers.into_iter().map(Arc::from).collect()),
            max_age,
            methods: global_methods,
            policies: policies.map(Arc::from),
        }
    }
}

#[derive(Debug, thiserror::Error, PartialEq, Eq)]
pub(crate) enum CorsConfigError {
    #[error(
        "Invalid CORS configuration: use `allow_any_origin: true` to set `Access-Control-Allow-Origin: *`"
    )]
    AllowAnyOrigin,
    #[error(
        "Invalid CORS configuration: origins cannot have trailing slashes (a serialized origin has no trailing slash)"
    )]
    TrailingSlashInOrigin,
    #[error(
        "Invalid CORS configuration: Cannot combine `Access-Control-Allow-Credentials: true` with `Access-Control-Allow-Headers: *` in policy"
    )]
    AllowCredentialsWithAllowAnyHeaders,
    #[error(
        "Invalid CORS configuration: Cannot combine `Access-Control-Allow-Credentials: true` with `Access-Control-Allow-Methods: *` in policy"
    )]
    AllowCredentialsWithAllowAnyMethods,
    #[error(
        "Invalid CORS configuration: Cannot combine `Access-Control-Allow-Credentials: true` with `allow_any_origin: true`"
    )]
    AllowCredentialsWithAnyOrigin,
    #[error(
        "Invalid CORS configuration: Cannot combine `Access-Control-Allow-Credentials: true` with `Access-Control-Expose-Headers: *` in policy"
    )]
    AllowCredentialsWithExposeAnyHeaders,
    #[error(
        "Invalid CORS configuration: `Private-Network-Access-Name` header value must not be empty."
    )]
    EmptyPrivateNetworkAccessName,
    #[error(
        "Invalid CORS configuration: `Private-Network-Access-Name` header value must be no longer than 248 characters."
    )]
    LengthyPrivateNetworkAccessName,
    #[error(
        "Invalid CORS configuration: `Private-Network-Access-Name` header value can only contain the characters a-z0-9_-."
    )]
    InvalidPrivateNetworkAccessName,
    #[error(
        "Invalid CORS configuration: `Private-Network-Access-ID` header value must be a 48-bit value presented as 6 hexadecimal bytes separated by colons"
    )]
    InvalidPrivateNetworkAccessId,
}

impl Cors {
    pub(crate) fn into_layer(self) -> Result<crate::plugins::cors::CorsLayer, String> {
        crate::plugins::cors::CorsLayer::new(self)
    }

    // This is cribbed from the similarly named function in tower-http. The version there
    // asserts that CORS rules are useable, which results in a panic if they aren't. We
    // don't want the router to panic in such cases, so this function returns an error
    // with a message describing what the problem is.
    //
    // This function validates CORS configuration according to the CORS specification:
    // https://fetch.spec.whatwg.org/#cors-protocol-and-credentials
    //
    // CORS Specification Table (from https://fetch.spec.whatwg.org/#cors-protocol-and-credentials):
    //
    // Request's credentials mode | Access-Control-Allow-Origin | Access-Control-Allow-Credentials | Shared? | Notes
    // ---------------------------|------------------------------|-----------------------------------|---------|------
    // "omit"                     | `*`                          | Omitted                          | ✅      | —
    // "omit"                     | `*`                          | `true`                           | ✅      | If credentials mode is not "include", then `Access-Control-Allow-Credentials` is ignored.
    // "omit"                     | `https://rabbit.invalid/`    | Omitted                          | ❌      | A serialized origin has no trailing slash.
    // "omit"                     | `https://rabbit.invalid`     | Omitted                          | ✅      | —
    // "include"                  | `*`                          | `true`                           | ❌      | If credentials mode is "include", then `Access-Control-Allow-Origin` cannot be `*`.
    // "include"                  | `https://rabbit.invalid`     | `true`                           | ✅      | —
    // "include"                  | `https://rabbit.invalid`     | `True`                           | ❌      | `true` is (byte) case-sensitive.
    //
    // Similarly, `Access-Control-Expose-Headers`, `Access-Control-Allow-Methods`, and `Access-Control-Allow-Headers`
    // response headers can only use `*` as value when request's credentials mode is not "include".
    pub(crate) fn ensure_usable_cors_rules(&self) -> Result<(), CorsConfigError> {
        // Check for wildcard origins in any Policy
        if let Some(policies) = &self.policies {
            for policy in policies.iter() {
                if policy.origins.iter().any(|x| x.as_ref() == "*") {
                    return Err(CorsConfigError::AllowAnyOrigin);
                }

                // Validate that origins don't have trailing slashes (per CORS spec)
                for origin in policy.origins.iter() {
                    if origin.ends_with('/') && origin.as_ref() != "/" {
                        return Err(CorsConfigError::TrailingSlashInOrigin);
                    }
                }
            }
        }

        if self.allow_credentials {
            // Check global fields for wildcards
            if self.allow_headers.iter().any(|x| x.as_ref() == "*") {
                return Err(CorsConfigError::AllowCredentialsWithAllowAnyHeaders);
            }

            if self.methods.iter().any(|x| x.as_ref() == "*") {
                return Err(CorsConfigError::AllowCredentialsWithAllowAnyMethods);
            }

            if self.allow_any_origin {
                return Err(CorsConfigError::AllowCredentialsWithAnyOrigin);
            }

            if let Some(headers) = &self.expose_headers
                && headers.iter().any(|x| x.as_ref() == "*")
            {
                return Err(CorsConfigError::AllowCredentialsWithExposeAnyHeaders);
            }
        }

        // Check per-policy fields for wildcards when policy-level credentials are enabled
        if let Some(policies) = &self.policies {
            for policy in policies.iter() {
                // Check if policy-level credentials override is enabled
                let policy_credentials = policy.allow_credentials.unwrap_or(self.allow_credentials);

                if policy_credentials {
                    if policy.allow_headers.iter().any(|x| x.as_ref() == "*") {
                        return Err(CorsConfigError::AllowCredentialsWithAllowAnyHeaders);
                    }

                    if let Some(methods) = &policy.methods
                        && methods.iter().any(|x| x.as_ref() == "*")
                    {
                        return Err(CorsConfigError::AllowCredentialsWithAllowAnyMethods);
                    }

                    if policy.expose_headers.iter().any(|x| x.as_ref() == "*") {
                        return Err(CorsConfigError::AllowCredentialsWithExposeAnyHeaders);
                    }
                }

                if let Some(pna) = &policy.private_network_access {
                    if let Some(name) = &pna.access_name {
                        if name.is_empty() {
                            return Err(CorsConfigError::EmptyPrivateNetworkAccessName);
                        }

                        // NOTE: Simply checking the number of bytes in the string will suffice
                        // (rather than chars) since all chars in the name are only a byte wide.
                        if name.len() > 248 {
                            return Err(CorsConfigError::LengthyPrivateNetworkAccessName);
                        }

                        // The access name needs to make the EMCAscript ReGex: `/^[a-z0-9_-.]+$/.`
                        if name
                            .chars()
                            .any(|c| !matches!(c, 'a'..='z' | '0'..='9' | '_' | '-' | '.'))
                        {
                            return Err(CorsConfigError::InvalidPrivateNetworkAccessName);
                        }
                    }

                    // The access ID needs to follow pattern: XX:XX:XX:XX:XX:XX` (where "X" is a
                    // hexdigit). This is 17 characters long, seperated by colons, with each
                    // substring being only 2 characters long
                    if let Some(id) = &pna.access_id
                        && (id.len() != 17
                            || id
                                .split(':')
                                .any(|s| s.len() != 2 || s.chars().any(|c| !c.is_ascii_hexdigit())))
                    {
                        return Err(CorsConfigError::InvalidPrivateNetworkAccessId);
                    }
                }
            }
        }
        Ok(())
    }
}

mod arc_regex {
    use std::sync::Arc;

    use regex::Regex;
    use serde::Deserializer;
    use serde::Serializer;

    pub(super) fn serialize<S: Serializer>(
        values: &Arc<[Regex]>,
        serializer: S,
    ) -> Result<S::Ok, S::Error> {
        serde_regex::serialize(&values.to_vec(), serializer)
    }

    pub(super) fn deserialize<'de, D: Deserializer<'de>>(
        deserializer: D,
    ) -> Result<Arc<[Regex]>, D::Error> {
        serde_regex::deserialize::<Vec<Regex>, D>(deserializer).map(Arc::from)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_bad_allow_headers_cors_configuration() {
        let cors = Cors::builder()
            .allow_headers(vec![String::from("bad\nname")])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from("allow header name 'bad\nname' is not valid: invalid HTTP header name")
        );
    }

    #[test]
    fn test_bad_allow_methods_cors_configuration() {
        let cors = Cors::builder()
            .methods(vec![String::from("bad\nmethod")])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from("method 'bad\nmethod' is not valid: invalid HTTP method")
        );
    }

    #[test]
    fn test_bad_origins_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec![String::from("bad\norigin")])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from("origin 'bad\norigin' is not valid: failed to parse header value")
        );
    }

    #[test]
    fn test_bad_match_origins_cors_configuration() {
        let yaml = r#"
allow_any_origin: false
allow_credentials: false
allow_headers: []
expose_headers: []
methods: ["GET", "POST", "OPTIONS"]
policies:
  - origins: ["https://studio.apollographql.com"]
    allow_credentials: false
    allow_headers: []
    expose_headers: []
    match_origins: ["["]
    methods: ["GET", "POST", "OPTIONS"]
"#;
        let cors: Result<Cors, _> = serde_yaml::from_str(yaml);
        assert!(cors.is_err());
        let err = format!("{}", cors.unwrap_err());
        assert!(err.contains("regex parse error"));
        assert!(err.contains("unclosed character class"));
    }

    #[test]
    fn test_good_cors_configuration() {
        let cors = Cors::builder()
            .allow_headers(vec![String::from("good-name")])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that multiple Policy entries have correct precedence (exact match > regex)
    // This ensures the matching logic is deterministic and follows the documented behavior
    #[test]
    fn test_multiple_origin_config_precedence() {
        let cors = Cors::builder()
            .policies(vec![
                // This should match by regex but be lower priority
                Policy::builder()
                    .origins(vec![])
                    .match_origins(vec![
                        regex::Regex::new(r"https://.*\.example\.com").unwrap(),
                    ])
                    .allow_headers(vec!["regex-header".into()])
                    .build(),
                // This should match by exact match and be higher priority
                Policy::builder()
                    .origins(vec!["https://api.example.com".into()])
                    .allow_headers(vec!["exact-header".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test regex matching edge cases to ensure regexes are not too permissive or restrictive
    // This prevents security issues where unintended origins might be allowed
    #[test]
    fn test_regex_matching_edge_cases() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec![])
                    .match_origins(vec![
                        regex::Regex::new(r"https://[a-z]+\.example\.com").unwrap(),
                    ])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that wildcard origins in Policy are rejected
    // This ensures users must use allow_any_origin: true for wildcard behavior
    #[test]
    fn test_wildcard_origin_in_origin_config_rejected() {
        let cors = Cors::builder()
            .policies(vec![Policy::builder().origins(vec!["*".into()]).build()])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(layer.unwrap_err().contains("use `allow_any_origin: true`"));
    }

    // Test that allow_any_origin with credentials is rejected
    // This is forbidden by the CORS spec and prevents security issues
    #[test]
    fn test_allow_any_origin_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_any_origin(true)
            .allow_credentials(true)
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(
            layer
                .unwrap_err()
                .contains("Cannot combine `Access-Control-Allow-Credentials: true`")
        );
    }

    // Test that wildcard headers with credentials are rejected
    // This prevents security issues where credentials could be sent with any header
    #[test]
    fn test_wildcard_headers_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .allow_headers(vec!["*".into()])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(
            layer
                .unwrap_err()
                .contains("Cannot combine `Access-Control-Allow-Credentials: true`")
        );
    }

    // Test that wildcard methods with credentials are rejected
    // This prevents security issues where credentials could be sent with any method
    #[test]
    fn test_wildcard_methods_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .methods(vec!["*".into()])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(
            layer
                .unwrap_err()
                .contains("Cannot combine `Access-Control-Allow-Credentials: true`")
        );
    }

    // Test that wildcard expose headers with credentials are rejected
    // This prevents security issues where any header could be exposed with credentials
    #[test]
    fn test_wildcard_expose_headers_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .expose_headers(vec!["*".into()])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(
            layer
                .unwrap_err()
                .contains("Cannot combine `Access-Control-Allow-Credentials: true`")
        );
    }

    // Test that per-policy wildcard headers with credentials are rejected
    // This prevents security issues where credentials could be sent with any header in a policy
    #[test]
    fn test_per_policy_wildcard_headers_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_headers(vec!["*".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        let error_msg = layer.unwrap_err();
        assert!(error_msg.contains("Cannot combine `Access-Control-Allow-Credentials: true`"));
        assert!(error_msg.contains("in policy"));
    }

    // Test that per-policy wildcard methods with credentials are rejected
    // This prevents security issues where credentials could be sent with any method in a policy
    #[test]
    fn test_per_policy_wildcard_methods_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .methods(vec!["*".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        let error_msg = layer.unwrap_err();
        assert!(error_msg.contains("Cannot combine `Access-Control-Allow-Credentials: true`"));
        assert!(error_msg.contains("in policy"));
    }

    // Test that per-policy wildcard expose headers with credentials are rejected
    // This prevents security issues where any header could be exposed with credentials in a policy
    #[test]
    fn test_per_policy_wildcard_expose_headers_with_credentials_rejected() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .expose_headers(vec!["*".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        let error_msg = layer.unwrap_err();
        assert!(error_msg.contains("Cannot combine `Access-Control-Allow-Credentials: true`"));
        assert!(error_msg.contains("in policy"));
    }

    // Test that per-policy wildcard validation works with multiple policies
    // This ensures that validation checks all policies, not just the first one
    #[test]
    fn test_per_policy_wildcard_validation_with_multiple_policies() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_headers(vec!["content-type".into()])
                    .build(),
                Policy::builder()
                    .origins(vec!["https://another.com".into()])
                    .allow_headers(vec!["*".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        let error_msg = layer.unwrap_err();
        assert!(error_msg.contains("Cannot combine `Access-Control-Allow-Credentials: true`"));
        assert!(error_msg.contains("in policy"));
    }

    // Test that per-policy wildcard validation is skipped when credentials are disabled
    // This ensures that wildcards are allowed when credentials are not enabled
    #[test]
    fn test_per_policy_wildcard_allowed_when_credentials_disabled() {
        let cors = Cors::builder()
            .allow_credentials(false)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_headers(vec!["*".into()])
                    .methods(vec!["*".into()])
                    .expose_headers(vec!["*".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that Origin: null is only allowed with allow_any_origin: true
    // This ensures compliance with the CORS spec which only allows null origin in this case
    #[test]
    fn test_origin_null_only_allowed_with_allow_any_origin() {
        let cors = Cors::builder().allow_any_origin(true).build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());

        let cors_without_allow_any = Cors::builder().allow_any_origin(false).build();
        let layer = cors_without_allow_any.into_layer();
        assert!(layer.is_ok()); // This should be valid config, but null origin requests should be rejected
    }

    // Test that max_age is properly validated and handled
    // This ensures preflight caching works correctly and prevents invalid configurations
    #[test]
    fn test_max_age_validation() {
        // Valid max_age
        let cors = Cors::builder().max_age(Duration::from_secs(3600)).build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());

        // Zero max_age should be valid
        let cors_zero = Cors::builder().max_age(Duration::from_secs(0)).build();
        let layer_zero = cors_zero.into_layer();
        assert!(layer_zero.is_ok());
    }

    // Test that expose_headers are properly validated
    // This ensures that only valid header names can be exposed to the browser
    #[test]
    fn test_expose_headers_validation() {
        // Valid expose headers
        let cors = Cors::builder()
            .expose_headers(vec!["content-type".into(), "x-custom-header".into()])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());

        // Invalid expose header
        let cors_invalid = Cors::builder()
            .expose_headers(vec!["invalid\nheader".into()])
            .build();
        let layer_invalid = cors_invalid.into_layer();
        assert!(layer_invalid.is_err());
        assert!(layer_invalid.unwrap_err().contains("expose header name"));
    }

    // Test that origin-specific expose_headers are properly validated
    // This ensures per-origin configurations are validated correctly
    #[test]
    fn test_origin_specific_expose_headers_validation() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .expose_headers(vec!["invalid\nheader".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(layer.unwrap_err().contains("expose header name"));
    }

    // Test that origin-specific methods are properly validated
    // This ensures per-origin method configurations are validated correctly
    #[test]
    fn test_origin_specific_methods_validation() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .methods(vec!["INVALID\nMETHOD".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(layer.unwrap_err().contains("method"));
    }

    // Test that origin-specific allow_headers are properly validated
    // This ensures per-origin header configurations are validated correctly
    #[test]
    fn test_origin_specific_allow_headers_validation() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_headers(vec!["invalid\nheader".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());
        assert!(layer.unwrap_err().contains("allow header name"));
    }

    // Test that empty origins list is valid
    // This ensures the configuration can be used for deny-all scenarios
    #[test]
    fn test_empty_origins_list_valid() {
        let cors = Cors::builder().policies(vec![]).build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that empty methods list falls back to defaults
    // This ensures backward compatibility when methods are not specified
    #[test]
    fn test_empty_methods_falls_back_to_defaults() {
        let cors = Cors::builder().methods(vec![]).build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that empty allow_headers list is valid
    // This ensures the mirroring behavior works when no headers are configured
    #[test]
    fn test_empty_allow_headers_valid() {
        let cors = Cors::builder().allow_headers(vec![]).build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that complex regex patterns are handled correctly
    // This ensures advanced regex matching works for complex origin patterns
    #[test]
    fn test_complex_regex_patterns() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec![])
                    .match_origins(vec![
                        regex::Regex::new(r"https://(?:www\.)?example\.com").unwrap(),
                        regex::Regex::new(r"https://api-[0-9]+\.example\.com").unwrap(),
                    ])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that multiple regex patterns in a single Policy work
    // This ensures that multiple regex patterns can be used for the same origin configuration
    #[test]
    fn test_multiple_regex_patterns_in_single_origin_config() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec![])
                    .match_origins(vec![
                        regex::Regex::new(r"https://api\.example\.com").unwrap(),
                        regex::Regex::new(r"https://staging\.example\.com").unwrap(),
                    ])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that case-sensitive origin matching works correctly
    // This ensures that origin matching follows the CORS spec which requires case-sensitive matching
    #[test]
    fn test_case_sensitive_origin_matching() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://Example.com".into()])
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_ok());
    }

    // Test that policies without specified methods fall back to global methods
    // This ensures that the global methods are used when policies don't specify methods
    #[test]
    fn test_policy_falls_back_to_global_methods() {
        let cors = Cors::builder()
            .methods(vec!["POST".into()])
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .build(),
            ])
            .build();
        let layer = cors.clone().into_layer();
        assert!(layer.is_ok());

        // Verify that the policy has None methods (will fall back to global)
        let policies = cors.policies.unwrap();
        assert!(policies[0].methods.is_none());

        // Verify that the global methods are set correctly
        assert_eq!(cors.methods, Arc::from(["POST".into()]));
    }

    // Test that policy with Some([]) methods overrides global defaults
    // This ensures that explicitly setting empty methods disables all methods for that policy
    #[test]
    fn test_policy_empty_methods_override_global() {
        let cors = Cors::builder()
            .methods(vec!["POST".into(), "PUT".into()])
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .methods(vec![])
                    .build(),
            ])
            .build();
        let layer = cors.clone().into_layer();
        assert!(layer.is_ok());

        // Verify that the policy has Some([]) methods (overrides global)
        let policies = cors.policies.unwrap();
        assert_eq!(policies[0].methods, Some(Arc::from([])));

        // Verify that the global methods are set correctly
        assert_eq!(cors.methods, Arc::from(["POST".into(), "PUT".into()]));
    }

    // Test that policy with Some([value]) methods uses those specific values
    // This ensures that explicitly setting methods uses those exact methods
    #[test]
    fn test_policy_specific_methods_used() {
        let cors = Cors::builder()
            .methods(vec!["POST".into()])
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .methods(vec!["GET".into(), "DELETE".into()])
                    .build(),
            ])
            .build();
        let layer = cors.clone().into_layer();
        assert!(layer.is_ok());

        // Verify that the policy has specific methods
        let policies = cors.policies.unwrap();
        assert_eq!(
            policies[0].methods,
            Some(Arc::from(["GET".into(), "DELETE".into()]))
        );

        // Verify that the global methods are set correctly
        assert_eq!(cors.methods, Arc::from(["POST".into()]));
    }

    // Tests based on CORS specification table for credentials mode and Access-Control-Allow-Origin combinations
    // https://fetch.spec.whatwg.org/#cors-protocol

    // Test: credentials "omit" + Access-Control-Allow-Origin "*" + Access-Control-Allow-Credentials omitted = ✅
    #[test]
    fn test_cors_spec_omit_credentials_wildcard_origin_no_credentials_header() {
        let cors = Cors::builder()
            .allow_any_origin(true)
            .allow_credentials(false)
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test: credentials "omit" + Access-Control-Allow-Origin "*" + Access-Control-Allow-Credentials "true" = ✅
    // Note: This is allowed because when credentials mode is not "include", Access-Control-Allow-Credentials is ignored
    #[test]
    fn test_cors_spec_omit_credentials_wildcard_origin_with_credentials_header() {
        let cors = Cors::builder()
            .allow_any_origin(true)
            .allow_credentials(true)
            .build();
        let result = cors.ensure_usable_cors_rules();
        // This should fail in our implementation because we enforce the stricter rule
        assert!(result.is_err());
        assert_eq!(
            result.unwrap_err(),
            CorsConfigError::AllowCredentialsWithAnyOrigin
        );
    }

    // Test: credentials "omit" + Access-Control-Allow-Origin "https://rabbit.invalid/" + Access-Control-Allow-Credentials omitted = ❌
    // A serialized origin has no trailing slash
    #[test]
    fn test_cors_spec_origin_with_trailing_slash_rejected() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://rabbit.invalid/".into()])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), CorsConfigError::TrailingSlashInOrigin);
    }

    // Test: credentials "omit" + Access-Control-Allow-Origin "https://rabbit.invalid" + Access-Control-Allow-Credentials omitted = ✅
    #[test]
    fn test_cors_spec_origin_without_trailing_slash_accepted() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://rabbit.invalid".into()])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test: credentials "include" + Access-Control-Allow-Origin "https://rabbit.invalid" + Access-Control-Allow-Credentials "true" = ✅
    #[test]
    fn test_cors_spec_include_credentials_specific_origin_accepted() {
        let cors = Cors::builder()
            .allow_any_origin(false)
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://rabbit.invalid".into()])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test: credentials "include" + Access-Control-Allow-Origin "https://rabbit.invalid" + Access-Control-Allow-Credentials "True" = ❌
    // "true" is (byte) case-sensitive - but this is handled by serde deserialization
    // This test verifies our validation doesn't accidentally allow mixed case
    #[test]
    fn test_cors_spec_credentials_case_sensitivity_handled_by_serde() {
        // Since we use bool in our config, case sensitivity is handled by serde
        // This test ensures our validation doesn't break this behavior
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://rabbit.invalid".into()])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test policy-level credentials override behavior
    #[test]
    fn test_cors_spec_policy_level_credentials_override() {
        // Global credentials disabled, but policy-level credentials enabled should still validate
        let cors = Cors::builder()
            .allow_any_origin(false)
            .allow_credentials(false)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_credentials(true)
                    .allow_headers(vec!["*".into()]) // This should be rejected with policy-level credentials
                    .build(),
            ])
            .build();

        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_err());
        assert_eq!(
            result.unwrap_err(),
            CorsConfigError::AllowCredentialsWithAllowAnyHeaders
        );
    }

    // Test policy-level credentials disabled should allow wildcards even with global credentials enabled
    #[test]
    fn test_cors_spec_policy_level_credentials_disabled_allows_wildcards() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_credentials(false)
                    .allow_headers(vec!["*".into()]) // This should be allowed with policy-level credentials disabled
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test root path "/" as origin (special case)
    #[test]
    fn test_cors_spec_root_path_origin_allowed() {
        let cors = Cors::builder()
            .policies(vec![Policy::builder().origins(vec!["/".into()]).build()])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_ok());
    }

    // Test multiple trailing slash violations
    #[test]
    fn test_cors_spec_multiple_trailing_slash_violations() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .origins(vec![
                        "https://example.com".into(),      // Valid
                        "https://api.example.com/".into(), // Invalid
                        "https://app.example.com".into(),  // Valid
                    ])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_err());
        assert_eq!(result.unwrap_err(), CorsConfigError::TrailingSlashInOrigin);
    }

    // Test edge case: empty string origin
    #[test]
    fn test_cors_spec_empty_origin_handling() {
        let cors = Cors::builder()
            .policies(vec![Policy::builder().origins(vec!["".into()]).build()])
            .build();
        let result = cors.ensure_usable_cors_rules();
        // Empty string should be handled by header validation, not by our trailing slash check
        assert!(result.is_ok());
    }

    // Test comprehensive wildcard validation with all headers/methods/expose combinations
    #[test]
    fn test_cors_spec_comprehensive_wildcard_validation() {
        let cors = Cors::builder()
            .allow_credentials(true)
            .allow_headers(vec!["*".into()])
            .methods(vec!["*".into()])
            .expose_headers(vec!["*".into()])
            .policies(vec![
                Policy::builder()
                    .origins(vec!["https://example.com".into()])
                    .allow_headers(vec!["*".into()])
                    .methods(vec!["*".into()])
                    .expose_headers(vec!["*".into()])
                    .build(),
            ])
            .build();
        let result = cors.ensure_usable_cors_rules();
        assert!(result.is_err());
        // Should fail on the first wildcard check (global allow_headers)
        assert_eq!(
            result.unwrap_err(),
            CorsConfigError::AllowCredentialsWithAllowAnyHeaders
        );
    }

    #[test]
    fn test_empty_pna_access_name_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_name(String::from(""))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-Name` header value must not be empty."
            )
        );
    }

    #[test]
    fn test_bad_pna_access_name_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_name(String::from("Bad name"))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-Name` header value can only contain the characters a-z0-9_-."
            )
        );
    }

    #[test]
    fn test_long_pna_access_name_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_name("long_name".repeat(28))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-Name` header value must be no longer than 248 characters."
            )
        );
    }

    #[test]
    fn test_short_pna_access_id_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_id(String::from("01:23:45:56:78"))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-ID` header value must be a 48-bit value presented as 6 hexadecimal bytes separated by colons"
            )
        );
    }

    #[test]
    fn test_bad_pna_access_id_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_id(String::from("0:1:2:3:4:5:5:6:7"))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-ID` header value must be a 48-bit value presented as 6 hexadecimal bytes separated by colons"
            )
        );
    }

    #[test]
    fn test_non_hex_pna_access_id_cors_configuration() {
        let cors = Cors::builder()
            .policies(vec![
                Policy::builder()
                    .private_network_access(
                        PrivateNetworkAccessPolicy::builder()
                            .access_id(String::from("O1:23:45:56:78:9A"))
                            .build(),
                    )
                    .build(),
            ])
            .build();
        let layer = cors.into_layer();
        assert!(layer.is_err());

        assert_eq!(
            layer.unwrap_err(),
            String::from(
                "Invalid CORS configuration: `Private-Network-Access-ID` header value must be a 48-bit value presented as 6 hexadecimal bytes separated by colons"
            )
        );
    }
}