[go: up one dir, main page]

rmp 0.8.9

Pure Rust MessagePack serialization implementation
Documentation
use crate::msgpack::Marker;
use crate::msgpack::encode::*;

#[test]
fn pass_pack_len_fix() {
    let mut buf = [0x00];

    assert_eq!(Marker::FixMap(15), write_map_len(&mut &mut buf[..], 15).unwrap());

    assert_eq!([0x8f], buf);
}

#[test]
fn pass_pack_len_u16() {
    let mut buf = [0x00, 0x00, 0x00];

    assert_eq!(Marker::Map16, write_map_len(&mut &mut buf[..], 65535).unwrap());

    assert_eq!([0xde, 0xff, 0xff], buf);
}

#[test]
fn pass_pack_len_u32() {
    let mut buf = [0x00, 0x00, 0x00, 0x00, 0x00];

    assert_eq!(Marker::Map32, write_map_len(&mut &mut buf[..], 4294967295).unwrap());

    assert_eq!([0xdf, 0xff, 0xff, 0xff, 0xff], buf);
}