htsget-http 0.8.5

Crate for handling HTTP in htsget-rs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
//! The htsget authorization middleware.
//!

use crate::error::{Result as HtsGetResult, WrappedHtsGetError};
use crate::middleware::error::Error::AuthBuilderError;
use crate::middleware::error::Result;
use crate::{Endpoint, HtsGetError};
use cfg_if::cfg_if;
use headers::authorization::Bearer;
use headers::{Authorization, Header};
use htsget_config::config::advanced::CONTEXT_HEADER_PREFIX;
use htsget_config::config::advanced::auth::authorization::UrlOrStatic;
use htsget_config::config::advanced::auth::jwt::AuthMode;
use htsget_config::config::advanced::auth::response::AuthorizationRestrictionsBuilder;
use htsget_config::config::advanced::auth::{AuthConfig, AuthorizationRestrictions};
use htsget_config::config::location::{Location, PrefixOrId};
use htsget_config::types::{Class, Interval, Query};
use http::{HeaderMap, HeaderName, HeaderValue, Uri};
use jsonpath_rust::JsonPath;
use jsonwebtoken::jwk::JwkSet;
use jsonwebtoken::{Algorithm, DecodingKey, TokenData, Validation, decode, decode_header};
use serde::de::DeserializeOwned;
use serde_json::Value;
use std::fmt::{Debug, Formatter};
use std::str::FromStr;
use tracing::{debug, trace};

/// The authorization middleware builder.
#[derive(Default, Debug)]
pub struct AuthBuilder {
  config: Option<AuthConfig>,
}

impl AuthBuilder {
  /// Set the config.
  pub fn with_config(mut self, config: AuthConfig) -> Self {
    self.config = Some(config);
    self
  }

  /// Build the auth layer, ensures that the config sets the correct parameters.
  pub fn build(self) -> Result<Auth> {
    let Some(mut config) = self.config else {
      return Err(AuthBuilderError("missing config".to_string()));
    };

    let mut decoding_key = None;
    if let Some(AuthMode::PublicKey(public_key)) = config.auth_mode_mut() {
      decoding_key = Some(
        Auth::decode_public_key(public_key)
          .map_err(|_| AuthBuilderError("failed to decode public key".to_string()))?,
      );
    }

    Ok(Auth {
      config,
      decoding_key,
    })
  }
}

/// The auth middleware layer.
#[derive(Clone)]
pub struct Auth {
  config: AuthConfig,
  decoding_key: Option<DecodingKey>,
}

impl Debug for Auth {
  fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
    f.debug_struct("config").finish()
  }
}

const ENDPOINT_TYPE_HEADER_NAME: &str = "Endpoint-Type";
const ID_HEADER_NAME: &str = "Id";

impl Auth {
  /// Get the config for this auth layer instance.
  pub fn config(&self) -> &AuthConfig {
    &self.config
  }

  /// Fetch JWKS from the authorization server.
  pub async fn fetch_from_url<D: DeserializeOwned>(
    &mut self,
    url: &str,
    headers: HeaderMap,
  ) -> HtsGetResult<D> {
    trace!("fetching url: {}", url);
    let response = self
      .config
      .http_client()
      .map_err(|err| HtsGetError::InternalError(format!("failed to fetch data from {url}: {err}")))?
      .get(url)
      .headers(headers)
      .send()
      .await?;
    trace!("response: {:?}", response);

    let status = response.status();

    // Forward a valid htsget error if that's what the backend returns.
    let value = response.json::<Value>().await.map_err(|err| {
      HtsGetError::InternalError(format!("failed to fetch data from {url}: {err}"))
    })?;
    trace!("value: {}", value);

    match serde_json::from_value::<D>(value.clone()) {
      Ok(response) => Ok(response),
      Err(_) => match serde_json::from_value::<WrappedHtsGetError>(value.clone()) {
        Ok(err) => Err(HtsGetError::Wrapped(err, status)),
        Err(_) => Err(HtsGetError::InternalError(format!(
          "failed to fetch data from {url}: {value}"
        ))),
      },
    }
  }

