typed-format-version 0.2.2

Load format.version.{major,minor} from a structured file.
Documentation
// SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
// SPDX-License-Identifier: BSD-2-Clause
//! Some tests for the typed-format-version library.

#![allow(clippy::iter_over_hash_type)]
#![allow(clippy::panic_in_result_fn)]
#![allow(clippy::unwrap_used)]

use std::collections::HashMap;
use std::error::Error;
use std::fs;
use std::path::Path;

use serde::Deserialize;
use serde_json::Value as JsonValue;
use serde_yaml::Value as YamlValue;
use toml::Value as TomlValue;
use tracing::info;
use tracing_test::traced_test;

#[derive(Debug, Deserialize)]
struct CorrectDataJson {
    raw: JsonValue,
    version: super::Version,
}

#[derive(Debug, Deserialize)]
struct CorrectTopJson {
    correct: HashMap<String, CorrectDataJson>,
}

#[derive(Debug, Deserialize)]
struct CorrectDataYaml {
    raw: YamlValue,
    version: super::Version,
}

#[derive(Debug, Deserialize)]
struct CorrectTopYaml {
    correct: HashMap<String, CorrectDataYaml>,
}

#[derive(Debug, Deserialize)]
struct CorrectDataToml {
    raw: TomlValue,
    version: super::Version,
}

#[derive(Debug, Deserialize)]
struct CorrectTopToml {
    correct: HashMap<String, CorrectDataToml>,
}

#[derive(Debug, Deserialize)]
struct WrongTopJson {
    wrong: HashMap<String, JsonValue>,
}

#[derive(Debug, Deserialize)]
struct WrongTopYaml {
    wrong: HashMap<String, YamlValue>,
}

#[derive(Debug, Deserialize)]
struct WrongTopToml {
    wrong: HashMap<String, TomlValue>,
}

#[test]
#[traced_test]
fn test_good() -> Result<(), Box<dyn Error>> {
    let tpath = Path::new("test_data/correct.toml").canonicalize()?;
    let contents_toml = fs::read_to_string(tpath)?;
    let value_toml: TomlValue = toml::from_str(&contents_toml)?;
    let fver = super::get_version_from_value(value_toml.clone())?;
    info!(?fver);
    assert_eq!((fver.major(), fver.minor()), (1, 0));

    let tdata_toml: CorrectTopToml = toml::from_str(&contents_toml)?;
    for (name, tcase) in tdata_toml.correct {
        info!(tag = "toml", name, ?tcase.version);

        let raw = toml::to_string(&tcase.raw)?;
        let ver_str = super::get_version_from_str(&raw, toml::from_str)?;
        info!(tag = "toml", ?ver_str);
        assert_eq!(ver_str, tcase.version);

        let ver_val = super::get_version_from_value(tcase.raw)?;
        info!(tag = "toml", ?ver_val);
        assert_eq!(ver_val, tcase.version);
    }

    let contents = serde_json::to_string(&value_toml)?;
    let tdata_json: CorrectTopJson = serde_json::from_str(&contents)?;
    for (name, tcase) in tdata_json.correct {
        info!(tag = "json", name, ?tcase.version);

        let raw = serde_json::to_string(&tcase.raw)?;
        let ver_str = super::get_version_from_str(&raw, serde_json::from_str)?;
        info!(tag = "json", ?ver_str);
        assert_eq!(ver_str, tcase.version);

        let ver_val = super::get_version_from_value(tcase.raw)?;
        info!(tag = "json", ?ver_val);
        assert_eq!(ver_val, tcase.version);
    }

    let tdata_yaml: CorrectTopYaml = serde_yaml::from_str(&contents)?;
    for (name, tcase) in tdata_yaml.correct {
        info!(tag = "yaml", name, ?tcase.version);

        let raw = serde_yaml::to_string(&tcase.raw)?;
        let ver_str = super::get_version_from_str(&raw, serde_yaml::from_str)?;
        info!(tag = "yaml", ?ver_str);
        assert_eq!(ver_str, tcase.version);

        let ver_val = super::get_version_from_value(tcase.raw)?;
        info!(tag = "yaml", ?ver_val);
        assert_eq!(ver_val, tcase.version);
    }

    Ok(())
}

#[test]
#[traced_test]
fn test_bad() -> Result<(), Box<dyn Error>> {
    let tpath = Path::new("test_data/wrong.toml").canonicalize()?;
    let contents_toml = fs::read_to_string(tpath)?;
    let value_toml: TomlValue = toml::from_str(&contents_toml)?;
    let fver = super::get_version_from_value(value_toml.clone())?;
    assert_eq!((fver.major(), fver.minor()), (1, 0));

    let tdata_toml: WrongTopToml = toml::from_str(&contents_toml)?;
    for (name, tcase) in tdata_toml.wrong {
        info!(tag = "toml", name);

        let raw = toml::to_string(&tcase)?;
        let res_str = super::get_version_from_str(&raw, toml::from_str);
        info!(tag = "toml", ?res_str);
        res_str.unwrap_err();

        let res_val = super::get_version_from_value(tcase);
        info!(tag = "toml", ?res_val);
        res_val.unwrap_err();
    }

    let contents = serde_json::to_string(&value_toml)?;
    let tdata_json: WrongTopJson = serde_json::from_str(&contents)?;
    for (name, tcase) in tdata_json.wrong {
        info!(tag = "json", name);

        let raw = serde_json::to_string(&tcase)?;
        let res_str = super::get_version_from_str(&raw, serde_json::from_str);
        info!(tag = "json", ?res_str);
        res_str.unwrap_err();

        let res_val = super::get_version_from_value(tcase);
        info!(tag = "json", ?res_val);
        res_val.unwrap_err();
    }

    let tdata_yaml: WrongTopYaml = serde_yaml::from_str(&contents)?;
    for (name, tcase) in tdata_yaml.wrong {
        info!(tag = "yaml", name);

        let raw = serde_yaml::to_string(&tcase)?;
        let res_str = super::get_version_from_str(&raw, serde_yaml::from_str);
        info!(tag = "yaml", ?res_str);
        res_str.unwrap_err();

        let res_val = super::get_version_from_value(tcase);
        info!(tag = "yaml", ?res_val);
        res_val.unwrap_err();
    }

    Ok(())
}