2021-11-23 07:58:54 +01:00
|
|
|
#![cfg(not(feature = "no_index"))]
|
|
|
|
use rhai::{Blob, Engine, EvalAltResult, Scope, INT};
|
2022-12-30 18:07:39 +01:00
|
|
|
use std::iter::FromIterator;
|
2021-11-23 07:58:54 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_blobs() -> Result<(), Box<EvalAltResult>> {
|
2022-12-30 18:07:39 +01:00
|
|
|
let a = Blob::from_iter([1, 2, 3]);
|
2021-11-23 07:58:54 +01:00
|
|
|
|
|
|
|
let engine = Engine::new();
|
2022-03-09 02:25:55 +01:00
|
|
|
let mut scope = Scope::new();
|
|
|
|
scope.push("x", a);
|
2021-11-23 07:58:54 +01:00
|
|
|
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x[1]")?, 2);
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x[0]")?, 1);
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x[-1]")?, 3);
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x[-3]")?, 1);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<INT>(&mut scope.clone(), "x += 4; x[3]")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
4
|
|
|
|
);
|
|
|
|
|
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
{
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x.push(4); x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[1, 2, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x.insert(0, 4); x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[4, 1, 2, 3]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x.insert(999, 4); x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[1, 2, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x.insert(-2, 4); x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[1, 4, 2, 3]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x.insert(-999, 4); x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[4, 1, 2, 3]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<INT>(&mut scope.clone(), "let z = [42]; x[z.len]")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
2
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<INT>(&mut scope.clone(), "let z = [2]; x[z[0]]")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
3
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x += x; x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[1, 2, 3, 1, 2, 3]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x + x")?,
|
2021-11-23 07:58:54 +01:00
|
|
|
[1, 2, 3, 1, 2, 3]
|
|
|
|
);
|
2021-12-07 12:03:04 +01:00
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x += 999; x")?,
|
2021-12-07 12:03:04 +01:00
|
|
|
[1, 2, 3, 0xe7]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2022-03-09 02:25:55 +01:00
|
|
|
engine.eval_with_scope::<Blob>(&mut scope.clone(), "x[2] = 999; x")?,
|
2021-12-07 12:03:04 +01:00
|
|
|
[1, 2, 0xe7]
|
|
|
|
);
|
2021-11-23 07:58:54 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-12-12 09:29:54 +01:00
|
|
|
|
2021-12-12 10:26:15 +01:00
|
|
|
#[cfg(not(feature = "only_i32"))]
|
2021-12-12 09:29:54 +01:00
|
|
|
#[test]
|
|
|
|
fn test_blobs_parse() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
2021-12-15 05:06:17 +01:00
|
|
|
assert_eq!(
|
|
|
|
engine
|
|
|
|
.eval::<INT>("let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2,0)")?,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine
|
|
|
|
.eval::<INT>("let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2,9)")?,
|
|
|
|
0x0908070605040302
|
|
|
|
);
|
|
|
|
|
2021-12-12 09:29:54 +01:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2..=11)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
2021-12-15 05:06:17 +01:00
|
|
|
0x0908070605040302
|
2021-12-12 09:29:54 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2..11)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x0908070605040302
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_be_int(x,2,10)"
|
|
|
|
)?,
|
|
|
|
0x0203040506070809
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_be_int(x,2..12)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x0203040506070809
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-5,99)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x0f0e0d0c0b
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-5,2)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x0c0b
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-99,99)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x0706050403020100
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_be(x, 3, 3, -98765432); parse_be_int(x, 3, 3)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
2021-12-12 10:26:15 +01:00
|
|
|
0xffffff0000000000_u64 as INT
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_be(x, 3..=5, -98765432); parse_be_int(x, 3..6)"
|
|
|
|
)?,
|
|
|
|
0xffffff0000000000_u64 as INT
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_le(x, 3, 3, -98765432); parse_le_int(x, 3, 3)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0x1cf588
|
|
|
|
);
|
|
|
|
|
2021-12-18 10:47:35 +01:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<Blob>(
|
2021-12-18 11:08:48 +01:00
|
|
|
"let x = blob(16, 0); write_be(x, 0, 8, 0x1234567890abcdef); write_be(x, 8, 8, 0xabcdef1234567890); x"
|
2021-12-18 10:47:35 +01:00
|
|
|
)?,
|
|
|
|
vec![0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef, 0xab, 0xcd, 0xef, 0x12, 0x34, 0x56, 0x78, 0x90]
|
|
|
|
);
|
|
|
|
|
2021-12-12 10:26:15 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "only_i32")]
|
|
|
|
#[test]
|
|
|
|
fn test_blobs_parse() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert_eq!(
|
2021-12-15 05:06:17 +01:00
|
|
|
engine
|
|
|
|
.eval::<INT>("let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2,0)")?,
|
2021-12-12 10:26:15 +01:00
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2021-12-15 05:06:17 +01:00
|
|
|
engine
|
|
|
|
.eval::<INT>("let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,2,9)")?,
|
2021-12-12 10:26:15 +01:00
|
|
|
0x05040302
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_be_int(x,2,10)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0x02030405
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-5,99)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0x0e0d0c0b
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-5,2)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0x0c0b
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } parse_le_int(x,-99,99)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0x03020100
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_be(x, 3, 3, -98765432); parse_be_int(x, 3, 3)"
|
|
|
|
)?,
|
|
|
|
0xfa1cf500_u32 as INT
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_be(x, 3..=5, -98765432); parse_be_int(x, 3..6)"
|
2021-12-12 10:26:15 +01:00
|
|
|
)?,
|
|
|
|
0xfa1cf500_u32 as INT
|
2021-12-12 09:29:54 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-12-15 05:06:17 +01:00
|
|
|
"let x = blob(16, 0); for n in 0..16 { x[n] = n; } write_le(x, 3, 3, -98765432); parse_le_int(x, 3, 3)"
|
2021-12-12 09:29:54 +01:00
|
|
|
)?,
|
|
|
|
0x1cf588
|
|
|
|
);
|
|
|
|
|
2021-12-31 12:34:43 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_blobs_write_string() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
2021-12-18 16:03:35 +01:00
|
|
|
assert_eq!(
|
2021-12-31 12:34:43 +01:00
|
|
|
engine.eval::<Blob>(r#"let x = blob(16, 0); write_ascii(x, 0, 14, "hello, world!"); x"#)?,
|
2021-12-18 16:03:35 +01:00
|
|
|
"hello, world!\0\0\0".as_bytes()
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2021-12-31 12:34:43 +01:00
|
|
|
engine.eval::<Blob>(r#"let x = blob(10, 0); write_ascii(x, 3..8, "hello, world!"); x"#)?,
|
2021-12-18 16:03:35 +01:00
|
|
|
"\0\0\0hello\0\0".as_bytes()
|
|
|
|
);
|
|
|
|
|
2021-12-31 12:34:43 +01:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<Blob>(
|
|
|
|
r#"let x = blob(10, 0); write_ascii(x, 0..9, "❤ hello, ❤ world! ❤❤❤"); x"#
|
|
|
|
)?,
|
|
|
|
" hello, \0".as_bytes()
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<Blob>(r#"let x = blob(10, 0); write_utf8(x, 3..9, "❤❤❤❤"); x"#)?,
|
|
|
|
"\0\0\0\u{2764}\u{2764}\0".as_bytes()
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<Blob>(r#"let x = blob(10, 0); write_utf8(x, 3..7, "❤❤❤❤"); x"#)?,
|
|
|
|
vec![0, 0, 0, 226, 157, 164, 226, 0, 0, 0]
|
|
|
|
);
|
|
|
|
|
2021-12-12 09:29:54 +01:00
|
|
|
Ok(())
|
|
|
|
}
|