PkmnLib_rs/tests/main.rs

53 lines
1.4 KiB
Rust
Raw Normal View History

#![feature(custom_test_frameworks)]
#![feature(once_cell)]
#![test_runner(datatest::runner)]
use std::fs::File;
use std::io::Read;
use std::path::Path;
2022-08-20 10:22:12 +00:00
use std::sync::Arc;
2022-07-18 08:16:47 +00:00
use conquer_once::OnceCell;
use pkmn_lib::dynamic_data::DynamicLibrary;
use crate::common::{library_loader, TestCase};
pub mod common;
static LIBRARY: OnceCell<Arc<DynamicLibrary>> = OnceCell::uninit();
2022-07-18 08:16:47 +00:00
fn get_library() -> Arc<DynamicLibrary> {
LIBRARY
.get_or_init(|| {
let start_time = chrono::Utc::now();
let lib = library_loader::load_library();
let end_time = chrono::Utc::now();
println!("Built library in {} ms", (end_time - start_time).num_milliseconds());
Arc::new(lib)
})
.clone()
2022-07-18 08:16:47 +00:00
}
#[test]
#[cfg_attr(miri, ignore)]
fn validate_library_load() {
2022-07-18 08:16:47 +00:00
let start_time = chrono::Utc::now();
2022-07-18 08:49:58 +00:00
library_loader::load_library();
2022-07-18 08:16:47 +00:00
let end_time = chrono::Utc::now();
println!("Built library in {} ms", (end_time - start_time).num_milliseconds());
}
#[datatest::files("tests/test_cases", {
input in r"^(.*)\.yaml"
})]
2022-06-17 18:38:00 +00:00
#[cfg_attr(miri, ignore)]
fn integration_tests(input: &Path) {
let mut str: String = "".to_string();
let mut file = File::open(input).unwrap();
file.read_to_string(&mut str).unwrap();
let test_case = serde_yaml::from_str::<TestCase>(&str).unwrap();
println!("\tRunning integration test {}", test_case.name);
2022-07-18 08:16:47 +00:00
test_case.run_test(get_library());
}