progenitor/progenitor-impl/tests/test_output.rs

119 lines
3.0 KiB
Rust
Raw Normal View History

// Copyright 2022 Oxide Computer Company
2023-01-14 16:58:57 +00:00
use std::{
fs::File,
path::{Path, PathBuf},
};
use progenitor_impl::{
2023-02-01 05:28:12 +00:00
GenerationSettings, Generator, InterfaceStyle, TagStyle, TypeImpl,
TypePatch,
};
2023-01-14 16:58:57 +00:00
use openapiv3::OpenAPI;
fn load_api<P>(p: P) -> OpenAPI
where
P: AsRef<Path> + std::clone::Clone + std::fmt::Debug,
{
let mut f = File::open(p.clone()).unwrap();
match serde_json::from_reader(f) {
Ok(json_value) => json_value,
_ => {
2023-02-01 05:28:12 +00:00
f = File::open(p).unwrap();
2023-01-14 16:58:57 +00:00
serde_yaml::from_reader(f).unwrap()
}
}
}
#[track_caller]
fn verify_apis(openapi_file: &str) {
let mut in_path = PathBuf::from("../sample_openapi");
2023-01-14 16:58:57 +00:00
in_path.push(openapi_file);
let openapi_stem = openapi_file.split('.').next().unwrap();
2023-01-14 16:58:57 +00:00
let spec = load_api(in_path);
let mut generator = Generator::default();
let output = generator.generate_text_normalize_comments(&spec).unwrap();
expectorate::assert_contents(
2023-01-14 16:58:57 +00:00
format!("tests/output/{}-positional.out", openapi_stem),
&output,
);
let mut generator = Generator::new(
GenerationSettings::default()
.with_interface(InterfaceStyle::Builder)
.with_tag(TagStyle::Merged)
.with_derive("JsonSchema")
.with_patch("Name", TypePatch::default().with_derive("Hash"))
.with_conversion(
schemars::schema::SchemaObject {
instance_type: Some(
schemars::schema::InstanceType::Integer.into(),
),
format: Some("int32".to_string()),
..Default::default()
},
"usize",
2023-02-01 05:28:12 +00:00
[TypeImpl::Display].into_iter(),
),
);
let output = generator.generate_text_normalize_comments(&spec).unwrap();
expectorate::assert_contents(
2023-01-14 16:58:57 +00:00
format!("tests/output/{}-builder.out", openapi_stem),
&output,
);
let mut generator = Generator::new(
GenerationSettings::default()
.with_interface(InterfaceStyle::Builder)
.with_tag(TagStyle::Separate),
);
let output = generator.generate_text_normalize_comments(&spec).unwrap();
2023-01-04 19:14:37 +00:00
println!("{output}");
expectorate::assert_contents(
2023-01-14 16:58:57 +00:00
format!("tests/output/{}-builder-tagged.out", openapi_stem),
&output,
);
}
#[test]
fn test_keeper() {
2023-01-14 16:58:57 +00:00
verify_apis("keeper.json");
}
#[test]
fn test_buildomat() {
2023-01-14 16:58:57 +00:00
verify_apis("buildomat.json");
}
#[test]
fn test_nexus() {
2023-01-14 16:58:57 +00:00
verify_apis("nexus.json");
}
#[test]
fn test_propolis_server() {
2023-01-14 16:58:57 +00:00
verify_apis("propolis-server.json");
}
2022-12-02 06:50:50 +00:00
#[test]
fn test_param_override() {
2023-01-14 16:58:57 +00:00
verify_apis("param-overrides.json");
}
#[test]
fn test_yaml() {
verify_apis("param-overrides.yaml");
2022-12-02 06:50:50 +00:00
}
// TODO this file is full of inconsistencies and incorrectly specified types.
// It's an interesting test to consider whether we try to do our best to
// interpret the intent or just fail.
#[ignore]
#[test]
fn test_github() {
2023-01-14 16:58:57 +00:00
verify_apis("api.github.com.json");
}