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
|
use zvariant::{Error, LE, MaxDepthExceeded, Value, serialized::Context, to_bytes};
#[macro_use]
mod common {
include!("common.rs");
}
#[test]
fn recursion_limits() {
let ctxt = Context::new_dbus(LE, 0);
// Total container depth exceeds limit (64)
let mut value = Value::from(0u8);
for _ in 0..64 {
value = Value::Value(Box::new(value));
}
assert!(matches!(
to_bytes(ctxt, &value),
Err(Error::MaxDepthExceeded(MaxDepthExceeded::Container))
));
// Array depth exceeds limit (32)
let vec = vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![
vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![
vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![vec![
0u8,
]]]]]]]]]]],
]]]]]]]]]]],
]]]]]]]]]]];
assert!(matches!(
to_bytes(ctxt, &vec),
Err(Error::MaxDepthExceeded(MaxDepthExceeded::Array))
));
// Struct depth exceeds limit (32)
let tuple = ((((((((((((((((((
(((((((((((((((0u8,),),),),),),),),),),),),),),),
),),),),),),),),),),),),),),),),),);
assert!(matches!(
to_bytes(ctxt, &tuple),
Err(Error::MaxDepthExceeded(MaxDepthExceeded::Structure))
));
// total depth exceeds limit (64) with struct, array and variant.
let mut value = Value::from(0u8);
for _ in 0..32 {
value = Value::Value(Box::new(value));
}
let tuple_array =
(
((((((((((((((((vec![vec![vec![vec![vec![vec![vec![vec![vec![
vec![vec![vec![vec![vec![vec![vec![value]]]]]]],
]]]]]]]]],),),),),),),),),),),),),),),),),
);
assert!(matches!(
to_bytes(ctxt, &tuple_array),
Err(Error::MaxDepthExceeded(MaxDepthExceeded::Container))
));
// TODO:
//
// * Test deserializers.
// * Test gvariant format.
}
|