snarkvm_synthesizer_process/stack/authorization/
serialize.rsuse super::*;
impl<N: Network> Serialize for Authorization<N> {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
match serializer.is_human_readable() {
true => {
let mut authorization = serializer.serialize_struct("Authorization", 2)?;
authorization.serialize_field("requests", &self.requests.read().clone())?;
authorization.serialize_field(
"transitions",
&self.transitions.read().values().collect::<Vec<&Transition<N>>>(),
)?;
authorization.end()
}
false => ToBytesSerializer::serialize_with_size_encoding(self, serializer),
}
}
}
impl<'de, N: Network> Deserialize<'de> for Authorization<N> {
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
match deserializer.is_human_readable() {
true => {
let mut authorization = serde_json::Value::deserialize(deserializer)?;
let requests: Vec<_> = DeserializeExt::take_from_value::<D>(&mut authorization, "requests")?;
let transitions: Vec<_> = DeserializeExt::take_from_value::<D>(&mut authorization, "transitions")?;
Self::try_from((requests, transitions)).map_err(de::Error::custom)
}
false => FromBytesDeserializer::<Self>::deserialize_with_size_encoding(deserializer, "authorization"),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_serde_json() -> Result<()> {
let rng = &mut TestRng::default();
let expected = crate::stack::authorization::test_helpers::sample_authorization(rng);
let expected_string = &expected.to_string();
let candidate_string = serde_json::to_string(&expected)?;
assert_eq!(expected, serde_json::from_str(&candidate_string)?);
assert_eq!(expected, Authorization::from_str(expected_string)?);
assert_eq!(expected, serde_json::from_str(&candidate_string)?);
Ok(())
}
#[test]
fn test_bincode() -> Result<()> {
let rng = &mut TestRng::default();
let expected = crate::stack::authorization::test_helpers::sample_authorization(rng);
let expected_bytes = expected.to_bytes_le()?;
let expected_bytes_with_size_encoding = bincode::serialize(&expected)?;
assert_eq!(&expected_bytes[..], &expected_bytes_with_size_encoding[8..]);
assert_eq!(expected, Authorization::read_le(&expected_bytes[..])?);
assert_eq!(expected, bincode::deserialize(&expected_bytes_with_size_encoding[..])?);
Ok(())
}
}