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, get_output, parse_program, parse_program_with_input};
|
2020-05-21 01:51:57 +03:00
|
|
|
|
2021-02-03 06:33:30 +03:00
|
|
|
#[test]
|
|
|
|
fn test_conditional_return() {
|
|
|
|
let input_string = include_str!("input/conditional_return.in");
|
|
|
|
let program_string = include_str!("conditional_return.leo");
|
|
|
|
let program = parse_program_with_input(program_string, input_string).unwrap();
|
|
|
|
|
|
|
|
let expected_string = include_str!("output/conditional_return.out");
|
|
|
|
let actual_bytes = get_output(program);
|
|
|
|
let actual_string = std::str::from_utf8(actual_bytes.bytes().as_slice()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(expected_string, actual_string);
|
|
|
|
}
|
|
|
|
|
2020-05-21 01:51:57 +03:00
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("empty.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_iteration() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("iteration.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_iteration_repeated() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("iteration_repeated.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
2020-08-15 10:25:11 +03:00
|
|
|
#[test]
|
|
|
|
fn test_newlines() {
|
2020-12-04 23:20:59 +03:00
|
|
|
let input_string = include_str!("input/newlines.in");
|
|
|
|
let program_string = include_str!("newlines.leo");
|
|
|
|
let program = parse_program_with_input(program_string, input_string).unwrap();
|
2020-08-15 10:25:11 +03:00
|
|
|
|
2020-12-04 23:20:59 +03:00
|
|
|
let expected_string = include_str!("output/newlines.out");
|
2020-08-15 10:25:11 +03:00
|
|
|
let actual_bytes = get_output(program);
|
2020-12-04 23:20:59 +03:00
|
|
|
let actual_string = std::str::from_utf8(actual_bytes.bytes().as_slice()).unwrap();
|
2020-08-15 10:25:11 +03:00
|
|
|
|
2020-12-04 23:20:59 +03:00
|
|
|
assert_eq!(expected_string, actual_string);
|
2020-08-15 10:25:11 +03:00
|
|
|
}
|
|
|
|
|
2020-05-21 01:51:57 +03:00
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_multiple_returns() {
|
2020-12-08 20:21:18 +03:00
|
|
|
let program_string = include_str!("multiple_returns.leo");
|
2020-12-04 23:48:43 +03:00
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
2020-12-03 21:38:05 +03:00
|
|
|
#[test]
|
|
|
|
fn test_multiple_returns_fail() {
|
2020-12-08 20:21:18 +03:00
|
|
|
let program_string = include_str!("multiple_returns_fail.leo");
|
2020-12-17 00:02:31 +03:00
|
|
|
let error = parse_program(program_string).err().unwrap();
|
2020-12-03 21:38:05 +03:00
|
|
|
|
2020-12-17 00:02:31 +03:00
|
|
|
expect_asg_error(error);
|
2020-12-03 21:38:05 +03:00
|
|
|
}
|
|
|
|
|
2020-12-03 21:44:47 +03:00
|
|
|
#[test]
|
|
|
|
fn test_multiple_returns_fail_conditional() {
|
2020-12-08 20:21:18 +03:00
|
|
|
let program_string = include_str!("multiple_returns_fail_conditional.leo");
|
2020-12-17 00:02:31 +03:00
|
|
|
let error = parse_program(program_string).err().unwrap();
|
2020-12-03 21:44:47 +03:00
|
|
|
|
2020-12-17 00:02:31 +03:00
|
|
|
expect_asg_error(error);
|
2020-12-03 21:44:47 +03:00
|
|
|
}
|
|
|
|
|
2020-05-21 01:51:57 +03:00
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_multiple_returns_main() {
|
2020-12-08 20:21:18 +03:00
|
|
|
let program_string = include_str!("multiple_returns_main.leo");
|
2020-12-04 23:20:59 +03:00
|
|
|
let input_string = include_str!("input/registers.in");
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-12-04 23:20:59 +03:00
|
|
|
let program = parse_program_with_input(program_string, input_string).unwrap();
|
2020-07-30 22:10:33 +03:00
|
|
|
|
2020-12-04 23:20:59 +03:00
|
|
|
let expected_string = include_str!("output/registers.out");
|
2020-08-01 07:15:33 +03:00
|
|
|
let actual_bytes = get_output(program);
|
2020-12-04 23:20:59 +03:00
|
|
|
let actual_string = std::str::from_utf8(actual_bytes.bytes().as_slice()).unwrap();
|
2020-05-21 01:51:57 +03:00
|
|
|
|
2020-12-04 23:20:59 +03:00
|
|
|
assert_eq!(expected_string, actual_string);
|
2020-07-30 22:10:33 +03:00
|
|
|
}
|
2020-05-21 01:51:57 +03:00
|
|
|
|
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_repeated_function_call() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("repeated.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
2020-06-20 08:07:02 +03:00
|
|
|
|
2020-05-21 01:51:57 +03:00
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_return() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-09 04:31:21 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
2020-06-23 01:42:46 +03:00
|
|
|
|
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_scope_fail() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("scope_fail.leo");
|
2020-12-17 00:02:31 +03:00
|
|
|
let error = parse_program(program_string).err().unwrap();
|
2020-06-23 01:42:46 +03:00
|
|
|
|
2020-12-17 00:02:31 +03:00
|
|
|
expect_asg_error(error);
|
2020-06-23 01:42:46 +03:00
|
|
|
}
|
2020-07-30 22:10:33 +03:00
|
|
|
|
2020-11-12 21:28:24 +03:00
|
|
|
#[test]
|
|
|
|
fn test_undefined() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("undefined.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-06-23 04:28:30 +03:00
|
|
|
|
|
|
|
#[test]
|
2020-07-30 22:10:33 +03:00
|
|
|
fn test_value_unchanged() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("value_unchanged.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-06-23 04:28:30 +03:00
|
|
|
|
2020-07-30 22:10:33 +03:00
|
|
|
assert_satisfied(program);
|
2020-06-23 04:28:30 +03:00
|
|
|
}
|
2020-09-17 22:46:55 +03:00
|
|
|
|
2020-11-12 21:28:24 +03:00
|
|
|
#[test]
|
|
|
|
fn test_array_input() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("array_input.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-10-26 23:14:36 +03:00
|
|
|
|
2020-09-17 22:46:55 +03:00
|
|
|
// Test return multidimensional arrays
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_nested_fail() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_array_nested_fail.leo");
|
2020-12-17 00:02:31 +03:00
|
|
|
let error = parse_program(program_string).err().unwrap();
|
2020-09-17 22:46:55 +03:00
|
|
|
|
2020-12-17 00:02:31 +03:00
|
|
|
expect_asg_error(error);
|
2020-09-17 22:46:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_nested_pass() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_array_nested_pass.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-09-17 22:46:55 +03:00
|
|
|
|
|
|
|
assert_satisfied(program);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_tuple_fail() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_array_tuple_fail.leo");
|
2020-12-17 00:02:31 +03:00
|
|
|
let error = parse_program(program_string).err().unwrap();
|
2020-09-17 22:46:55 +03:00
|
|
|
|
2020-12-17 00:02:31 +03:00
|
|
|
expect_asg_error(error);
|
2020-09-17 22:46:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_tuple_pass() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_array_tuple_pass.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-09-17 22:46:55 +03:00
|
|
|
|
|
|
|
assert_satisfied(program);
|
|
|
|
}
|
2020-11-19 05:28:41 +03:00
|
|
|
|
2020-11-19 05:13:49 +03:00
|
|
|
// Test return tuples
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_tuple() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_tuple.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-11-19 05:13:49 +03:00
|
|
|
|
|
|
|
assert_satisfied(program);
|
|
|
|
}
|
2020-11-24 00:57:22 +03:00
|
|
|
|
2020-11-19 05:28:41 +03:00
|
|
|
#[test]
|
|
|
|
fn test_return_tuple_conditional() {
|
2020-12-04 23:48:43 +03:00
|
|
|
let program_string = include_str!("return_tuple_conditional.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
2020-11-19 05:28:41 +03:00
|
|
|
|
|
|
|
assert_satisfied(program);
|
|
|
|
}
|
2021-02-08 23:42:37 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_array_params_direct_call() {
|
|
|
|
let program_string = include_str!("array_params_direct_call.leo");
|
|
|
|
let program = parse_program(program_string).unwrap();
|
|
|
|
|
|
|
|
assert_satisfied(program);
|
|
|
|
}
|
2021-04-07 20:20:58 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_duplicate_function_definition() {
|
|
|
|
let program_string = include_str!("duplicate_definition.leo");
|
|
|
|
let error = parse_program(program_string).err().unwrap();
|
|
|
|
|
|
|
|
expect_asg_error(error);
|
|
|
|
}
|