oxirs-fuseki 0.2.4

SPARQL 1.1/1.2 HTTP protocol server with Fuseki-compatible configuration
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
//! HTTP request validation for SPARQL endpoints.
//!
//! Performs pre-execution validation of incoming HTTP requests before they
//! reach the SPARQL query engine:
//!
//! - SPARQL query syntax pre-check (balanced braces, query type present)
//! - Graph URI well-formedness
//! - Request size limits (body size and query length)
//! - Malformed parameter detection
//! - HTTP method validation (GET and POST only)
//! - Content-Type validation for POST
//! - Basic query injection pattern detection
//!
//! Validation failures produce structured [`ValidationError`] values that
//! can be mapped directly to HTTP 400 responses.

use std::collections::{HashMap, HashSet};

// ── Configuration ─────────────────────────────────────────────────────────────

/// Configuration for the request validator.
#[derive(Debug, Clone)]
pub struct ValidatorConfig {
    /// Maximum allowed request body size in bytes.
    pub max_body_bytes: usize,
    /// Maximum allowed SPARQL query string length in bytes.
    pub max_query_length: usize,
    /// Whether to run the injection pattern check.
    pub enable_injection_check: bool,
    /// Allow only these HTTP methods (default: GET, POST).
    pub allowed_methods: Vec<String>,
    /// Recognized SPARQL protocol parameter names.
    pub known_params: HashSet<String>,
}

impl Default for ValidatorConfig {
    fn default() -> Self {
        let known_params = [
            "query",
            "update",
            "default-graph-uri",
            "named-graph-uri",
            "using-graph-uri",
            "using-named-graph-uri",
            "format",
            "output",
            "callback",
            "force-accept",
            "timeout",
        ]
        .iter()
        .map(|s| s.to_string())
        .collect();

        Self {
            max_body_bytes: 10 * 1024 * 1024, // 10 MiB
            max_query_length: 1_000_000,      // 1 MB
            enable_injection_check: true,
            allowed_methods: vec!["GET".to_string(), "POST".to_string()],
            known_params,
        }
    }
}

// ── Error types ───────────────────────────────────────────────────────────────

/// A structured validation error.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ValidationError {
    /// HTTP method is not allowed.
    MethodNotAllowed {
        /// The method that was received.
        received: String,
        /// The methods that are permitted.
        allowed: Vec<String>,
    },
    /// Request body exceeds the size limit.
    BodyTooLarge {
        /// Actual body size in bytes.
        actual: usize,
        /// Maximum allowed size in bytes.
        limit: usize,
    },
    /// The SPARQL query string is longer than permitted.
    QueryTooLong {
        /// Actual query length in bytes.
        actual: usize,
        /// Maximum allowed length in bytes.
        limit: usize,
    },
    /// No recognizable SPARQL query type keyword was found.
    MissingQueryType,
    /// Unbalanced braces in the query.
    UnbalancedBraces {
        /// Net brace depth at end of query (positive = unclosed `{`, negative = extra `}`).
        depth: i64,
    },
    /// One or more graph URIs are malformed.
    InvalidGraphUri(String),
    /// An unknown query parameter was detected.
    UnknownParameter(String),
    /// A query parameter appears more than once.
    DuplicateParameter(String),
    /// Content-Type header is invalid or missing for a POST request.
    InvalidContentType {
        /// The content-type that was received (or empty if absent).
        received: String,
    },
    /// A suspicious injection pattern was detected.
    SuspiciousPattern(String),
    /// A query parameter value contains malformed percent-encoding.
    EncodingError {
        /// The parameter name with the encoding issue.
        param: String,
    },
}