  /// Get a decoding key from the JWKS url.
  pub async fn decode_jwks(&mut self, jwks_url: &Uri, token: &str) -> HtsGetResult<DecodingKey> {
    // Decode header and get the key id.
    let header = decode_header(token)?;
    let kid = header
      .kid
      .ok_or_else(|| HtsGetError::PermissionDenied("JWT missing key ID".to_string()))?;

    // Fetch JWKS from the authorization server and find matching JWK.
    let jwks = self
      .fetch_from_url::<JwkSet>(&jwks_url.to_string(), Default::default())
      .await?;
    let matched_jwk = jwks
      .find(&kid)
      .ok_or_else(|| HtsGetError::PermissionDenied("matching JWK not found".to_string()))?;

    Ok(DecodingKey::from_jwk(matched_jwk)?)
  }

  /// Decode a public key into an RSA, EdDSA or ECDSA pem-formatted decoding key.
  pub fn decode_public_key(key: &[u8]) -> HtsGetResult<DecodingKey> {
    Ok(
      DecodingKey::from_rsa_pem(key)
        .or_else(|_| DecodingKey::from_ed_pem(key))
        .or_else(|_| DecodingKey::from_ec_pem(key))?,
    )
  }

  /// Get the headers to send to the authorization service.
  pub fn forwarded_headers(
    &self,
    request_headers: &HeaderMap,
    request_extensions: Option<Value>,
    request_endpoint: &Endpoint,
    id: &str,
  ) -> HtsGetResult<HeaderMap> {
    let mut forwarded_headers = if self.config.passthrough_auth() {
      let auth_header = request_headers
        .iter()
        .find_map(|(name, value)| {
          if Authorization::<Bearer>::decode(&mut [value].into_iter()).is_ok() {
            return Some((name.clone(), value.clone()));
          }

          None
        })
        .ok_or_else(|| HtsGetError::PermissionDenied("missing authorization header".to_string()))?;
      HeaderMap::from_iter([auth_header])
    } else {
      HeaderMap::default()
    };

    for header in self.config.forward_headers() {
      let Some((existing_name, existing_value)) = request_headers
        .iter()
        .find_map(|(name, value)| {
          if header.to_lowercase() == name.as_str().to_lowercase() {
            return match HeaderName::from_str(&format!("{}{}", CONTEXT_HEADER_PREFIX, name)) {
              Ok(header) => Some(Ok((header, value))),
              Err(err) => Some(Err(HtsGetError::InternalError(err.to_string()))),
            };
          }

          None
        })
        .transpose()?
      else {
        continue;
      };

      forwarded_headers.insert(existing_name, existing_value.clone());
    }

    if let Some(request_extensions) = request_extensions {
      for extension in self.config.forward_extensions() {
        let Some(value) = request_extensions.query(extension.json_path()).ok() else {
          continue;
        };

        let value = value.first().ok_or_else(|| {
          HtsGetError::InternalError("extension does not have only one value".to_string())
        })?;
        let value = value.as_str().ok_or_else(|| {
          HtsGetError::InternalError("extension value is not a string".to_string())
        })?;

        let header_name =
          HeaderName::from_str(&format!("{}{}", CONTEXT_HEADER_PREFIX, extension.name()))?;
        let value = HeaderValue::from_str(value)?;
        forwarded_headers.insert(header_name, value);
      }
    }

    if self.config.forward_endpoint_type() {
      let header_name = HeaderName::from_str(&format!(
        "{}{}",
        CONTEXT_HEADER_PREFIX, ENDPOINT_TYPE_HEADER_NAME
      ))?;
      let value = HeaderValue::from_str(&request_endpoint.to_string())?;

      forwarded_headers.insert(header_name, value);
    }

    if self.config.forward_id() {
      let header_name =
        HeaderName::from_str(&format!("{}{}", CONTEXT_HEADER_PREFIX, ID_HEADER_NAME))?;
      let value = HeaderValue::from_str(id)?;

      forwarded_headers.insert(header_name, value);
    }

    Ok(forwarded_headers)
  }

