leo/compiler/tests/address/mod.rs

140 lines
4.0 KiB
Rust
Raw Normal View History

2020-08-18 13:50:26 +03:00
// Copyright (C) 2019-2020 Aleo Systems Inc.
// 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-08-19 13:11:30 +03:00
use crate::{assert_satisfied, expect_compiler_error, generate_main_input, parse_program};
2020-10-31 03:31:09 +03:00
use leo_ast::InputValue;
2020-07-06 14:59:06 +03:00
static TEST_ADDRESS_1: &str = "aleo1qnr4dkkvkgfqph0vzc3y6z2eu975wnpz2925ntjccd5cfqxtyu8sta57j8";
static TEST_ADDRESS_2: &str = "aleo18qgam03qe483tdrcc3fkqwpp38ehff4a2xma6lu7hams6lfpgcpq3dq05r";
2020-07-06 14:59:06 +03:00
#[test]
fn test_valid() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("valid.leo");
let program = parse_program(program_string).unwrap();
2020-07-06 14:59:06 +03:00
2020-07-30 10:15:14 +03:00
assert_satisfied(program)
2020-07-06 14:59:06 +03:00
}
#[test]
fn test_invalid_prefix() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("invalid_prefix.leo");
let syntax_error = parse_program(program_string).is_err();
assert!(syntax_error);
}
2020-07-06 14:59:06 +03:00
#[test]
fn test_invalid_length() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("invalid_length.leo");
let syntax_error = parse_program(program_string).is_err();
assert!(syntax_error);
2020-07-06 14:59:06 +03:00
}
2020-08-03 22:01:09 +03:00
#[test]
fn test_empty() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("empty.leo");
let syntax_error = parse_program(program_string).is_err();
2020-08-03 22:01:09 +03:00
assert!(syntax_error);
}
2020-07-06 14:59:06 +03:00
#[test]
fn test_implicit_valid() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("implicit_valid.leo");
let program = parse_program(program_string).unwrap();
2020-07-06 14:59:06 +03:00
2020-07-30 10:15:14 +03:00
assert_satisfied(program);
2020-07-06 14:59:06 +03:00
}
#[test]
fn test_implicit_invalid() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("implicit_invalid.leo");
let program = parse_program(program_string).unwrap();
2020-07-06 14:59:06 +03:00
2020-07-30 21:11:54 +03:00
let _output = expect_compiler_error(program);
2020-07-06 14:59:06 +03:00
}
2020-08-19 13:11:30 +03:00
#[test]
fn test_console_assert_pass() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("console_assert_pass.leo");
let program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
assert_satisfied(program);
}
#[test]
fn test_console_assert_fail() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("console_assert_fail.leo");
let program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
let _output = expect_compiler_error(program);
}
#[test]
fn test_ternary() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("ternary.leo");
let mut program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
let main_input = generate_main_input(vec![
("s", Some(InputValue::Boolean(true))),
("c", Some(InputValue::Address(TEST_ADDRESS_1.to_string()))),
]);
program.set_main_input(main_input);
assert_satisfied(program);
2020-12-04 23:34:51 +03:00
let mut program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
let main_input = generate_main_input(vec![
("s", Some(InputValue::Boolean(false))),
("c", Some(InputValue::Address(TEST_ADDRESS_2.to_string()))),
]);
program.set_main_input(main_input);
assert_satisfied(program);
}
#[test]
fn test_equal() {
2020-12-04 23:34:51 +03:00
let program_string = include_str!("equal.leo");
let mut program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
let main_input = generate_main_input(vec![
("a", Some(InputValue::Address(TEST_ADDRESS_1.to_string()))),
("b", Some(InputValue::Address(TEST_ADDRESS_1.to_string()))),
("c", Some(InputValue::Boolean(true))),
]);
program.set_main_input(main_input);
assert_satisfied(program);
2020-12-04 23:34:51 +03:00
let mut program = parse_program(program_string).unwrap();
2020-08-19 13:11:30 +03:00
let main_input = generate_main_input(vec![
("a", Some(InputValue::Address(TEST_ADDRESS_1.to_string()))),
("b", Some(InputValue::Address(TEST_ADDRESS_2.to_string()))),
("c", Some(InputValue::Boolean(false))),
]);
program.set_main_input(main_input);
assert_satisfied(program);
}