impl std::fmt::Display for ValidationError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ValidationError::MethodNotAllowed { received, allowed } => {
                write!(
                    f,
                    "HTTP method '{}' not allowed; accepted: {}",
                    received,
                    allowed.join(", ")
                )
            }
            ValidationError::BodyTooLarge { actual, limit } => {
                write!(
                    f,
                    "Request body {actual} bytes exceeds limit of {limit} bytes"
                )
            }
            ValidationError::QueryTooLong { actual, limit } => {
                write!(
                    f,
                    "Query length {actual} bytes exceeds limit of {limit} bytes"
                )
            }
            ValidationError::MissingQueryType => {
                write!(
                    f,
                    "SPARQL query must contain SELECT, ASK, CONSTRUCT, or DESCRIBE"
                )
            }
            ValidationError::UnbalancedBraces { depth } => {
                if *depth > 0 {
                    write!(f, "Unbalanced braces: {depth} unclosed '{{' in query")
                } else {
                    write!(f, "Unbalanced braces: {} extra '}}' in query", depth.abs())
                }
            }
            ValidationError::InvalidGraphUri(uri) => {
                write!(f, "Invalid graph URI: '{uri}'")
            }
            ValidationError::UnknownParameter(p) => {
                write!(f, "Unknown query parameter: '{p}'")
            }
            ValidationError::DuplicateParameter(p) => {
                write!(f, "Duplicate query parameter: '{p}'")
            }
            ValidationError::InvalidContentType { received } => {
                if received.is_empty() {
                    write!(f, "POST request missing Content-Type header")
                } else {
                    write!(
                        f,
                        "Invalid Content-Type '{received}' for SPARQL POST request"
                    )
                }
            }
            ValidationError::SuspiciousPattern(msg) => {
                write!(f, "Suspicious query pattern detected: {msg}")
            }
            ValidationError::EncodingError { param } => {
                write!(f, "Malformed percent-encoding in parameter '{param}'")
            }
        }
    }
}

impl std::error::Error for ValidationError {}

// ── Validation result ─────────────────────────────────────────────────────────

/// Outcome of running the full validation pipeline.
#[derive(Debug, Clone)]
pub struct ValidationResult {
    /// All errors encountered during validation.
    pub errors: Vec<ValidationError>,
}

impl ValidationResult {
    fn new() -> Self {
        Self { errors: Vec::new() }
    }

    fn push(&mut self, error: ValidationError) {
        self.errors.push(error);
    }

    /// Returns `true` when there are no validation errors.
    pub fn is_valid(&self) -> bool {
        self.errors.is_empty()
    }

    /// Returns the first error, if any.
    pub fn first_error(&self) -> Option<&ValidationError> {
        self.errors.first()
    }

    /// Returns the number of errors found.
    pub fn error_count(&self) -> usize {
        self.errors.len()
    }
}

// ── Incoming request representation ──────────────────────────────────────────

/// A simplified representation of an incoming HTTP request for validation.
#[derive(Debug, Clone, Default)]
pub struct IncomingRequest {
    /// HTTP method, e.g. `"GET"` or `"POST"`.
    pub method: String,
    /// Content-Type header value (empty if absent).
    pub content_type: String,
    /// Raw query parameters as `(name, value)` pairs in the order received.
    ///
    /// Duplicate parameter names are intentionally kept as separate entries
    /// so that the validator can detect them.
    pub params: Vec<(String, String)>,
    /// Request body size in bytes (for size-limit checking).
    pub body_size: usize,
    /// The SPARQL query string (from the `query` parameter or POST body).
    pub query: String,
    /// Graph URIs from `default-graph-uri` or `named-graph-uri` parameters.
    pub graph_uris: Vec<String>,
}

impl IncomingRequest {
    /// Create a minimal GET request with a SPARQL query.
    pub fn get(query: impl Into<String>) -> Self {
        Self {
            method: "GET".to_string(),
            query: query.into(),
            ..Self::default()
        }
    }

    /// Create a minimal POST request with application/sparql-query content type.
    pub fn post(query: impl Into<String>, body_size: usize) -> Self {
        Self {
            method: "POST".to_string(),
            content_type: "application/sparql-query".to_string(),
            query: query.into(),
            body_size,
            ..Self::default()
        }
    }
}

// ── Validator ─────────────────────────────────────────────────────────────────

/// SPARQL HTTP request validator.
pub struct RequestValidator {
    config: ValidatorConfig,
}

/// Valid SPARQL POST Content-Type values.
const VALID_POST_CONTENT_TYPES: &[&str] = &[
    "application/sparql-query",
    "application/sparql-update",
    "application/x-www-form-urlencoded",
];

/// Keywords that indicate a valid SPARQL query type.
const QUERY_TYPE_KEYWORDS: &[&str] = &["SELECT", "ASK", "CONSTRUCT", "DESCRIBE"];

/// Simple injection patterns to reject (case-insensitive substrings in the raw query).
const INJECTION_PATTERNS: &[(&str, &str)] = &[
    ("DROP ALL", "DROP ALL graph operation detected"),
    ("DROP GRAPH", "DROP GRAPH operation detected"),
    ("CLEAR ALL", "CLEAR ALL operation detected"),
    ("DELETE WHERE { ?s ?p ?o }", "bulk delete pattern detected"),
];

