use super::{MJImage, NAME};
use crate::json_attrs_deserializer;
use crate::json_attrs_serializer;
use serde::de::{Error, MapAccess};
use serde::ser::SerializeMap;
use std::fmt;
json_attrs_serializer!(MJImage, NAME);
json_attrs_deserializer!(MJImage, MJImageVisitor, NAME);
#[cfg(test)]
mod tests {
use crate::mj_image::MJImage;
use std::collections::HashMap;
#[test]
fn serialize() {
let mut attrs = HashMap::new();
attrs.insert("href".to_string(), "https://jolimail.io".to_string());
let elt = MJImage { attributes: attrs };
assert_eq!(
serde_json::to_string(&elt).unwrap(),
r#"{"type":"mj-image","attributes":{"href":"https://jolimail.io"}}"#
);
}
#[test]
fn deserialize() {
let json = r#"{"type":"mj-image","attributes":{"href":"https://jolimail.io"}}"#;
let res: MJImage = serde_json::from_str(&json).unwrap();
assert_eq!(res.attributes.get("href").unwrap(), "https://jolimail.io");
}
}