serde-saphyr 0.0.28

YAML (de)serializer for Serde, emphasizing panic-free parsing, fast builds and good error reporting. Supports properties, comments, include
Documentation
#![cfg(all(feature = "serialize", feature = "deserialize"))]
use rstest::rstest;

#[rstest]
#[case::plain_null("null")]
#[case::tilde("~")]
#[case::tagged_null("!!null")]
fn string_from_null_errors(#[case] yaml: &str) {
    let err =
        serde_saphyr::from_str::<String>(yaml).expect_err("expected error for null -> String");
    let msg = format!("{}", err);
    assert!(
        msg.contains("cannot deserialize null into string"),
        "unexpected error message: {msg}"
    );
}

#[test]
fn option_string_from_plain_null_is_none() {
    let yaml = "null";
    let v =
        serde_saphyr::from_str::<Option<String>>(yaml).expect("Option<String> should accept null");
    assert!(v.is_none());
}

#[test]
fn option_string_from_tilde_is_none() {
    let yaml = "~";
    let v = serde_saphyr::from_str::<Option<String>>(yaml).expect("Option<String> should accept ~");
    assert!(v.is_none());
}

#[test]
fn string_from_quoted_null_ok() {
    let yaml = "\"null\""; // quoted "null"
    let s = serde_saphyr::from_str::<String>(yaml).expect("quoted null should be a string");
    assert_eq!(s, "null");
}

#[test]
fn string_from_single_quoted_null_ok() {
    let yaml = "'null'"; // single-quoted 'null'
    let s = serde_saphyr::from_str::<String>(yaml).expect("single-quoted null should be a string");
    assert_eq!(s, "null");
}

#[test]
fn rv_second() {
    #[derive(Debug, Default, PartialEq, serde::Deserialize, serde::Serialize)]
    pub struct TestStruct {
        a: String,
        b: Option<String>,
        c: String,
    }

    let value = r#"---
a: abc
b: null
c: ghi
"#;
    let deserialized = serde_saphyr::from_str::<TestStruct>(value).map_err(|inp| inp.to_string());
    assert_eq!(
        deserialized,
        Ok(TestStruct {
            a: "abc".to_owned(),
            b: None,
            c: "ghi".to_owned()
        })
    );
}