impl RequestValidator {
    /// Create a new validator with the given configuration.
    pub fn new(config: ValidatorConfig) -> Self {
        Self { config }
    }

    /// Create a validator with default configuration.
    pub fn default_config() -> Self {
        Self::new(ValidatorConfig::default())
    }

    /// Run all validation checks against `request`.
    ///
    /// Collects all errors rather than short-circuiting on the first one.
    pub fn validate(&self, request: &IncomingRequest) -> ValidationResult {
        let mut result = ValidationResult::new();

        self.check_method(request, &mut result);
        self.check_body_size(request, &mut result);
        self.check_query_length(request, &mut result);
        self.check_content_type(request, &mut result);
        self.check_query_syntax(request, &mut result);
        self.check_graph_uris(request, &mut result);
        self.check_parameters(request, &mut result);

        if self.config.enable_injection_check {
            self.check_injection(request, &mut result);
        }

        result
    }

    // ── Individual checks ─────────────────────────────────────────────────────

    fn check_method(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        if !self
            .config
            .allowed_methods
            .contains(&request.method.to_uppercase())
        {
            result.push(ValidationError::MethodNotAllowed {
                received: request.method.clone(),
                allowed: self.config.allowed_methods.clone(),
            });
        }
    }

    fn check_body_size(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        if request.body_size > self.config.max_body_bytes {
            result.push(ValidationError::BodyTooLarge {
                actual: request.body_size,
                limit: self.config.max_body_bytes,
            });
        }
    }

    fn check_query_length(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        let len = request.query.len();
        if len > self.config.max_query_length {
            result.push(ValidationError::QueryTooLong {
                actual: len,
                limit: self.config.max_query_length,
            });
        }
    }

    fn check_content_type(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        if request.method.to_uppercase() != "POST" {
            return;
        }
        let ct = request.content_type.to_lowercase();
        let valid = VALID_POST_CONTENT_TYPES
            .iter()
            .any(|accepted| ct.starts_with(accepted));
        if !valid {
            result.push(ValidationError::InvalidContentType {
                received: request.content_type.clone(),
            });
        }
    }

    fn check_query_syntax(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        if request.query.is_empty() {
            return;
        }

        // Check for balanced braces.
        let depth = brace_depth(&request.query);
        if depth != 0 {
            result.push(ValidationError::UnbalancedBraces { depth });
        }

        // Check that a recognised query type keyword is present.
        let upper = request.query.to_uppercase();
        let has_type = QUERY_TYPE_KEYWORDS.iter().any(|kw| upper.contains(kw));
        if !has_type {
            result.push(ValidationError::MissingQueryType);
        }
    }

    fn check_graph_uris(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        for uri in &request.graph_uris {
            if !is_valid_iri(uri) {
                result.push(ValidationError::InvalidGraphUri(uri.clone()));
            }
        }
    }

    fn check_parameters(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        let mut seen: HashMap<&str, usize> = HashMap::new();

        for (name, value) in &request.params {
            // Check for unknown parameters.
            if !self.config.known_params.contains(name.as_str()) {
                result.push(ValidationError::UnknownParameter(name.clone()));
            }

            // Track duplicate occurrences.
            let count = seen.entry(name.as_str()).or_insert(0);
            *count += 1;
            if *count == 2 {
                result.push(ValidationError::DuplicateParameter(name.clone()));
            }

            // Check for malformed percent-encoding in value.
            if has_bad_percent_encoding(value) {
                result.push(ValidationError::EncodingError {
                    param: name.clone(),
                });
            }
        }
    }

    fn check_injection(&self, request: &IncomingRequest, result: &mut ValidationResult) {
        if request.query.is_empty() {
            return;
        }
        let upper = request.query.to_uppercase();
        for (pattern, description) in INJECTION_PATTERNS {
            if upper.contains(&pattern.to_uppercase()) {
                result.push(ValidationError::SuspiciousPattern(description.to_string()));
            }
        }
    }

    /// Return a reference to the current configuration.
    pub fn config(&self) -> &ValidatorConfig {
        &self.config
    }
}

// ── Utility functions ─────────────────────────────────────────────────────────

