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 custom;
7pub mod executor;
8pub mod generator;
9pub mod har_to_custom;
10pub mod report;
11pub mod report_html;
12pub mod request_validator;
13pub mod sarif;
14pub mod schema_mutator;
15pub mod schema_validator;
16pub mod self_test;
17pub mod spec;
18pub mod spec_audit;
19pub mod spec_driven;
20
21pub use custom::CustomConformanceConfig;
22pub use executor::{ConformanceProgress, NativeConformanceExecutor};
23pub use generator::{ConformanceConfig, ConformanceGenerator};
24pub use har_to_custom::{generate_custom_yaml_from_har, HarToCustomOptions};
25pub use report::{ConformanceReport, OwaspCoverageEntry};
26pub use sarif::ConformanceSarifReport;
27pub use schema_validator::SchemaValidatorGenerator;
28pub use spec::ConformanceFeature;
29pub use spec_driven::SpecDrivenConformanceGenerator;