#serialization #serde #unit-testing #dev-dependencies

dev serde_test

Token De/Serializer for testing De/Serialize implementations

229 releases (stable)

1.0.176 Jul 26, 2023
1.0.164 Jun 8, 2023
1.0.159 Mar 28, 2023
1.0.152 Dec 26, 2022
0.8.0 Jul 28, 2016

#14 in Testing

Download history 23520/week @ 2023-12-23 43470/week @ 2023-12-30 56494/week @ 2024-01-06 59793/week @ 2024-01-13 65360/week @ 2024-01-20 67990/week @ 2024-01-27 66281/week @ 2024-02-03 70669/week @ 2024-02-10 74913/week @ 2024-02-17 82894/week @ 2024-02-24 80794/week @ 2024-03-02 77623/week @ 2024-03-09 78481/week @ 2024-03-16 83298/week @ 2024-03-23 84066/week @ 2024-03-30 51938/week @ 2024-04-06

306,285 downloads per month
Used in 473 crates (421 directly)

MIT/Apache

90KB
2K SLoC

serde_test   Build Status Latest Version

This crate provides a convenient concise way to write unit tests for implementations of Serialize and Deserialize.

The Serialize impl for a value can be characterized by the sequence of Serializer calls that are made in the course of serializing the value, so serde_test provides a Token abstraction which corresponds roughly to Serializer method calls. There is an assert_ser_tokens function to test that a value serializes to a particular sequence of method calls, an assert_de_tokens function to test that a value can be deserialized from a particular sequence of method calls, and an assert_tokens function to test both directions. There are also functions to test expected failure conditions.

Here is an example from the linked-hash-map crate.

use linked_hash_map::LinkedHashMap;
use serde_test::{assert_tokens, Token};

#[test]
fn test_ser_de_empty() {
    let map = LinkedHashMap::<char, u32>::new();

    assert_tokens(
        &map,
        &[
            Token::Map { len: Some(0) },
            Token::MapEnd,
        ],
    );
}

#[test]
fn test_ser_de() {
    let mut map = LinkedHashMap::new();
    map.insert('b', 20);
    map.insert('a', 10);
    map.insert('c', 30);

    assert_tokens(
        &map,
        &[
            Token::Map { len: Some(3) },
            Token::Char('b'),
            Token::I32(20),
            Token::Char('a'),
            Token::I32(10),
            Token::Char('c'),
            Token::I32(30),
            Token::MapEnd,
        ],
    );
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate 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