/// Count net brace depth in `query` (ignores braces inside string literals).
fn brace_depth(query: &str) -> i64 {
    let mut depth: i64 = 0;
    let mut in_string = false;
    let mut escape_next = false;
    let mut string_char = '"';

    for ch in query.chars() {
        if escape_next {
            escape_next = false;
            continue;
        }
        if ch == '\\' && in_string {
            escape_next = true;
            continue;
        }
        if in_string {
            if ch == string_char {
                in_string = false;
            }
            continue;
        }
        match ch {
            '"' | '\'' => {
                in_string = true;
                string_char = ch;
            }
            '{' => depth += 1,
            '}' => depth -= 1,
            _ => {}
        }
    }
    depth
}

/// Perform a basic IRI well-formedness check.
///
/// Accepts absolute IRIs of the form `scheme:path` where `scheme` starts with
/// a letter and contains only letters, digits, `+`, `-`, or `.`.
fn is_valid_iri(uri: &str) -> bool {
    if uri.is_empty() {
        return false;
    }
    // Must have a scheme (at least one char before ':')
    if let Some(colon_pos) = uri.find(':') {
        if colon_pos == 0 {
            return false;
        }
        let scheme = &uri[..colon_pos];
        let rest = &uri[colon_pos + 1..];

        // Scheme must start with a letter and contain only [a-zA-Z0-9+\-.].
        let scheme_valid = scheme.chars().enumerate().all(|(i, c)| {
            if i == 0 {
                c.is_ascii_alphabetic()
            } else {
                c.is_ascii_alphanumeric() || matches!(c, '+' | '-' | '.')
            }
        });

        // Rest must be non-empty (absolute IRI).
        scheme_valid && !rest.is_empty()
    } else {
        false
    }
}

/// Returns `true` if `value` contains a percent sign not followed by two hex digits.
fn has_bad_percent_encoding(value: &str) -> bool {
    let bytes = value.as_bytes();
    let mut i = 0;
    while i < bytes.len() {
        if bytes[i] == b'%' {
            if i + 2 >= bytes.len()
                || !bytes[i + 1].is_ascii_hexdigit()
                || !bytes[i + 2].is_ascii_hexdigit()
            {
                return true;
            }
            i += 3;
        } else {
            i += 1;
        }
    }
    false
}

