Skip to main content

mockforge_bench/conformance/
mod.rs

1//! OpenAPI 3.0.0 Conformance Testing
2//!
3//! Generates k6 scripts that exercise all OpenAPI 3.0.0 features against a target,
4//! then reports per-feature pass/fail results.
5
6pub mod capture_html;
7pub mod custom;
8pub mod executor;
9pub mod generator;
10pub mod har_to_custom;
11pub mod per_endpoint_summary;
12pub mod report;
13pub mod report_html;
14pub mod request_validator;
15pub mod sarif;
16pub mod schema_mutator;
17pub mod schema_validator;
18pub mod self_test;
19pub mod spec;
20pub mod spec_audit;
21pub mod spec_driven;
22
23pub use custom::CustomConformanceConfig;
24pub use executor::{ConformanceProgress, NativeConformanceExecutor};
25pub use generator::{ConformanceConfig, ConformanceGenerator};
26pub use har_to_custom::{generate_custom_yaml_from_har, HarToCustomOptions};
27pub use report::{ConformanceReport, OwaspCoverageEntry};
28pub use sarif::ConformanceSarifReport;
29pub use schema_validator::SchemaValidatorGenerator;
30pub use spec::ConformanceFeature;
31pub use spec_driven::SpecDrivenConformanceGenerator;