  /// Query the authorization service to get the restrictions. This function validates
  /// that the authorization url is trusted in the config settings before calling the
  /// service. The claims are assumed to be valid.
  pub async fn query_authorization_service(
    &mut self,
    headers: &HeaderMap,
    request_extensions: Option<Value>,
    request_endpoint: &Endpoint,
    id: &str,
  ) -> HtsGetResult<Option<AuthorizationRestrictions>> {
    match self.config.authorization_url() {
      Some(UrlOrStatic::Url(uri)) => {
        let forwarded_headers =
          self.forwarded_headers(headers, request_extensions, request_endpoint, id)?;

        self
          .fetch_from_url(&uri.to_string(), forwarded_headers)
          .await
          .map(Some)
      }
      Some(UrlOrStatic::Static(config)) => Ok(Some(config.clone())),
      _ => Ok(None),
    }
  }

  /// Validate the restrictions, returning an error if the user is not authorized.
  /// If `suppressed_interval` is set then no error is returning if there is a
  /// path match but no restrictions match. Instead, as many regions as possible
  /// are returned.
  pub fn validate_restrictions(
    restrictions: AuthorizationRestrictions,
    path: &str,
    queries: &mut [Query],
    suppressed_interval: bool,
  ) -> HtsGetResult<AuthorizationRestrictions> {
    // Find all rules matching the path.
    let matching_rules = restrictions
      .into_rules()
      .into_iter()
      .filter(|rule| {
        match rule.location() {
          Location::Simple(location) if location.prefix_or_id().is_some() => {
            match location.prefix_or_id().unwrap_or_default() {
              PrefixOrId::Prefix(prefix) => {
                // A prefix has a starts with rule.
                path.starts_with(&prefix)
              }
              PrefixOrId::Id(id) => {
                // An id location must match exactly.
                id == path
              }
            }
          }
          Location::Regex(location) => {
            // A regex location matches using the regex.
            location.regex().is_match(path)
          }
          // Missing valid location.
          _ => false,
        }
      })
      .collect::<Vec<_>>();

    // If no paths match, then this is an authorization error.
    if matching_rules.is_empty() {
      return Err(HtsGetError::PermissionDenied(
        "failed to authorize user based on authorization service restrictions".to_string(),
      ));
    }

    let (allows_all, allows_specific): (Vec<_>, Vec<_>) = matching_rules
      .into_iter()
      .partition(|rule| rule.rules().is_none());

    // Otherwise, we need to check if the specific reference name is allowed for all queries.
    for query in queries {
      // If the request is for headers only, then this should always be allowed.
      if query.class() == Class::Header {
        continue;
      }

      let matching_restriction = allows_specific
        .iter()
        .flat_map(|rule| rule.rules().unwrap_or_default())
        .filter_map(|restriction| {
          // The reference name should match exactly if it's set, otherwise allow any reference name.
          let name_match = restriction.reference_name().is_none()
            || restriction.reference_name() == query.reference_name();
          // The format should match if it's defined, otherwise it allows any format.
          let format_match =
            restriction.format().is_none() || restriction.format() == Some(query.format());
          // The interval should match and be constrained, considering undefined start or end ranges.
          let interval_match = if suppressed_interval {
            restriction.interval().constraint_interval(query.interval())
          } else {
            restriction.interval().contains_interval(query.interval())
          };

          if let Some(interval_match) = interval_match
            && name_match
            && format_match
          {
            return Some(interval_match);
          }

          None
        })
        .max_by(Interval::order_by_range); // The largest interval should be used if there are multiple matches.

      if suppressed_interval {
        if allows_all.is_empty() && matching_restriction.is_none() {
          // If nothing allows all and there are no matching intervals then return an empty response.
          query.set_class(Class::Header);
          continue;
        }

        if let Some(matching_restriction) = matching_restriction {
          query.set_interval(matching_restriction);
        }
      } else if allows_all.is_empty() && matching_restriction.is_none() {
        return Err(HtsGetError::PermissionDenied(
          "failed to authorize user based on authorization service restrictions".to_string(),
        ));
      }
    }

    AuthorizationRestrictionsBuilder::default()
      .rules([allows_all, allows_specific].concat())
      .build()
      .map_err(|err| HtsGetError::InternalError(err.to_string()))
  }

