File: no_std.rs

package info (click to toggle)
rust-ciborium 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: makefile: 2
file content (39 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-License-Identifier: Apache-2.0

#![cfg(all(feature = "serde", not(feature = "std")))]
#![no_std]

extern crate alloc;

use alloc::vec::Vec;

use ciborium::{de::from_reader, ser::into_writer};

#[test]
fn decode() {
    assert_eq!(from_reader::<u8, &[u8]>(&[7u8][..]).unwrap(), 7);
}

#[test]
fn eof() {
    from_reader::<u8, &[u8]>(&[]).unwrap_err();
}

#[test]
fn encode_slice() {
    let mut buffer = [0u8; 1];
    into_writer(&3u8, &mut buffer[..]).unwrap();
    assert_eq!(buffer[0], 3);
}

#[test]
fn encode_vec() {
    let mut buffer = Vec::with_capacity(1);
    into_writer(&3u8, &mut buffer).unwrap();
    assert_eq!(buffer[0], 3);
}

#[test]
fn oos() {
    into_writer(&3u8, &mut [][..]).unwrap_err();
}