1
0
dust/dust-lang/tests/native_functions.rs

73 lines
1.9 KiB
Rust
Raw Normal View History

2024-10-30 03:08:25 -04:00
use dust_lang::*;
#[test]
fn panic() {
let source = "panic(\"Goodbye world!\", 42)";
assert_eq!(
2024-11-06 15:40:37 -05:00
compile(source),
2024-10-30 03:08:25 -04:00
Ok(Chunk::with_data(
None,
2024-11-16 05:16:51 -05:00
FunctionType {
type_parameters: None,
value_parameters: None,
return_type: Type::None,
2024-11-16 05:16:51 -05:00
},
2024-10-30 03:08:25 -04:00
vec![
(Instruction::load_constant(0, 0, false), Span(6, 22)),
(Instruction::load_constant(1, 1, false), Span(24, 26)),
2024-11-27 21:13:35 -05:00
(
Instruction::call_native(2, NativeFunction::Panic, 2),
2024-10-30 03:08:25 -04:00
Span(0, 27)
),
(Instruction::r#return(false), Span(27, 27))
2024-10-30 03:08:25 -04:00
],
2024-11-10 19:28:21 -05:00
vec![
2024-11-16 01:29:21 -05:00
ConcreteValue::string("Goodbye world!"),
ConcreteValue::Integer(42)
2024-11-10 19:28:21 -05:00
],
2024-10-30 03:08:25 -04:00
vec![]
)),
);
assert_eq!(
run(source),
Err(DustError::Runtime {
2024-10-30 09:32:46 -04:00
error: VmError::NativeFunction(NativeFunctionError::Panic {
2024-10-30 03:08:25 -04:00
message: Some("Goodbye world! 42".to_string()),
position: Span(0, 27)
2024-10-30 09:32:46 -04:00
}),
2024-10-30 03:08:25 -04:00
source
})
)
}
#[test]
fn to_string() {
let source = "to_string(42)";
assert_eq!(
2024-11-06 15:40:37 -05:00
compile(source),
Ok(Chunk::with_data(
None,
2024-11-16 05:16:51 -05:00
FunctionType {
type_parameters: None,
value_parameters: None,
return_type: Type::String,
2024-11-16 05:16:51 -05:00
},
vec![
(Instruction::load_constant(0, 0, false), Span(10, 12)),
2024-11-27 21:13:35 -05:00
(
Instruction::call_native(1, NativeFunction::ToString, 1),
Span(0, 13)
),
(Instruction::r#return(true), Span(13, 13))
],
2024-11-16 01:29:21 -05:00
vec![ConcreteValue::Integer(42)],
vec![]
)),
);
assert_eq!(run(source), Ok(Some(ConcreteValue::string("42"))))
}