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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
// SPDX-License-Identifier: Apache-2.0
//! This test validates that we don't get stack overflows.
//!
//! If container types cause recursion, then a long list of prefixes which
//! indicate nested container types could cause the stack to overflow. We
//! test each of these types here to ensure there is no stack overflow.
use ciborium::{
de::{from_reader, from_reader_with_recursion_limit, Error},
value::Value,
};
#[test]
fn array() {
let bytes = [0x9f; 128 * 1024];
match from_reader::<Value, _>(&bytes[..]).unwrap_err() {
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error: {:?}", e),
}
}
#[test]
fn map() {
let bytes = [0xbf; 128 * 1024];
match from_reader::<Value, _>(&bytes[..]).unwrap_err() {
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error: {:?}", e),
}
}
#[test]
fn bytes() {
let bytes = [0x5f; 128 * 1024];
match from_reader::<Value, _>(&bytes[..]).unwrap_err() {
Error::Io(..) => (),
e => panic!("incorrect error: {:?}", e),
}
}
#[test]
fn text() {
let bytes = [0x7f; 128 * 1024];
match from_reader::<Value, _>(&bytes[..]).unwrap_err() {
Error::Io(..) => (),
e => panic!("incorrect error: {:?}", e),
}
}
#[test]
fn array_limit() {
let bytes = [0x9f; 128 * 1024];
for limit in 16..256 {
match from_reader_with_recursion_limit::<Value, _>(&bytes[..], limit).unwrap_err() {
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
// Data that is nested beyond the limit should fail with `RecursionLimitExceeded`
match from_reader_with_recursion_limit::<Value, _>(&bytes[..limit + 1], limit).unwrap_err()
{
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
// Data that is nested within the limit fails with a different error.
match from_reader_with_recursion_limit::<Value, _>(&bytes[..limit], limit).unwrap_err() {
Error::Io(..) => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
}
}
#[test]
fn map_limit() {
let bytes = [0xbf; 128 * 1024];
for limit in 16..256 {
match from_reader_with_recursion_limit::<Value, _>(&bytes[..], limit).unwrap_err() {
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
// Data that is nested beyond the limit should fail with `RecursionLimitExceeded`
match from_reader_with_recursion_limit::<Value, _>(&bytes[..limit + 1], limit).unwrap_err()
{
Error::RecursionLimitExceeded => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
// Data that is nested within the limit fails with a different error.
match from_reader_with_recursion_limit::<Value, _>(&bytes[..limit], limit).unwrap_err() {
Error::Io(..) => (),
e => panic!("incorrect error with limit {}: {:?}", limit, e),
}
}
}
|