Fix ignored unit tests in interpret.rs

This commit is contained in:
Alex Bethel 2021-06-15 11:46:01 -05:00
parent 8aa6fc502a
commit 9965d97713

View file

@ -558,48 +558,58 @@ mod tests {
} }
#[test] #[test]
#[ignore = "doesn't make sense anymore due to separation of statements & expressions"]
fn variable_decl_and_assignment() { fn variable_decl_and_assignment() {
// Functions have no return values, so use some
// pass-by-reference hacks to detect the correct
// functionality.
let mut env = ExecEnv::new();
// Declaring and reading from a variable. // Declaring and reading from a variable.
eval(&mut env, "var foo = 32; var bar = foo + 1;").unwrap();
assert_eq!( assert_eq!(
eval(&mut ExecEnv::new(), "var foo = 32; foo + 1").unwrap(), env.get_var(&Iden {
iden: "bar".to_owned(),
span: 1..1,
})
.unwrap(),
Value::Int(33) Value::Int(33)
); );
// It should be possible to overwrite variables as well. // Assigning an existing variable.
eval(&mut env, "foo = \"hi\";").unwrap();
assert_eq!( assert_eq!(
eval(&mut ExecEnv::new(), "var bar = 10; bar = 20; bar").unwrap(), env.get_var(&Iden {
Value::Int(20) iden: "foo".to_owned(),
span: 1..1,
})
.unwrap(),
Value::Str("hi".to_owned())
); );
// But variable assignment should be illegal when the variable // But variable assignment should be illegal when the variable
// hasn't been declared in advance. // hasn't been declared in advance.
eval(&mut ExecEnv::new(), "baz = 10;").unwrap_err(); eval(&mut env, "invalid = bar + 1;").unwrap_err();
} }
#[test] #[test]
#[ignore = "doesn't make sense anymore due to separation of statements & expressions"]
fn variable_persistence() {
// Global variables should persist between invocations of
// ExecEnv::eval_items().
let mut env = ExecEnv::new();
eval(&mut env, "var foo = 32;").unwrap();
assert_eq!(eval(&mut env, "foo").unwrap(), Value::Int(32));
}
#[test]
#[ignore = "doesn't make sense anymore due to separation of statements & expressions"]
fn scope_visibility_rules() { fn scope_visibility_rules() {
// Declaration and assignment of variables declared in an `if` // Declaration and assignment of variables declared in an `if`
// statement should have no effect on those declared outside // statement should have no effect on those declared outside
// of it. // of it.
let mut env = ExecEnv::new();
eval(
&mut env,
"var foo = 1; foo = 2; if (true) { var foo = 3; foo = 4; }",
)
.unwrap();
assert_eq!( assert_eq!(
eval( env.get_var(&Iden {
&mut ExecEnv::new(), iden: "foo".to_owned(),
"var foo = 1; if (true) { var foo = 2; foo = 3; } foo" span: 1..1,
) })
.unwrap(), .unwrap(),
Value::Int(1) Value::Int(2)
); );
} }
} }