dust/tests/variables.rs

50 lines
1.1 KiB
Rust
Raw Normal View History

2024-03-07 04:21:07 +00:00
use dust_lang::{
2024-03-09 17:58:29 +00:00
abstract_tree::{Block, Expression, Identifier, Statement, Type},
2024-03-07 04:21:07 +00:00
error::{Error, TypeCheckError, ValidationError},
*,
};
2024-03-06 23:15:25 +00:00
#[test]
fn set_and_get_variable() {
2024-03-08 17:24:11 +00:00
assert_eq!(
interpret("foobar = true; foobar"),
Ok(Some(Value::boolean(true)))
);
2024-03-06 23:15:25 +00:00
}
2024-03-07 04:21:07 +00:00
#[test]
fn set_variable_with_type() {
assert_eq!(
interpret("foobar: bool = true; foobar"),
2024-03-08 17:24:11 +00:00
Ok(Some(Value::boolean(true)))
2024-03-07 04:21:07 +00:00
);
}
#[test]
fn set_variable_with_type_error() {
assert_eq!(
interpret("foobar: str = true"),
Err(vec![Error::Validation {
error: ValidationError::TypeCheck(TypeCheckError {
actual: Type::Boolean,
expected: Type::String
}),
span: (0..18).into()
}])
);
}
2024-03-09 00:05:17 +00:00
#[test]
fn function_variable() {
assert_eq!(
2024-03-11 19:17:01 +00:00
interpret("foobar = (x: int): int { x }; foobar"),
2024-03-09 00:05:17 +00:00
Ok(Some(Value::function(
vec![(Identifier::new("x"), Type::Integer)],
Type::Integer,
2024-03-09 17:58:29 +00:00
Block::new(vec![Statement::Expression(Expression::Identifier(
Identifier::new("x")
))])
2024-03-09 00:05:17 +00:00
)))
);
}