leo/compiler/tests/statements/mod.rs

75 lines
2.1 KiB
Rust
Raw Normal View History

2021-02-02 07:26:56 +03:00
// Copyright (C) 2019-2021 Aleo Systems Inc.
2020-08-18 13:50:26 +03:00
// This file is part of the Leo library.
// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
2020-12-17 00:02:31 +03:00
use crate::{assert_satisfied, expect_asg_error, generate_main_input, parse_program};
2020-10-31 03:31:09 +03:00
use leo_ast::InputValue;
2020-06-02 04:35:43 +03:00
pub mod conditional;
// Ternary if {bool}? {expression} : {expression};
#[test]
fn test_ternary_basic() {
2020-12-04 23:48:43 +03:00
let program_string = include_str!("ternary_basic.leo");
let mut program = parse_program(program_string).unwrap();
2020-07-31 03:11:58 +03:00
2020-08-01 06:59:50 +03:00
let main_input = generate_main_input(vec![
2020-07-31 03:11:58 +03:00
("a", Some(InputValue::Boolean(true))),
("b", Some(InputValue::Boolean(true))),
]);
2020-08-01 06:59:50 +03:00
program.set_main_input(main_input);
2020-07-31 03:11:58 +03:00
assert_satisfied(program);
2020-12-04 23:48:43 +03:00
let mut program = parse_program(program_string).unwrap();
2020-08-01 06:59:50 +03:00
let main_input = generate_main_input(vec![
2020-07-31 03:11:58 +03:00
("a", Some(InputValue::Boolean(false))),
("b", Some(InputValue::Boolean(false))),
]);
2020-08-01 06:59:50 +03:00
program.set_main_input(main_input);
2020-07-31 03:11:58 +03:00
assert_satisfied(program);
}
// Iteration for i {start}..{stop} { statements }
#[test]
fn test_iteration_basic() {
2020-12-04 23:48:43 +03:00
let program_string = include_str!("iteration_basic.leo");
let program = parse_program(program_string).unwrap();
2020-07-31 03:11:58 +03:00
assert_satisfied(program);
}
2020-11-12 21:28:24 +03:00
#[test]
fn test_num_returns_fail() {
2020-12-04 23:48:43 +03:00
let program_string = include_str!("num_returns_fail.leo");
let error = parse_program(program_string).err().unwrap();
2020-11-12 21:28:24 +03:00
2020-12-17 00:02:31 +03:00
expect_asg_error(error);
2020-11-12 21:28:24 +03:00
}
2020-12-11 22:21:46 +03:00
#[test]
fn test_block() {
let bytes = include_str!("block.leo");
let program = parse_program(bytes).unwrap();
assert_satisfied(program);
}