rhai/tests/call_fn.rs

62 lines
1.4 KiB
Rust
Raw Normal View History

#![cfg(not(feature = "no_function"))]
use rhai::{Engine, EvalAltResult, ParseErrorType, Scope, INT};
#[test]
fn test_fn() -> Result<(), EvalAltResult> {
2020-03-27 16:47:23 +01:00
let engine = Engine::new();
// Expect duplicated parameters error
match engine
.compile("fn hello(x, x) { x }")
.expect_err("should be error")
.error_type()
{
ParseErrorType::FnDuplicatedParam(f, p) if f == "hello" && p == "x" => (),
_ => assert!(false, "wrong error"),
}
Ok(())
}
2020-03-04 15:00:01 +01:00
#[test]
fn test_call_fn() -> Result<(), EvalAltResult> {
2020-03-04 15:00:01 +01:00
let mut engine = Engine::new();
let mut scope = Scope::new();
scope.push("foo", 42 as INT);
2020-03-04 15:00:01 +01:00
let ast = engine.compile(
r"
fn hello(x, y) {
x + y
}
fn hello(x) {
2020-04-05 06:57:20 +02:00
x = x * foo;
foo = 1;
x
}
fn hello() {
2020-04-05 06:57:20 +02:00
41 + foo
}
",
)?;
2020-03-04 15:00:01 +01:00
let r: i64 = engine.call_fn(&mut scope, &ast, "hello", (42 as INT, 123 as INT))?;
assert_eq!(r, 165);
2020-03-04 15:00:01 +01:00
let r: i64 = engine.call_fn1(&mut scope, &ast, "hello", 123 as INT)?;
assert_eq!(r, 5166);
2020-03-04 15:00:01 +01:00
let r: i64 = engine.call_fn0(&mut scope, &ast, "hello")?;
2020-04-05 06:57:20 +02:00
assert_eq!(r, 42);
assert_eq!(
scope
.get_value::<INT>("foo")
.expect("variable foo should exist"),
1
);
2020-03-04 15:00:01 +01:00
Ok(())
}