  /// Validate only the JWT without looking up restrictions and validating those. Returns the
  /// decoded JWT token.
  pub async fn validate_jwt(&mut self, headers: &HeaderMap) -> HtsGetResult<TokenData<Value>> {
    let auth_token = headers
      .values()
      .find_map(|value| Authorization::<Bearer>::decode(&mut [value].into_iter()).ok())
      .ok_or_else(|| {
        HtsGetError::InvalidAuthentication("invalid authorization header".to_string())
      })?;

    let decoding_key = if let Some(ref decoding_key) = self.decoding_key {
      decoding_key
    } else if matches!(self.config.auth_mode(), Some(AuthMode::Jwks(_))) {
      let url = if let Some(AuthMode::Jwks(uri)) = self.config.auth_mode() {
        uri.clone()
      } else {
        return Err(HtsGetError::InternalError(
          "JWT validation not set".to_string(),
        ));
      };

      &self.decode_jwks(&url, auth_token.token()).await?
    } else if let Some(AuthMode::PublicKey(key)) = self.config.auth_mode() {
      &Self::decode_public_key(key)?
    } else {
      return Err(HtsGetError::InternalError(
        "JWT validation not set".to_string(),
      ));
    };

    // Decode and validate the JWT
    let mut validation = Validation::default();
    validation.validate_exp = true;
    validation.validate_aud = true;
    validation.validate_nbf = true;

    if let Some(iss) = self.config.validate_issuer() {
      validation.set_issuer(iss);
      validation.required_spec_claims.insert("iss".to_string());
    }
    if let Some(aud) = self.config.validate_audience() {
      validation.set_audience(aud);
      validation.required_spec_claims.insert("aud".to_string());
    }
    if let Some(sub) = self.config.validate_subject() {
      validation.sub = Some(sub.to_string());
      validation.required_spec_claims.insert("sub".to_string());
    }

    // Each supported algorithm must be tried individually because the jsonwebtoken validation
    // logic only tries one algorithm in the vec: https://github.com/Keats/jsonwebtoken/issues/297
    validation.algorithms = vec![Algorithm::RS256];
    let decoded_claims = decode::<Value>(auth_token.token(), decoding_key, &validation)
      .or_else(|_| {
        validation.algorithms = vec![Algorithm::ES256];
        decode::<Value>(auth_token.token(), decoding_key, &validation)
      })
      .or_else(|_| {
        validation.algorithms = vec![Algorithm::EdDSA];
        decode::<Value>(auth_token.token(), decoding_key, &validation)
      });

    let claims = match decoded_claims {
      Ok(claims) => claims,
      Err(err) => return Err(HtsGetError::PermissionDenied(format!("invalid JWT: {err}"))),
    };

    Ok(claims)
  }

  /// Validate the authorization flow, returning an error if the user is not authorized.
  /// This performs the following steps:
  ///
  /// 1. Finds the JWT decoding key from the config or by querying a JWKS url.
  /// 2. Validates the JWT token according to the config.
  /// 3. Queries the authorization service for restrictions based on the config or JWT claims.
  /// 4. Validates the restrictions to determine if the user is authorized.
  pub async fn validate_authorization(
    &mut self,
    headers: &HeaderMap,
    path: &str,
    queries: &mut [Query],
    request_extensions: Option<Value>,
    endpoint: &Endpoint,
  ) -> HtsGetResult<Option<AuthorizationRestrictions>> {
    let restrictions = self
      .query_authorization_service(headers, request_extensions, endpoint, path)
      .await?;

    debug!(restrictions = ?restrictions, "restrictions");

    if let Some(restrictions) = restrictions {
      cfg_if! {
        if #[cfg(feature = "experimental")] {
          Self::validate_restrictions(restrictions, path, queries, self.config.suppress_errors()).map(Some)
        } else {
          Self::validate_restrictions(restrictions, path, queries, false).map(Some)
        }
      }
    } else {
      Ok(None)
    }
  }
}

#[cfg(test)]
mod tests {
  use super::*;
  use crate::{Endpoint, convert_to_query, match_format_from_query};
  use htsget_config::config::advanced::HttpClient;
  use htsget_config::config::advanced::auth::AuthConfigBuilder;
  use htsget_config::config::advanced::auth::authorization::ForwardExtensions;
  use htsget_config::config::advanced::auth::response::{
    AuthorizationRestrictionsBuilder, AuthorizationRuleBuilder, ReferenceNameRestrictionBuilder,
  };
  use htsget_config::config::advanced::regex_location::RegexLocation;
  use htsget_config::config::location::SimpleLocation;
  use htsget_config::types::{Format, Request};
  use htsget_test::util::generate_key_pair;
  use http::{HeaderMap, Uri};
  use regex::Regex;
  use reqwest_middleware::ClientBuilder;
  use serde_json::json;
  use std::collections::HashMap;

