blob: a14f4bff7e6afaf03ce31daca13d561f49392500 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
use std::ffi::OsString;
use clap::Parser;
use expect_test::expect;
use tvix_cli::init_io_handle;
macro_rules! test_repl {
($name:ident() {$($send:expr => $expect:expr;)*}) => {
#[test]
fn $name() {
let tokio_runtime = tokio::runtime::Runtime::new().unwrap();
let args = tvix_cli::Args::parse_from(Vec::<OsString>::new());
let mut repl = tvix_cli::Repl::new(init_io_handle(&tokio_runtime, &args), &args);
$({
let result = repl.send($send.into());
$expect.assert_eq(result.output())
;
})*
}
}
}
test_repl!(simple_expr_eval() {
"1" => expect![[r#"
=> 1 :: int
"#]];
});
test_repl!(multiline_input() {
"{ x = 1; " => expect![[""]];
"y = 2; }" => expect![[r#"
=> { x = 1; y = 2; } :: set
"#]];
});
test_repl!(bind_literal() {
"x = 1" => expect![[""]];
"x" => expect![[r#"
=> 1 :: int
"#]];
});
test_repl!(bind_lazy() {
"x = { z = 1; }" => expect![[""]];
"x" => expect![[r#"
=> { z = 1; } :: set
"#]];
"x.z" => expect![[r#"
=> 1 :: int
"#]];
"x.z" => expect![[r#"
=> 1 :: int
"#]];
});
test_repl!(deep_print() {
"builtins.map (x: x + 1) [ 1 2 3 ]" => expect![[r#"
=> [ <CODE> <CODE> <CODE> ] :: list
"#]];
":p builtins.map (x: x + 1) [ 1 2 3 ]" => expect![[r#"
=> [ 2 3 4 ] :: list
"#]];
});
test_repl!(explain() {
":d { x = 1; y = [ 2 3 4 ]; }" => expect![[r#"
=> a 2-item attribute set
"#]];
});
|