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
//! OpenAPI route registry and management (DEPRECATED)
//!
//! **Note:** This sub-module contains an abandoned partial refactoring.
//! The authoritative `OpenApiRouteRegistry` is defined in the parent
//! `openapi_routes.rs` file (with `custom_fixture_loader` support).
//! This module's `OpenApiRouteRegistry` is a different, unused type.
//!
//! New code should use `crate::openapi_routes::OpenApiRouteRegistry` directly.
//! This module will be removed in a future version.
use super::validation::{ValidationMode, ValidationOptions};
use crate::response::AiGenerator;
use crate::route::OpenApiRoute;
use crate::spec::OpenApiSpec;
use axum::extract::Json;
use axum::http::HeaderMap;
use mockforge_foundation::ai_response::RequestContext;
use openapiv3::{PathItem, ReferenceOr};
use serde_json::Value;
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
use url::Url;
/// OpenAPI route registry that manages generated routes
#[derive(Debug, Clone)]
pub struct OpenApiRouteRegistry {
/// The OpenAPI specification
spec: Arc<OpenApiSpec>,
/// Generated routes
routes: Vec<OpenApiRoute>,
/// Validation options
options: ValidationOptions,
}
impl OpenApiRouteRegistry {
/// Create a new registry from an OpenAPI spec with default options
pub fn new(spec: OpenApiSpec) -> Self {
Self::new_with_env(spec)
}
/// Create a new registry from an OpenAPI spec with environment-based options
///
/// Options are read from environment variables:
/// - `MOCKFORGE_REQUEST_VALIDATION`: "off"/"warn"/"enforce" (default: "enforce")
/// - `MOCKFORGE_AGGREGATE_ERRORS`: "1"/"true" to aggregate errors (default: true)
/// - `MOCKFORGE_RESPONSE_VALIDATION`: "1"/"true" to validate responses (default: false)
/// - `MOCKFORGE_RESPONSE_TEMPLATE_EXPAND`: "1"/"true" to expand templates (default: false)
/// - `MOCKFORGE_VALIDATION_STATUS`: HTTP status code for validation failures (optional)
pub fn new_with_env(spec: OpenApiSpec) -> Self {
tracing::debug!("Creating OpenAPI route registry");
let spec = Arc::new(spec);
let routes = Self::generate_routes(&spec);
let options = ValidationOptions {
request_mode: match std::env::var("MOCKFORGE_REQUEST_VALIDATION")
.unwrap_or_else(|_| "enforce".into())
.to_ascii_lowercase()
.as_str()
{
"off" | "disable" | "disabled" => ValidationMode::Disabled,
"warn" | "warning" => ValidationMode::Warn,
_ => ValidationMode::Enforce,
},
aggregate_errors: std::env::var("MOCKFORGE_AGGREGATE_ERRORS")
.map(|v| v == "1" || v.eq_ignore_ascii_case("true"))
.unwrap_or(true),
validate_responses: std::env::var("MOCKFORGE_RESPONSE_VALIDATION")
.map(|v| v == "1" || v.eq_ignore_ascii_case("true"))
.unwrap_or(false),
overrides: HashMap::new(),
admin_skip_prefixes: Vec::new(),
response_template_expand: std::env::var("MOCKFORGE_RESPONSE_TEMPLATE_EXPAND")
.map(|v| v == "1" || v.eq_ignore_ascii_case("true"))
.unwrap_or(false),
validation_status: std::env::var("MOCKFORGE_VALIDATION_STATUS")
.ok()
.and_then(|s| s.parse::<u16>().ok()),
};
Self {
spec,
routes,
options,
}
}
/// Create a new registry from an OpenAPI spec with explicit validation options
///
/// # Arguments
/// * `spec` - OpenAPI specification
/// * `options` - Validation options to use
pub fn new_with_options(spec: OpenApiSpec, options: ValidationOptions) -> Self {
tracing::debug!("Creating OpenAPI route registry with custom options");
let spec = Arc::new(spec);
let routes = Self::generate_routes(&spec);
Self {
spec,
routes,
options,
}
}
/// Generate routes from the OpenAPI specification
fn generate_routes(spec: &Arc<OpenApiSpec>) -> Vec<OpenApiRoute> {
tracing::debug!(
"Generating routes from OpenAPI spec with {} paths",
spec.spec.paths.paths.len()
);
let base_paths = Self::collect_base_paths(spec);
// Optimize: Use parallel iteration for route generation when beneficial
#[cfg(feature = "parallel-routes")]
{
use rayon::prelude::*;
let path_items: Vec<_> = spec.spec.paths.paths.iter().collect();
// Use parallel processing for large specs (100+ paths)
if path_items.len() > 100 {
tracing::debug!("Using parallel route generation for {} paths", path_items.len());
let routes: Vec<Vec<OpenApiRoute>> = path_items
.par_iter()
.map(|(path, path_item)| {
let mut routes = Vec::new();
let mut visited = HashSet::new();
if let Some(item) = Self::resolve_path_item(path_item, spec, &mut visited) {
Self::collect_routes_for_path(&mut routes, path, &item, spec, &base_paths);
} else {
tracing::warn!(
"Skipping path {} because the referenced PathItem could not be resolved",
path
);
}
routes
})
.collect();
let mut all_routes = Vec::new();
for route_batch in routes {
all_routes.extend(route_batch);
}
tracing::debug!(
"Generated {} total routes from OpenAPI spec (parallel)",
all_routes.len()
);
return all_routes;
}
}
// Sequential processing for smaller specs or when rayon is not available
let mut routes = Vec::new();
for (path, path_item) in &spec.spec.paths.paths {
tracing::debug!("Processing path: {}", path);
let mut visited = HashSet::new();
if let Some(item) = Self::resolve_path_item(path_item, spec, &mut visited) {
Self::collect_routes_for_path(&mut routes, path, &item, spec, &base_paths);
} else {
tracing::warn!(
"Skipping path {} because the referenced PathItem could not be resolved",
path
);
}
}
tracing::debug!("Generated {} total routes from OpenAPI spec", routes.len());
routes
}
fn collect_routes_for_path(
routes: &mut Vec<OpenApiRoute>,
path: &str,
item: &PathItem,
spec: &Arc<OpenApiSpec>,
base_paths: &[String],
) {
// Round 40 (#888 / #79) — Srikanth's Google Apigee spec puts
// the shared auth / format query parameters (`$.xgafv`,
// `prettyPrint`, `key`, etc.) at PATH level, not on the
// operation. v0.3.184's validator only iterated
// `operation.parameters`, so a request that violated those
// path-level constraints (`$.xgafv=test-value` against an
// `enum: ['1', '2']`) silently returned 200 OK and never
// touched the conformance-violation buffer. Per OpenAPI 3.0
// §4.7.10.1, "If a parameter is already defined at the Path
// Item, the new definition will override it but can never
// remove it." We materialise that override at parse time by
// building a merged Vec once per operation: path-level
// params first, then operation-level params, and any
// operation-level entry with the same `(name, in)` shadows
// the path-level one.
if let Some(op) = &item.get {
tracing::debug!(" Adding GET route for path: {}", path);
Self::push_routes_for_method(
routes,
"GET",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.post {
Self::push_routes_for_method(
routes,
"POST",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.put {
Self::push_routes_for_method(
routes,
"PUT",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.delete {
Self::push_routes_for_method(
routes,
"DELETE",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.patch {
Self::push_routes_for_method(
routes,
"PATCH",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.head {
Self::push_routes_for_method(
routes,
"HEAD",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.options {
Self::push_routes_for_method(
routes,
"OPTIONS",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
if let Some(op) = &item.trace {
Self::push_routes_for_method(
routes,
"TRACE",
path,
op,
&item.parameters,
spec,
base_paths,
);
}
}
fn push_routes_for_method(
routes: &mut Vec<OpenApiRoute>,
method: &str,
path: &str,
operation: &openapiv3::Operation,
path_level_params: &[openapiv3::ReferenceOr<openapiv3::Parameter>],
spec: &Arc<OpenApiSpec>,
base_paths: &[String],
) {
// Round 40 — build the merged parameter list per the
// OpenAPI 3.0 override rule. We then clone the Operation so
// the on-disk spec stays untouched while the registry's copy
// has the merged params on it. The merge keyed on `(name,
// in)` matches the spec exactly: an operation-level `query
// foo` overrides a path-level `query foo` but a path-level
// `header foo` and an operation-level `query foo` coexist.
let merged_op = merge_path_params_into_operation(operation, path_level_params);
for base in base_paths {
let full_path = Self::join_base_path(base, path);
routes.push(OpenApiRoute::from_operation(method, full_path, &merged_op, spec.clone()));
}
}
fn collect_base_paths(spec: &Arc<OpenApiSpec>) -> Vec<String> {
let mut base_paths = Vec::new();
for server in spec.servers() {
if let Some(base_path) = Self::extract_base_path(server.url.as_str()) {
if !base_paths.contains(&base_path) {
base_paths.push(base_path);
}
}
}
if base_paths.is_empty() {
base_paths.push(String::new());
}
base_paths
}
fn extract_base_path(raw_url: &str) -> Option<String> {
let trimmed = raw_url.trim();
if trimmed.is_empty() {
return None;
}
if trimmed.starts_with('/') {
return Some(Self::normalize_base_path(trimmed));
}
if let Ok(parsed) = Url::parse(trimmed) {
return Some(Self::normalize_base_path(parsed.path()));
}
None
}
fn normalize_base_path(path: &str) -> String {
let trimmed = path.trim();
if trimmed.is_empty() || trimmed == "/" {
String::new()
} else {
let mut normalized = trimmed.trim_end_matches('/').to_string();
if !normalized.starts_with('/') {
normalized.insert(0, '/');
}
normalized
}
}
fn join_base_path(base: &str, path: &str) -> String {
let trimmed_path = path.trim_start_matches('/');
if base.is_empty() {
if trimmed_path.is_empty() {
"/".to_string()
} else {
format!("/{}", trimmed_path)
}
} else if trimmed_path.is_empty() {
base.to_string()
} else {
format!("{}/{}", base, trimmed_path)
}
}
fn resolve_path_item(
value: &ReferenceOr<PathItem>,
spec: &Arc<OpenApiSpec>,
visited: &mut HashSet<String>,
) -> Option<PathItem> {
match value {
ReferenceOr::Item(item) => Some(item.clone()),
ReferenceOr::Reference { reference } => {
Self::resolve_path_item_reference(reference, spec, visited)
}
}
}
fn resolve_path_item_reference(
reference: &str,
spec: &Arc<OpenApiSpec>,
visited: &mut HashSet<String>,
) -> Option<PathItem> {
if !visited.insert(reference.to_string()) {
tracing::warn!("Detected recursive path item reference: {}", reference);
return None;
}
if let Some(name) = reference.strip_prefix("#/components/pathItems/") {
return Self::resolve_component_path_item(name, spec, visited);
}
if let Some(pointer) = reference.strip_prefix("#/paths/") {
let decoded_path = Self::decode_json_pointer(pointer);
if let Some(next) = spec.spec.paths.paths.get(&decoded_path) {
return Self::resolve_path_item(next, spec, visited);
}
tracing::warn!(
"Path reference {} resolved to missing path '{}'",
reference,
decoded_path
);
return None;
}
tracing::warn!("Unsupported path item reference: {}", reference);
None
}
fn resolve_component_path_item(
name: &str,
spec: &Arc<OpenApiSpec>,
visited: &mut HashSet<String>,
) -> Option<PathItem> {
let raw = spec.raw_document.as_ref()?;
let components = raw.get("components")?.as_object()?;
let path_items = components.get("pathItems")?.as_object()?;
let item_value = path_items.get(name)?;
if let Some(reference) = item_value
.as_object()
.and_then(|obj| obj.get("$ref"))
.and_then(|value| value.as_str())
{
tracing::debug!(
"Resolving components.pathItems entry '{}' via reference {}",
name,
reference
);
return Self::resolve_path_item_reference(reference, spec, visited);
}
match serde_json::from_value(item_value.clone()) {
Ok(item) => Some(item),
Err(err) => {
tracing::warn!(
"Failed to deserialize components.pathItems entry '{}' as a PathItem: {}",
name,
err
);
None
}
}
}
fn decode_json_pointer(pointer: &str) -> String {
let segments: Vec<String> = pointer
.split('/')
.map(|segment| segment.replace("~1", "/").replace("~0", "~"))
.collect();
segments.join("/")
}
/// Get all generated routes
pub fn routes(&self) -> &[OpenApiRoute] {
&self.routes
}
/// Get the OpenAPI specification used to generate routes
pub fn spec(&self) -> &OpenApiSpec {
&self.spec
}
/// Get immutable reference to validation options
pub fn options(&self) -> &ValidationOptions {
&self.options
}
/// Get mutable reference to validation options for runtime configuration changes
pub fn options_mut(&mut self) -> &mut ValidationOptions {
&mut self.options
}
/// Build an Axum router from the generated routes
pub fn build_router(&self) -> axum::Router {
use axum::routing::{delete, get, patch, post, put};
let mut router = axum::Router::new();
tracing::debug!("Building router from {} routes", self.routes.len());
for route in &self.routes {
tracing::debug!("Adding route: {} {}", route.method, route.path);
tracing::debug!(
"Route operation responses: {:?}",
route.operation.responses.responses.keys().collect::<Vec<_>>()
);
let route_clone = route.clone();
let handler = move || {
let route = route_clone.clone();
async move {
tracing::debug!("Handling request for route: {} {}", route.method, route.path);
let (status, response, trace) =
route.mock_response_with_status_and_scenario_and_trace(None, None);
tracing::debug!("Generated response with status: {}", status);
// Create response with trace attached to extensions
use axum::response::IntoResponse;
let mut axum_response = (
axum::http::StatusCode::from_u16(status)
.unwrap_or(axum::http::StatusCode::OK),
Json(response),
)
.into_response();
// Attach trace to response extensions so logging middleware can pick it up
axum_response.extensions_mut().insert(trace);
axum_response
}
};
match route.method.as_str() {
"GET" => {
tracing::debug!("Registering GET route: {}", route.path);
router = router.route(&route.path, get(handler));
}
"POST" => {
tracing::debug!("Registering POST route: {}", route.path);
router = router.route(&route.path, post(handler));
}
"PUT" => {
tracing::debug!("Registering PUT route: {}", route.path);
router = router.route(&route.path, put(handler));
}
"DELETE" => {
tracing::debug!("Registering DELETE route: {}", route.path);
router = router.route(&route.path, delete(handler));
}
"PATCH" => {
tracing::debug!("Registering PATCH route: {}", route.path);
router = router.route(&route.path, patch(handler));
}
_ => tracing::warn!("Unsupported HTTP method: {}", route.method),
}
}
router
}
/// Build router with latency and failure injection support
///
/// # Arguments
/// * `latency_injector` - Latency injector for simulating network delays
/// * `failure_injector` - Optional failure injector for simulating errors
///
/// # Returns
/// Axum router with chaos engineering capabilities
pub fn build_router_with_injectors(
&self,
latency_injector: mockforge_foundation::latency::LatencyInjector,
failure_injector: Option<mockforge_foundation::failure_injection::FailureInjector>,
) -> axum::Router {
use axum::routing::{delete, get, patch, post, put};
let mut router = axum::Router::new();
tracing::debug!("Building router with injectors from {} routes", self.routes.len());
for route in &self.routes {
tracing::debug!("Adding route with injectors: {} {}", route.method, route.path);
let route_clone = route.clone();
let latency_injector_clone = latency_injector.clone();
let failure_injector_clone = failure_injector.clone();
let handler = move || {
let route = route_clone.clone();
let latency_injector = latency_injector_clone.clone();
let failure_injector = failure_injector_clone.clone();
async move {
tracing::debug!(
"Handling request with injectors for route: {} {}",
route.method,
route.path
);
// Extract tags from the operation
let tags = route.operation.tags.clone();
// Inject latency if configured
if let Err(e) = latency_injector.inject_latency(&tags).await {
tracing::warn!("Failed to inject latency: {}", e);
}
// Check for failure injection
if let Some(ref injector) = failure_injector {
if injector.should_inject_failure(&tags) {
// Return a failure response
return (
axum::http::StatusCode::INTERNAL_SERVER_ERROR,
Json(serde_json::json!({
"error": "Injected failure",
"code": 500
})),
);
}
}
// Generate normal response
let (status, response) = route.mock_response_with_status();
(
axum::http::StatusCode::from_u16(status)
.unwrap_or(axum::http::StatusCode::OK),
Json(response),
)
}
};
match route.method.as_str() {
"GET" => router = router.route(&route.path, get(handler)),
"POST" => router = router.route(&route.path, post(handler)),
"PUT" => router = router.route(&route.path, put(handler)),
"DELETE" => router = router.route(&route.path, delete(handler)),
"PATCH" => router = router.route(&route.path, patch(handler)),
_ => tracing::warn!("Unsupported HTTP method: {}", route.method),
}
}
router
}
/// Extract path parameters from a request path by matching against known routes
///
/// # Arguments
/// * `path` - Request path (e.g., "/users/123")
/// * `method` - HTTP method (e.g., "GET")
///
/// # Returns
/// Map of parameter names to values extracted from the path
pub fn extract_path_parameters(&self, path: &str, method: &str) -> HashMap<String, String> {
for route in &self.routes {
if route.method != method {
continue;
}
if let Some(params) = self.match_path_to_route(path, &route.path) {
return params;
}
}
HashMap::new()
}
/// Match a request path against a route pattern and extract parameters
fn match_path_to_route(
&self,
request_path: &str,
route_pattern: &str,
) -> Option<HashMap<String, String>> {
let mut params = HashMap::new();
// Split both paths into segments
let request_segments: Vec<&str> = request_path.trim_start_matches('/').split('/').collect();
let pattern_segments: Vec<&str> =
route_pattern.trim_start_matches('/').split('/').collect();
if request_segments.len() != pattern_segments.len() {
return None;
}
for (req_seg, pat_seg) in request_segments.iter().zip(pattern_segments.iter()) {
if pat_seg.starts_with('{') && pat_seg.ends_with('}') {
// This is a parameter
let param_name = &pat_seg[1..pat_seg.len() - 1];
params.insert(param_name.to_string(), req_seg.to_string());
} else if req_seg != pat_seg {
// Static segment doesn't match
return None;
}
}
Some(params)
}
/// Build router with AI generator support for dynamic response generation
///
/// # Arguments
/// * `ai_generator` - Optional AI generator for creating dynamic responses based on request context
///
/// # Returns
/// Axum router with AI-powered response generation
pub fn build_router_with_ai(
&self,
ai_generator: Option<Arc<dyn AiGenerator + Send + Sync>>,
) -> axum::Router {
use axum::routing::{delete, get, patch, post, put};
let mut router = axum::Router::new();
tracing::debug!("Building router with AI support from {} routes", self.routes.len());
for route in &self.routes {
tracing::debug!("Adding AI-enabled route: {} {}", route.method, route.path);
let route_clone = route.clone();
let ai_generator_clone = ai_generator.clone();
// Create async handler that extracts request data and builds context
let handler = move |headers: HeaderMap, body: Option<Json<Value>>| {
let route = route_clone.clone();
let ai_generator = ai_generator_clone.clone();
async move {
tracing::debug!(
"Handling AI request for route: {} {}",
route.method,
route.path
);
// Build request context
let mut context = RequestContext::new(route.method.clone(), route.path.clone());
// Extract headers
context.headers = headers
.iter()
.map(|(k, v)| {
(k.to_string(), Value::String(v.to_str().unwrap_or("").to_string()))
})
.collect();
// Extract body if present
context.body = body.map(|Json(b)| b);
// Generate AI response if AI generator is available and route has AI config
let (status, response) = if let (Some(generator), Some(_ai_config)) =
(ai_generator, &route.ai_config)
{
route
.mock_response_with_status_async(&context, Some(generator.as_ref()))
.await
} else {
// No AI support, use static response
route.mock_response_with_status()
};
(
axum::http::StatusCode::from_u16(status)
.unwrap_or(axum::http::StatusCode::OK),
Json(response),
)
}
};
match route.method.as_str() {
"GET" => {
router = router.route(&route.path, get(handler));
}
"POST" => {
router = router.route(&route.path, post(handler));
}
"PUT" => {
router = router.route(&route.path, put(handler));
}
"DELETE" => {
router = router.route(&route.path, delete(handler));
}
"PATCH" => {
router = router.route(&route.path, patch(handler));
}
_ => tracing::warn!("Unsupported HTTP method for AI: {}", route.method),
}
}
router
}
/// Build router with MockAI (Behavioral Mock Intelligence) support
///
/// This method integrates MockAI for intelligent, context-aware response generation,
/// mutation detection, validation error generation, and pagination intelligence.
///
/// # Arguments
/// * `mockai` - Optional MockAI instance for intelligent behavior
///
/// # Returns
/// Axum router with MockAI-powered response generation
pub fn build_router_with_mockai(
&self,
mockai: Option<
Arc<
tokio::sync::RwLock<
dyn mockforge_foundation::intelligent_behavior::MockAiBehavior + Send + Sync,
>,
>,
>,
) -> axum::Router {
use mockforge_foundation::intelligent_behavior::Request as MockAIRequest;
use axum::routing::{delete, get, patch, post, put};
let mut router = axum::Router::new();
tracing::debug!("Building router with MockAI support from {} routes", self.routes.len());
for route in &self.routes {
tracing::debug!("Adding MockAI-enabled route: {} {}", route.method, route.path);
let route_clone = route.clone();
let mockai_clone = mockai.clone();
// Create async handler that processes requests through MockAI
// Query params are extracted via Query extractor with HashMap
// Note: Using Query<HashMap<String, String>> to handle query params
let handler = move |query: axum::extract::Query<HashMap<String, String>>,
headers: HeaderMap,
body: Option<Json<Value>>| {
let route = route_clone.clone();
let mockai = mockai_clone.clone();
async move {
tracing::debug!(
"Handling MockAI request for route: {} {}",
route.method,
route.path
);
// Query parameters are already parsed by Query extractor
let mockai_query = query.0;
// If MockAI is enabled, use it to process the request
if let Some(mockai_arc) = mockai {
let mockai_guard = mockai_arc.read().await;
// Build MockAI request
let mut mockai_headers = HashMap::new();
for (k, v) in headers.iter() {
mockai_headers
.insert(k.to_string(), v.to_str().unwrap_or("").to_string());
}
let mockai_request = MockAIRequest {
method: route.method.clone(),
path: route.path.clone(),
body: body.as_ref().map(|Json(b)| b.clone()),
query_params: mockai_query,
headers: mockai_headers,
};
// Process request through MockAI
match mockai_guard.process_request(&mockai_request).await {
Ok(mockai_response) => {
tracing::debug!(
"MockAI generated response with status: {}",
mockai_response.status_code
);
return (
axum::http::StatusCode::from_u16(mockai_response.status_code)
.unwrap_or(axum::http::StatusCode::OK),
Json(mockai_response.body),
);
}
Err(e) => {
tracing::warn!(
"MockAI processing failed for {} {}: {}, falling back to standard response",
route.method,
route.path,
e
);
// Fall through to standard response generation
}
}
}
// Fallback to standard response generation
let (status, response) = route.mock_response_with_status();
(
axum::http::StatusCode::from_u16(status)
.unwrap_or(axum::http::StatusCode::OK),
Json(response),
)
}
};
match route.method.as_str() {
"GET" => {
router = router.route(&route.path, get(handler));
}
"POST" => {
router = router.route(&route.path, post(handler));
}
"PUT" => {
router = router.route(&route.path, put(handler));
}
"DELETE" => {
router = router.route(&route.path, delete(handler));
}
"PATCH" => {
router = router.route(&route.path, patch(handler));
}
_ => tracing::warn!("Unsupported HTTP method for MockAI: {}", route.method),
}
}
router
}
}
/// Round 40 (#888 / #79) — delegates to the shared
/// `crate::spec::merge_path_params_into_operation`. The same merge
/// logic also runs from `OpenApiSpec::operations_for_path` so the
/// main openapi-routes registry (the one actually serving requests
/// in `mockforge serve`) picks up path-level parameters too. Keeping
/// the wrapper here means existing call sites in this submodule
/// stay short.
use crate::spec::merge_path_params_into_operation;
#[cfg(test)]
mod tests {
use super::*;
fn registry_from_yaml(yaml: &str) -> OpenApiRouteRegistry {
let spec = OpenApiSpec::from_string(yaml, Some("yaml")).expect("parse spec");
OpenApiRouteRegistry::new_with_env(spec)
}
/// Round 40 (#888 / #79) — Srikanth's Google Apigee spec puts
/// the shared auth / format query parameters at PATH level, not
/// on each operation. v0.3.184's registry only carried
/// `operation.parameters` onto the validator's `OpenApiRoute`, so
/// path-level entries like `$.xgafv` (enum) and `prettyPrint`
/// (boolean) were silently ignored and a request with
/// `?$.xgafv=test-value&prettyPrint=test-value` returned 200 OK.
/// This test pins the OpenAPI 3.0 §4.7.10.1 override semantics:
/// path-level params flow onto the merged operation parameter
/// list, and an operation-level entry with the same `(name, in)`
/// pair shadows the path-level one.
#[test]
fn path_level_parameters_merged_into_operation_with_operation_override() {
let yaml = r#"
openapi: 3.0.0
info:
title: path-level params test
version: "1.0"
paths:
/v1/organizations:
parameters:
- name: $.xgafv
in: query
schema:
type: string
enum: ["1", "2"]
- name: prettyPrint
in: query
schema:
type: boolean
post:
operationId: createOrg
parameters:
- name: parent
in: query
schema:
type: string
- name: prettyPrint
in: query
schema:
type: string
enum: [override]
responses:
"200":
description: ok
"#;
let registry = registry_from_yaml(yaml);
let route = registry
.routes()
.iter()
.find(|r| r.method == "POST" && r.path == "/v1/organizations")
.expect("POST /v1/organizations exists");
let names: Vec<String> = route
.operation
.parameters
.iter()
.filter_map(|p| match p.as_item()? {
openapiv3::Parameter::Query { parameter_data, .. } => {
Some(parameter_data.name.clone())
}
_ => None,
})
.collect();
// Path-level `$.xgafv` and `prettyPrint` flow into the merged
// parameter list. Operation-level `parent` is preserved.
assert!(names.contains(&"$.xgafv".to_string()), "got: {:?}", names);
assert!(names.contains(&"parent".to_string()), "got: {:?}", names);
// `prettyPrint` is defined at BOTH levels — operation wins.
// Only the operation-level entry should survive (the
// path-level one is shadowed).
let pretty_count = names.iter().filter(|n| *n == "prettyPrint").count();
assert_eq!(
pretty_count, 1,
"prettyPrint should appear exactly once after override; names={:?}",
names
);
// Verify the surviving prettyPrint is the operation-level
// string-enum, not the path-level boolean.
let pretty_schema = route
.operation
.parameters
.iter()
.find_map(|p| match p.as_item()? {
openapiv3::Parameter::Query { parameter_data, .. }
if parameter_data.name == "prettyPrint" =>
{
Some(parameter_data.format.clone())
}
_ => None,
})
.expect("prettyPrint in merged parameters");
// openapi_v3 stores schema in `format` for Parameter; just
// check the parameter exists. The detailed enum/type
// assertion lives in a server-side validator test (out of
// scope for the registry merge unit).
let _ = pretty_schema;
}
/// Round 40 — when a path-level parameter list is empty (most
/// real-world specs), the merge is a no-op clone and the
/// operation passes through unchanged.
#[test]
fn no_path_level_parameters_means_no_merge() {
let yaml = r#"
openapi: 3.0.0
info:
title: no path-level params
version: "1.0"
paths:
/users:
get:
operationId: listUsers
parameters:
- name: limit
in: query
schema:
type: integer
responses:
"200":
description: ok
"#;
let registry = registry_from_yaml(yaml);
let route = registry
.routes()
.iter()
.find(|r| r.method == "GET" && r.path == "/users")
.expect("GET /users exists");
assert_eq!(route.operation.parameters.len(), 1);
}
#[test]
fn generates_routes_from_components_path_items() {
let yaml = r#"
openapi: 3.1.0
info:
title: Test API
version: "1.0.0"
paths:
/users:
$ref: '#/components/pathItems/UserCollection'
components:
pathItems:
UserCollection:
get:
operationId: listUsers
responses:
'200':
description: ok
content:
application/json:
schema:
type: array
items:
type: string
"#;
let registry = registry_from_yaml(yaml);
let routes = registry.routes();
assert_eq!(routes.len(), 1);
assert_eq!(routes[0].method, "GET");
assert_eq!(routes[0].path, "/users");
}
#[test]
fn generates_routes_from_paths_references() {
let yaml = r#"
openapi: 3.0.3
info:
title: PathRef API
version: "1.0.0"
paths:
/users:
get:
operationId: getUsers
responses:
'200':
description: ok
/all-users:
$ref: '#/paths/~1users'
"#;
let registry = registry_from_yaml(yaml);
let routes = registry.routes();
assert_eq!(routes.len(), 2);
let mut paths: Vec<(&str, &str)> = routes
.iter()
.map(|route| (route.method.as_str(), route.path.as_str()))
.collect();
paths.sort();
assert_eq!(paths, vec![("GET", "/all-users"), ("GET", "/users")]);
}
#[test]
fn generates_routes_with_server_base_path() {
let yaml = r#"
openapi: 3.0.3
info:
title: Base Path API
version: "1.0.0"
servers:
- url: https://api.example.com/api/v1
paths:
/users:
get:
operationId: getUsers
responses:
'200':
description: ok
"#;
let registry = registry_from_yaml(yaml);
let paths: Vec<String> = registry.routes().iter().map(|route| route.path.clone()).collect();
assert!(paths.contains(&"/api/v1/users".to_string()));
assert!(!paths.contains(&"/users".to_string()));
}
#[test]
fn generates_routes_with_relative_server_base_path() {
let yaml = r#"
openapi: 3.0.3
info:
title: Relative Base Path API
version: "1.0.0"
servers:
- url: /api/v2
paths:
/orders:
post:
operationId: createOrder
responses:
'201':
description: created
"#;
let registry = registry_from_yaml(yaml);
let paths: Vec<String> = registry.routes().iter().map(|route| route.path.clone()).collect();
assert!(paths.contains(&"/api/v2/orders".to_string()));
assert!(!paths.contains(&"/orders".to_string()));
}
}