// ── Tests ─────────────────────────────────────────────────────────────────────

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

    fn validator() -> RequestValidator {
        RequestValidator::default_config()
    }

    fn valid_select() -> &'static str {
        "SELECT ?s ?p ?o WHERE { ?s ?p ?o }"
    }

    // ── ValidatorConfig ──────────────────────────────────────────────────────

    #[test]
    fn test_default_config_known_params() {
        let cfg = ValidatorConfig::default();
        assert!(cfg.known_params.contains("query"));
        assert!(cfg.known_params.contains("default-graph-uri"));
        assert!(cfg.known_params.contains("named-graph-uri"));
    }

    #[test]
    fn test_default_config_allowed_methods() {
        let cfg = ValidatorConfig::default();
        assert!(cfg.allowed_methods.contains(&"GET".to_string()));
        assert!(cfg.allowed_methods.contains(&"POST".to_string()));
        assert!(!cfg.allowed_methods.contains(&"DELETE".to_string()));
    }

    #[test]
    fn test_default_config_limits() {
        let cfg = ValidatorConfig::default();
        assert!(cfg.max_body_bytes > 0);
        assert!(cfg.max_query_length > 0);
    }

    // ── ValidationResult ─────────────────────────────────────────────────────

    #[test]
    fn test_validation_result_valid() {
        let r = ValidationResult::new();
        assert!(r.is_valid());
        assert_eq!(r.error_count(), 0);
        assert!(r.first_error().is_none());
    }

    #[test]
    fn test_validation_result_with_error() {
        let mut r = ValidationResult::new();
        r.push(ValidationError::MissingQueryType);
        assert!(!r.is_valid());
        assert_eq!(r.error_count(), 1);
        assert!(r.first_error().is_some());
    }

    // ── HTTP method ──────────────────────────────────────────────────────────

    #[test]
    fn test_get_allowed() {
        let req = IncomingRequest::get(valid_select());
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MethodNotAllowed { .. })));
    }

    #[test]
    fn test_post_allowed() {
        let req = IncomingRequest::post(valid_select(), 100);
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MethodNotAllowed { .. })));
    }

    #[test]
    fn test_delete_rejected() {
        let req = IncomingRequest {
            method: "DELETE".to_string(),
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MethodNotAllowed { .. })));
    }

    #[test]
    fn test_put_rejected() {
        let req = IncomingRequest {
            method: "PUT".to_string(),
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MethodNotAllowed { .. })));
    }

    // ── Body size ────────────────────────────────────────────────────────────

    #[test]
    fn test_body_size_within_limit() {
        let cfg = ValidatorConfig {
            max_body_bytes: 1000,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            body_size: 500,
            ..Default::default()
        };
        let r = v.validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::BodyTooLarge { .. })));
    }

    #[test]
    fn test_body_size_exceeds_limit() {
        let cfg = ValidatorConfig {
            max_body_bytes: 100,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            body_size: 200,
            ..Default::default()
        };
        let r = v.validate(&req);
        assert!(r.errors.iter().any(|e| matches!(
            e,
            ValidationError::BodyTooLarge {
                actual: 200,
                limit: 100
            }
        )));
    }

    // ── Query length ─────────────────────────────────────────────────────────

    #[test]
    fn test_query_length_ok() {
        let cfg = ValidatorConfig {
            max_query_length: 1000,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        let req = IncomingRequest::get(valid_select());
        let r = v.validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::QueryTooLong { .. })));
    }

    #[test]
    fn test_query_length_exceeds_limit() {
        let cfg = ValidatorConfig {
            max_query_length: 10,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        let req = IncomingRequest::get("SELECT ?s WHERE { ?s ?p ?o }");
        let r = v.validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::QueryTooLong { .. })));
    }

    // ── Content-Type ─────────────────────────────────────────────────────────

    #[test]
    fn test_post_sparql_query_content_type() {
        let req = IncomingRequest::post(valid_select(), 100);
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidContentType { .. })));
    }

    #[test]
    fn test_post_form_content_type() {
        let req = IncomingRequest {
            method: "POST".to_string(),
            content_type: "application/x-www-form-urlencoded".to_string(),
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidContentType { .. })));
    }

    #[test]
    fn test_post_invalid_content_type() {
        let req = IncomingRequest {
            method: "POST".to_string(),
            content_type: "text/plain".to_string(),
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidContentType { .. })));
    }

    #[test]
    fn test_post_missing_content_type() {
        let req = IncomingRequest {
            method: "POST".to_string(),
            content_type: String::new(),
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidContentType { .. })));
    }

    #[test]
    fn test_get_does_not_check_content_type() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            content_type: "text/plain".to_string(), // irrelevant for GET
            query: valid_select().to_string(),
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidContentType { .. })));
    }

    // ── Query syntax ─────────────────────────────────────────────────────────

    #[test]
    fn test_balanced_braces_ok() {
        let req = IncomingRequest::get("SELECT ?s WHERE { ?s ?p ?o }");
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnbalancedBraces { .. })));
    }

    #[test]
    fn test_unbalanced_open_brace() {
        let req = IncomingRequest::get("SELECT ?s WHERE { ?s ?p ?o");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnbalancedBraces { depth: 1 })));
    }

    #[test]
    fn test_unbalanced_close_brace() {
        let req = IncomingRequest::get("SELECT ?s WHERE { ?s ?p ?o }}");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnbalancedBraces { depth: -1 })));
    }

    #[test]
    fn test_missing_query_type() {
        let req = IncomingRequest::get("FILTER (?x > 5) WHERE { ?s ?p ?o }");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_select_query_type_accepted() {
        let req = IncomingRequest::get(valid_select());
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_ask_query_type_accepted() {
        let req = IncomingRequest::get("ASK { ?s ?p ?o }");
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_construct_query_type_accepted() {
        let req = IncomingRequest::get("CONSTRUCT { ?s ?p ?o } WHERE { ?s ?p ?o }");
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_describe_query_type_accepted() {
        let req = IncomingRequest::get("DESCRIBE <http://example.org>");
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_empty_query_no_syntax_error() {
        // An empty query produces no syntax errors (no query type, no braces).
        let req = IncomingRequest::get("");
        let r = validator().validate(&req);
        // No UnbalancedBraces or MissingQueryType for empty query.
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnbalancedBraces { .. })));
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::MissingQueryType)));
    }

    #[test]
    fn test_braces_in_string_ignored() {
        // Braces inside string literals should not affect depth.
        let req = IncomingRequest::get("SELECT ?s WHERE { ?s ?p \"{this is fine}\" }");
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnbalancedBraces { .. })));
    }

    // ── Graph URIs ───────────────────────────────────────────────────────────

    #[test]
    fn test_valid_graph_uri() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            graph_uris: vec!["http://example.org/graph".to_string()],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidGraphUri(_))));
    }

    #[test]
    fn test_invalid_graph_uri_no_scheme() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            graph_uris: vec!["not-a-uri".to_string()],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidGraphUri(_))));
    }

    #[test]
    fn test_invalid_graph_uri_empty() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            graph_uris: vec!["".to_string()],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidGraphUri(_))));
    }

    #[test]
    fn test_valid_urn_uri() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            graph_uris: vec!["urn:example:graph".to_string()],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::InvalidGraphUri(_))));
    }

    // ── Parameters ───────────────────────────────────────────────────────────

    #[test]
    fn test_known_parameter_accepted() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            params: vec![("query".to_string(), "SELECT ?s WHERE {}".to_string())],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnknownParameter(_))));
    }

    #[test]
    fn test_unknown_parameter_rejected() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            params: vec![("foo".to_string(), "bar".to_string())],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::UnknownParameter(p) if p == "foo")));
    }

    #[test]
    fn test_duplicate_parameter_rejected() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            params: vec![
                ("query".to_string(), "SELECT ?a WHERE {}".to_string()),
                ("query".to_string(), "SELECT ?b WHERE {}".to_string()),
            ],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::DuplicateParameter(p) if p == "query")));
    }

    #[test]
    fn test_bad_percent_encoding_detected() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            params: vec![("query".to_string(), "SELECT %ZZ WHERE {}".to_string())],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::EncodingError { param: p } if p == "query")));
    }

    #[test]
    fn test_valid_percent_encoding_accepted() {
        let req = IncomingRequest {
            method: "GET".to_string(),
            query: valid_select().to_string(),
            params: vec![(
                "query".to_string(),
                "SELECT%20%3Fs%20WHERE%20%7B%7D".to_string(),
            )],
            ..Default::default()
        };
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::EncodingError { .. })));
    }

    // ── Injection detection ──────────────────────────────────────────────────

    #[test]
    fn test_injection_drop_all() {
        let req = IncomingRequest::get("DROP ALL");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::SuspiciousPattern(_))));
    }

    #[test]
    fn test_injection_drop_graph() {
        let req = IncomingRequest::get("DROP GRAPH <http://example.org/g>");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::SuspiciousPattern(_))));
    }

    #[test]
    fn test_injection_clear_all() {
        let req = IncomingRequest::get("CLEAR ALL");
        let r = validator().validate(&req);
        assert!(r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::SuspiciousPattern(_))));
    }

    #[test]
    fn test_injection_disabled() {
        let cfg = ValidatorConfig {
            enable_injection_check: false,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        // Even a dangerous pattern should not trigger when disabled.
        let req = IncomingRequest::get("DROP ALL");
        let r = v.validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::SuspiciousPattern(_))));
    }

    #[test]
    fn test_normal_select_no_injection() {
        let req = IncomingRequest::get(valid_select());
        let r = validator().validate(&req);
        assert!(!r
            .errors
            .iter()
            .any(|e| matches!(e, ValidationError::SuspiciousPattern(_))));
    }

    // ── ValidationError display ──────────────────────────────────────────────

    #[test]
    fn test_error_display_method_not_allowed() {
        let e = ValidationError::MethodNotAllowed {
            received: "DELETE".to_string(),
            allowed: vec!["GET".to_string()],
        };
        let s = e.to_string();
        assert!(s.contains("DELETE"));
        assert!(s.contains("GET"));
    }

    #[test]
    fn test_error_display_body_too_large() {
        let e = ValidationError::BodyTooLarge {
            actual: 2000,
            limit: 1000,
        };
        let s = e.to_string();
        assert!(s.contains("2000"));
        assert!(s.contains("1000"));
    }

    #[test]
    fn test_error_display_query_too_long() {
        let e = ValidationError::QueryTooLong {
            actual: 500,
            limit: 100,
        };
        let s = e.to_string();
        assert!(s.contains("500"));
        assert!(s.contains("100"));
    }

    #[test]
    fn test_error_display_missing_query_type() {
        let s = ValidationError::MissingQueryType.to_string();
        assert!(s.contains("SELECT"));
    }

    #[test]
    fn test_error_display_unbalanced_open() {
        let e = ValidationError::UnbalancedBraces { depth: 2 };
        let s = e.to_string();
        assert!(s.contains("unclosed"));
    }

    #[test]
    fn test_error_display_unbalanced_close() {
        let e = ValidationError::UnbalancedBraces { depth: -1 };
        let s = e.to_string();
        assert!(s.contains("extra"));
    }

    #[test]
    fn test_error_display_invalid_graph_uri() {
        let e = ValidationError::InvalidGraphUri("bad-uri".to_string());
        assert!(e.to_string().contains("bad-uri"));
    }

    #[test]
    fn test_error_display_unknown_param() {
        let e = ValidationError::UnknownParameter("foo".to_string());
        assert!(e.to_string().contains("foo"));
    }

    #[test]
    fn test_error_display_duplicate_param() {
        let e = ValidationError::DuplicateParameter("query".to_string());
        assert!(e.to_string().contains("query"));
    }

    #[test]
    fn test_error_display_invalid_content_type() {
        let e = ValidationError::InvalidContentType {
            received: "text/plain".to_string(),
        };
        assert!(e.to_string().contains("text/plain"));
    }

    #[test]
    fn test_error_display_missing_content_type() {
        let e = ValidationError::InvalidContentType {
            received: String::new(),
        };
        assert!(e.to_string().contains("missing"));
    }

    #[test]
    fn test_error_display_suspicious_pattern() {
        let e = ValidationError::SuspiciousPattern("drop all".to_string());
        assert!(e.to_string().contains("drop all"));
    }

    #[test]
    fn test_error_display_encoding_error() {
        let e = ValidationError::EncodingError {
            param: "query".to_string(),
        };
        assert!(e.to_string().contains("query"));
    }

    // ── Utility functions ────────────────────────────────────────────────────

    #[test]
    fn test_brace_depth_balanced() {
        assert_eq!(brace_depth("{ { } }"), 0);
    }

    #[test]
    fn test_brace_depth_open() {
        assert_eq!(brace_depth("{ {"), 2);
    }

    #[test]
    fn test_brace_depth_close() {
        assert_eq!(brace_depth("}"), -1);
    }

    #[test]
    fn test_brace_depth_ignores_string() {
        assert_eq!(brace_depth("SELECT ?s WHERE { ?s ?p \"{{{\" }"), 0);
    }

    #[test]
    fn test_is_valid_iri_http() {
        assert!(is_valid_iri("http://example.org/"));
    }

    #[test]
    fn test_is_valid_iri_https() {
        assert!(is_valid_iri("https://example.org/graph"));
    }

    #[test]
    fn test_is_valid_iri_urn() {
        assert!(is_valid_iri("urn:example:a"));
    }

    #[test]
    fn test_is_valid_iri_empty() {
        assert!(!is_valid_iri(""));
    }

    #[test]
    fn test_is_valid_iri_no_scheme() {
        assert!(!is_valid_iri("example.org"));
    }

    #[test]
    fn test_is_valid_iri_colon_at_start() {
        assert!(!is_valid_iri(":path"));
    }

    #[test]
    fn test_has_bad_percent_encoding_valid() {
        assert!(!has_bad_percent_encoding("hello%20world%3F"));
    }

    #[test]
    fn test_has_bad_percent_encoding_invalid() {
        assert!(has_bad_percent_encoding("hello%ZZworld"));
    }

    #[test]
    fn test_has_bad_percent_encoding_truncated() {
        assert!(has_bad_percent_encoding("hello%2"));
    }

    #[test]
    fn test_has_bad_percent_encoding_no_percent() {
        assert!(!has_bad_percent_encoding("hello world"));
    }

    // ── Config accessor ──────────────────────────────────────────────────────

    #[test]
    fn test_config_accessor() {
        let v = validator();
        assert_eq!(v.config().allowed_methods, vec!["GET", "POST"]);
    }

    // ── Multiple errors collected ─────────────────────────────────────────────

    #[test]
    fn test_multiple_errors_collected() {
        let cfg = ValidatorConfig {
            max_body_bytes: 1,
            max_query_length: 5,
            ..ValidatorConfig::default()
        };
        let v = RequestValidator::new(cfg);
        let req = IncomingRequest {
            method: "PUT".to_string(),
            body_size: 100,
            query: "SELECT ?s WHERE { ?s ?p ?o }".to_string(),
            ..Default::default()
        };
        let r = v.validate(&req);
        // Should have method, body size, and query length errors
        assert!(r.error_count() >= 3);
    }
}