dust/tests/variables.rs

56 lines
1.4 KiB
Rust
Raw Normal View History

2024-03-07 04:21:07 +00:00
use dust_lang::{
2024-03-17 11:31:45 +00:00
abstract_tree::{AbstractTree, Block, Expression, Identifier, Statement, Type},
2024-03-17 04:49:01 +00:00
error::{Error, TypeConflict, ValidationError},
2024-03-07 04:21:07 +00:00
*,
};
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 {
2024-03-17 11:31:45 +00:00
error: ValidationError::TypeCheck {
conflict: TypeConflict {
actual: Type::Boolean,
expected: Type::String
},
2024-03-17 17:36:31 +00:00
actual_position: (14, 18).into(),
expected_position: (8, 12).into()
2024-03-17 11:31:45 +00:00
},
2024-03-17 12:30:46 +00:00
position: (0, 18).into()
2024-03-07 04:21:07 +00:00
}])
);
}
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(
2024-03-17 17:36:31 +00:00
vec![(Identifier::new("x"), Type::Integer.with_position((13, 16)))],
Type::Integer.with_position((19, 23)),
2024-03-17 11:31:45 +00:00
Block::new(vec![Statement::Expression(Expression::Identifier(
Identifier::new("x")
))
2024-03-17 17:36:31 +00:00
.with_position((25, 26))])
.with_position((9, 28))
2024-03-09 00:05:17 +00:00
)))
);
}