#serialization #deserialize #serde #unit-testing #test

no-std serde_assert

Testing library for serde Serialize and Deserialize implementations

8 releases (breaking)

0.7.1 Dec 26, 2023
0.7.0 Dec 23, 2023
0.6.0 Nov 19, 2023
0.5.0 May 17, 2023
0.1.0 Jan 14, 2023

#186 in Encoding

Download history 1168/week @ 2024-01-03 1238/week @ 2024-01-10 2139/week @ 2024-01-17 1928/week @ 2024-01-24 2109/week @ 2024-01-31 1889/week @ 2024-02-07 1841/week @ 2024-02-14 1746/week @ 2024-02-21 1583/week @ 2024-02-28 1345/week @ 2024-03-06 1593/week @ 2024-03-13 1599/week @ 2024-03-20 1147/week @ 2024-03-27 1553/week @ 2024-04-03 1604/week @ 2024-04-10 4276/week @ 2024-04-17

8,858 downloads per month
Used in 3 crates

MIT/Apache

285KB
7K SLoC

serde_assert

GitHub Workflow Status codecov.io crates.io docs.rs MSRV License

Testing library for serde Serialize and Deserialize implementations.

This library provides a Serializer and Deserializer to be used in writing unit tests to assert the behavior of manual Serialize and Deserialize implementations, respectively. The implementation behavior can be verified using a sequence of Tokens representing a generic serialized state.

Usage

The examples below use the claims crate for convenient assertions.

Testing Serialization

The Serializer returns a sequence of Tokens representing the serialization of a value. The returned Tokens can be checked to be equal to an expected value.

use claims::assert_ok_eq;
use serde::Serialize;
use serde_assert::{
    Serializer,
    Token,
};

let serializer = Serializer::builder().build();

assert_ok_eq!(true.serialize(&serializer), [Token::Bool(true)]);

Testing Deserialization

A Deserializer is constructed by providing a sequence of Tokens to be deserialized into a value.

use claims::assert_ok_eq;
use serde::Deserialize;
use serde_assert::{
    Deserializer,
    Token,
};

let mut deserializer = Deserializer::builder([Token::Bool(true)]).build();

assert_ok_eq!(bool::deserialize(&mut deserializer), true);

Comparison with serde_test

This crate provides more flexibility than serde_test at the expense of more verbosity. While serde_test provides a small API of simple assertion functions, this crate will require you to call serialize() and deserialize() and assert yourself that the results are as expected.

While some users may find that the smaller API of serde_test is sufficient for their use-case, others will find that the flexibility of this crate makes testing more complicated Serailize and Deserialize implementations easier. Among other things, this crate's API provides these advantages:

  • Direct access to the Serializer and Deserializer, allowing use of all parts of the serde Serializer and Deserializer APIs, such as deserializing types that implement DeserializeSeed.
  • Customization of Serializers and Deserializers, allowing configuration of things like human-readability, whether the Deserializer should interpret sequences of Tokens as self-describing, and zero-copy deserialization.
  • Sophisticated comparison of serialized Token sequences, including allowing testing of types whose serialized form can include items in arbitrary order, such as when serializing a HashSet.

Minimum Supported Rust Version

This crate is guaranteed to compile on stable rustc 1.56.0 and up.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~110–355KB