  #[test]
  fn auth_builder_missing_config() {
    let result = AuthBuilder::default().build();
    assert!(matches!(result, Err(AuthBuilderError(_))));
  }

  #[test]
  fn auth_builder_success_with_public_key() {
    let (_, public_key) = generate_key_pair();

    let config = create_test_auth_config(public_key);
    let result = AuthBuilder::default().with_config(config).build();
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_rule_allows_all() {
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();

    let request = create_test_query(Endpoint::Reads, "sample1", HashMap::new());
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_exact_path_match() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .start(1000)
      .end(2000)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("start".to_string(), "1500".to_string());
    query.insert("end".to_string(), "1800".to_string());
    query.insert("format".to_string(), "BAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_regex_prefix_match() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(Location::Simple(Box::new(SimpleLocation::new(
        Default::default(),
        "".to_string(),
        Some(PrefixOrId::Prefix("sam".to_string())),
      ))))
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("format".to_string(), "BAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample123", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_regex_match() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(Location::Regex(Box::new(RegexLocation::new(
        Regex::new("sample(.+)").unwrap(),
        "".to_string(),
        Default::default(),
        Default::default(),
      ))))
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("format".to_string(), "BAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample123", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_forward_headers() {
    let (_, public_key) = generate_key_pair();

    let builder = AuthConfigBuilder::default()
      .auth_mode(AuthMode::PublicKey(public_key))
      .authorization_url(UrlOrStatic::Url(Uri::from_static(
        "https://www.example.com",
      )))
      .http_client(HttpClient::new(
        ClientBuilder::new(reqwest::Client::new()).build(),
      ));
    let config = builder
      .clone()
      .passthrough_auth(true)
      .forward_headers(vec!["Custom1".to_string()])
      .build()
      .unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let request_headers = HeaderMap::from_iter([
      (
        "Authorization".parse().unwrap(),
        "Bearer Value".parse().unwrap(),
      ),
      ("Custom1".parse().unwrap(), "Value".parse().unwrap()),
      ("Custom2".parse().unwrap(), "Value".parse().unwrap()),
    ]);
    let forwarded_headers = result
      .forwarded_headers(&request_headers, None, &Endpoint::Reads, "id")
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([
        (
          format!("{}Custom1", CONTEXT_HEADER_PREFIX).parse().unwrap(),
          "Value".parse().unwrap()
        ),
        (
          "Authorization".parse().unwrap(),
          "Bearer Value".parse().unwrap()
        ),
      ])
    );

    let config = builder
      .clone()
      .passthrough_auth(true)
      .forward_headers(vec!["Custom1".to_string(), "Authorization".to_string()])
      .build()
      .unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let forwarded_headers = result
      .forwarded_headers(&request_headers, None, &Endpoint::Reads, "id")
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([
        (
          format!("{}Custom1", CONTEXT_HEADER_PREFIX).parse().unwrap(),
          "Value".parse().unwrap()
        ),
        (
          format!("{}Authorization", CONTEXT_HEADER_PREFIX)
            .parse()
            .unwrap(),
          "Bearer Value".parse().unwrap()
        ),
        (
          "Authorization".parse().unwrap(),
          "Bearer Value".parse().unwrap()
        ),
      ])
    );

    let config = builder
      .clone()
      .forward_headers(vec!["Custom1".to_string()])
      .build()
      .unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let forwarded_headers = result
      .forwarded_headers(&request_headers, None, &Endpoint::Reads, "id")
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([(
        format!("{}Custom1", CONTEXT_HEADER_PREFIX).parse().unwrap(),
        "Value".parse().unwrap()
      ),])
    );

    let config = builder
      .clone()
      .forward_extensions(vec![ForwardExtensions::new(
        "$.Key".to_string(),
        "Custom1".to_string(),
      )])
      .build()
      .unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let forwarded_headers = result
      .forwarded_headers(
        &request_headers,
        Some(json!({
          "Key": "Value"
        })),
        &Endpoint::Reads,
        "id",
      )
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([(
        format!("{}Custom1", CONTEXT_HEADER_PREFIX).parse().unwrap(),
        "Value".parse().unwrap()
      ),])
    );

    let config = builder.clone().forward_endpoint_type(true).build().unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let forwarded_headers = result
      .forwarded_headers(&request_headers, None, &Endpoint::Variants, "id")
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([(
        format!("{}{}", CONTEXT_HEADER_PREFIX, ENDPOINT_TYPE_HEADER_NAME)
          .parse()
          .unwrap(),
        "variants".parse().unwrap()
      ),])
    );

    let config = builder.forward_id(true).build().unwrap();
    let result = AuthBuilder::default().with_config(config).build().unwrap();

    let forwarded_headers = result
      .forwarded_headers(&request_headers, None, &Endpoint::Variants, "id")
      .unwrap();
    assert_eq!(
      forwarded_headers,
      HeaderMap::from_iter([(
        format!("{}{}", CONTEXT_HEADER_PREFIX, ID_HEADER_NAME)
          .parse()
          .unwrap(),
        "id".parse().unwrap()
      ),])
    );
  }

  #[test]
  fn validate_restrictions_reference_name_mismatch() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("class".to_string(), "header".to_string());
    query.insert("format".to_string(), "BAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_header() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("format".to_string(), "BAM".to_string());
    query.insert("class".to_string(), "header".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[cfg(feature = "experimental")]
  #[test]
  fn validate_restrictions_reference_name_mismatch_suppressed() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr2".to_string());
    query.insert("format".to_string(), "BAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], true);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_format_mismatch() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("format".to_string(), "CRAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_err());
  }

  #[cfg(feature = "experimental")]
  #[test]
  fn validate_restrictions_format_mismatch_suppressed() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam)
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("format".to_string(), "CRAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], true);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_interval_not_contained() {
    // Restriction:       1000----------2000
    // Request:               1250--1750
    // Result:                1250--1750
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1250),
      Some(1750),
      (Interval::new(Some(1250), Some(1750)), Class::Body),
      false,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   500------------------------------->
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      None,
      (Interval::new(Some(500), None), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   <------------------------------2500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      Some(2500),
      (Interval::new(None, Some(2500)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   <--------------------------------->
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      None,
      (Interval::new(None, None), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   500------------1500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      Some(1500),
      (Interval::new(Some(500), Some(1500)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   <--------------1500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      Some(1500),
      (Interval::new(None, Some(1500)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:                  1500------------2500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2500)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:                  1500--------------->
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1500),
      None,
      (Interval::new(Some(1500), None), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:   500-----1000
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      Some(1000),
      (Interval::new(Some(500), Some(1000)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000----------2000
    // Request:                         2000-----2500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(2000),
      Some(2500),
      (Interval::new(Some(2000), Some(2500)), Class::Body),
      true,
      false,
    );

    // Restriction:       <-------------2000
    // Request:   500------------1500
    // Result:    500------------1500
    test_interval_suppressed(
      None,
      Some(2000),
      Some(500),
      Some(1500),
      (Interval::new(Some(500), Some(1500)), Class::Body),
      false,
      false,
    );

    // Restriction:       <-------------2000
    // Request:                  1500------------2500
    // Result:                   err
    test_interval_suppressed(
      None,
      Some(2000),
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2500)), Class::Body),
      true,
      false,
    );

    // Restriction:       1000------------->
    // Request:                  1500------------2500
    // Result:                   1500------------2500
    test_interval_suppressed(
      Some(1000),
      None,
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2500)), Class::Body),
      false,
      false,
    );

    // Restriction:       1000------------->
    // Request:   500------------1500
    // Result:                   err
    test_interval_suppressed(
      Some(1000),
      None,
      Some(500),
      Some(1500),
      (Interval::new(Some(500), Some(1500)), Class::Body),
      true,
      false,
    );

    // Restriction:       <---------------->
    // Request:   500----------------------------2500
    // Result:    500----------------------------2500
    test_interval_suppressed(
      None,
      None,
      Some(500),
      Some(2500),
      (Interval::new(Some(500), Some(2500)), Class::Body),
      false,
      false,
    );

    // Restriction:       <---------------->
    // Request:   500------------------------------->
    // Result:    500------------------------------->
    test_interval_suppressed(
      None,
      None,
      Some(500),
      None,
      (Interval::new(Some(500), None), Class::Body),
      false,
      false,
    );

    // Restriction:       <---------------->
    // Request:   <------------------------------2500
    // Result:    <------------------------------2500
    test_interval_suppressed(
      None,
      None,
      None,
      Some(2500),
      (Interval::new(None, Some(2500)), Class::Body),
      false,
      false,
    );
  }

  #[cfg(feature = "experimental")]
  #[test]
  fn validate_restrictions_interval_suppressed() {
    // Restriction:       1000----------2000
    // Request:               1250--1750
    // Result:                1250--1750
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1250),
      Some(1750),
      (Interval::new(Some(1250), Some(1750)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   500------------------------------->
    // Result:            1000----------2000
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      None,
      (Interval::new(Some(1000), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   <------------------------------2500
    // Result:            1000----------2000
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      Some(2500),
      (Interval::new(Some(1000), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   <--------------------------------->
    // Result:            1000----------2000
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      None,
      (Interval::new(Some(1000), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   500------------1500
    // Result:            1000---1500
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      Some(1500),
      (Interval::new(Some(1000), Some(1500)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   <--------------1500
    // Result:            1000---1500
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      None,
      Some(1500),
      (Interval::new(Some(1000), Some(1500)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:                  1500------------2500
    // Result:                   1500---2000
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:                  1500--------------->
    // Result:                   1500---2000
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(1500),
      None,
      (Interval::new(Some(1500), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:   500-----1000
    // Result:            -
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(500),
      Some(1000),
      (Interval::new(Some(500), Some(1000)), Class::Header),
      false,
      true,
    );

    // Restriction:       1000----------2000
    // Request:                         2000-----2500
    // Result:                          -
    test_interval_suppressed(
      Some(1000),
      Some(2000),
      Some(2000),
      Some(2500),
      (Interval::new(Some(2000), Some(2500)), Class::Header),
      false,
      true,
    );

    // Restriction:       <-------------2000
    // Request:   500------------1500
    // Result:    500------------1500
    test_interval_suppressed(
      None,
      Some(2000),
      Some(500),
      Some(1500),
      (Interval::new(Some(500), Some(1500)), Class::Body),
      false,
      true,
    );

    // Restriction:       <-------------2000
    // Request:                  1500------------2500
    // Result:                   1500---2000
    test_interval_suppressed(
      None,
      Some(2000),
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2000)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000------------->
    // Request:                  1500------------2500
    // Result:                   1500------------2500
    test_interval_suppressed(
      Some(1000),
      None,
      Some(1500),
      Some(2500),
      (Interval::new(Some(1500), Some(2500)), Class::Body),
      false,
      true,
    );

    // Restriction:       1000------------->
    // Request:   500------------1500
    // Result:            1000---1500
    test_interval_suppressed(
      Some(1000),
      None,
      Some(500),
      Some(1500),
      (Interval::new(Some(1000), Some(1500)), Class::Body),
      false,
      true,
    );

    // Restriction:       <---------------->
    // Request:   500----------------------------2500
    // Result:    500----------------------------2500
    test_interval_suppressed(
      None,
      None,
      Some(500),
      Some(2500),
      (Interval::new(Some(500), Some(2500)), Class::Body),
      false,
      true,
    );

    // Restriction:       <---------------->
    // Request:   500------------------------------->
    // Result:    500------------------------------->
    test_interval_suppressed(
      None,
      None,
      Some(500),
      None,
      (Interval::new(Some(500), None), Class::Body),
      false,
      true,
    );

    // Restriction:       <---------------->
    // Request:   <------------------------------2500
    // Result:    <------------------------------2500
    test_interval_suppressed(
      None,
      None,
      None,
      Some(2500),
      (Interval::new(None, Some(2500)), Class::Body),
      false,
      true,
    );
  }

  #[test]
  fn validate_restrictions_format_none_allows_any() {
    let reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .build()
      .unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    query.insert("format".to_string(), "CRAM".to_string());

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[test]
  fn validate_restrictions_path_with_leading_slash() {
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule)
      .build()
      .unwrap();
    let request = create_test_query(Endpoint::Reads, "sample1", HashMap::new());
    let result =
      Auth::validate_restrictions(restrictions, request.id(), &mut [request.clone()], false);
    assert!(result.is_ok());
  }

  #[tokio::test]
  async fn validate_authorization_missing_auth_header() {
    let mut auth = create_mock_auth_with_restrictions();
    let request = Request::new("sample1".to_string(), HashMap::new(), HeaderMap::new());

    let result = auth.validate_jwt(request.headers()).await;
    assert!(result.is_err());
    assert!(matches!(
      result.unwrap_err(),
      HtsGetError::InvalidAuthentication(_)
    ));
  }

  #[tokio::test]
  async fn validate_authorization_invalid_jwt_format() {
    let mut auth = create_mock_auth_with_restrictions();
    let request = create_request_with_auth_header("sample1", HashMap::new(), "invalid.jwt.token");

    let result = auth.validate_jwt(request.headers()).await;
    assert!(result.is_err());
    assert!(matches!(
      result.unwrap_err(),
      HtsGetError::PermissionDenied(_)
    ));
  }

  fn create_test_auth_config(public_key: Vec<u8>) -> AuthConfig {
    AuthConfigBuilder::default()
      .auth_mode(AuthMode::PublicKey(public_key))
      .authorization_url(UrlOrStatic::Url(Uri::from_static(
        "https://www.example.com",
      )))
      .http_client(HttpClient::new(
        ClientBuilder::new(reqwest::Client::new()).build(),
      ))
      .build()
      .unwrap()
  }

  fn create_test_query(endpoint: Endpoint, path: &str, query: HashMap<String, String>) -> Query {
    let request = Request::new(path.to_string(), query, HeaderMap::new());
    let format = match_format_from_query(&endpoint, request.query()).unwrap();

    convert_to_query(request, format).unwrap()
  }

  fn create_request_with_auth_header(
    path: &str,
    query: HashMap<String, String>,
    token: &str,
  ) -> Request {
    let mut headers = HeaderMap::new();
    headers.insert("authorization", format!("Bearer {token}").parse().unwrap());
    Request::new(path.to_string(), query, headers)
  }

  fn create_mock_auth_with_restrictions() -> Auth {
    let (_, public_key) = generate_key_pair();

    let config = create_test_auth_config(public_key);
    AuthBuilder::default().with_config(config).build().unwrap()
  }

  fn test_interval_suppressed(
    restrict_start: Option<u32>,
    restrict_end: Option<u32>,
    request_start: Option<u32>,
    request_end: Option<u32>,
    expected_response: (Interval, Class),
    is_err: bool,
    suppress_interval: bool,
  ) {
    let mut reference_restriction = ReferenceNameRestrictionBuilder::default()
      .name("chr1")
      .format(Format::Bam);

    if let Some(start) = restrict_start {
      reference_restriction = reference_restriction.start(start);
    }
    if let Some(end) = restrict_end {
      reference_restriction = reference_restriction.end(end);
    }

    let reference_restriction = reference_restriction.build().unwrap();
    let rule = AuthorizationRuleBuilder::default()
      .location(test_location())
      .reference_name(reference_restriction)
      .build()
      .unwrap();
    let restrictions = AuthorizationRestrictionsBuilder::default()
      .rule(rule.clone())
      .build()
      .unwrap();

    let mut query = HashMap::new();
    query.insert("referenceName".to_string(), "chr1".to_string());
    request_start.map(|start| query.insert("start".to_string(), start.to_string()));
    request_end.map(|end| query.insert("end".to_string(), end.to_string()));

    let request = create_test_query(Endpoint::Reads, "sample1", query);
    let id = request.id().to_string();
    let mut slice = [request];
    let result = Auth::validate_restrictions(restrictions, &id, &mut slice, suppress_interval);
    if is_err {
      assert!(result.is_err());
    } else {
      assert!(result.is_ok());
    }
    assert_eq!(slice.first().unwrap().interval(), expected_response.0);
    assert_eq!(slice.last().unwrap().class(), expected_response.1);
  }

  fn test_location() -> Location {
    Location::Simple(Box::new(SimpleLocation::new(
      Default::default(),
      "".to_string(),
      Some(PrefixOrId::Id("sample1".to_string())),
    )))
  }
}