leo/compiler/tests/function/mod.rs

195 lines
5.3 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-11-12 21:28:24 +03:00
use crate::{
assert_satisfied,
expect_compiler_error,
expect_type_inference_error,
get_output,
parse_program,
parse_program_with_input,
};
2020-07-30 22:10:33 +03:00
use leo_compiler::errors::{CompilerError, ExpressionError, FunctionError, StatementError};
#[test]
fn test_empty() {
2020-06-09 04:31:21 +03:00
let bytes = include_bytes!("empty.leo");
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_iteration() {
let bytes = include_bytes!("iteration.leo");
2020-06-09 04:31:21 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_iteration_repeated() {
let bytes = include_bytes!("iteration_repeated.leo");
2020-06-09 04:31:21 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
fn test_newlines() {
let input_bytes = include_bytes!("input/newlines.in");
let program_bytes = include_bytes!("newlines.leo");
let program = parse_program_with_input(program_bytes, input_bytes).unwrap();
2020-08-17 05:14:26 +03:00
let expected_bytes = include_bytes!("output/newlines.out");
let expected = std::str::from_utf8(expected_bytes).unwrap();
let actual_bytes = get_output(program);
let actual = std::str::from_utf8(actual_bytes.bytes().as_slice()).unwrap();
assert_eq!(expected, actual);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_multiple_returns() {
let bytes = include_bytes!("multiple.leo");
2020-06-09 04:31:21 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_multiple_returns_main() {
let program_bytes = include_bytes!("multiple_main.leo");
2020-08-01 06:59:50 +03:00
let input_bytes = include_bytes!("input/registers.in");
2020-06-09 04:31:21 +03:00
2020-08-01 06:59:50 +03:00
let program = parse_program_with_input(program_bytes, input_bytes).unwrap();
2020-07-30 22:10:33 +03:00
2020-08-17 05:14:26 +03:00
let expected_bytes = include_bytes!("output/registers.out");
2020-07-30 22:10:33 +03:00
let expected = std::str::from_utf8(expected_bytes).unwrap();
2020-08-01 07:15:33 +03:00
let actual_bytes = get_output(program);
2020-07-30 22:10:33 +03:00
let actual = std::str::from_utf8(actual_bytes.bytes().as_slice()).unwrap();
2020-07-30 22:10:33 +03:00
assert_eq!(expected, actual);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_repeated_function_call() {
let bytes = include_bytes!("repeated.leo");
2020-06-09 04:31:21 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_return() {
let bytes = include_bytes!("return.leo");
2020-06-09 04:31:21 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
}
#[test]
2020-07-30 22:10:33 +03:00
fn test_scope_fail() {
let bytes = include_bytes!("scope_fail.leo");
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
match expect_compiler_error(program) {
CompilerError::FunctionError(FunctionError::StatementError(StatementError::ExpressionError(
ExpressionError::FunctionError(value),
))) => match *value {
FunctionError::StatementError(StatementError::ExpressionError(ExpressionError::Error(_))) => {}
error => panic!("Expected function undefined, got {}", error),
},
error => panic!("Expected function undefined, got {}", error),
}
}
2020-07-30 22:10:33 +03:00
2020-11-12 21:28:24 +03:00
#[test]
fn test_undefined() {
let bytes = include_bytes!("undefined.leo");
let error = parse_program(bytes).err().unwrap();
expect_type_inference_error(error);
}
2020-06-23 04:28:30 +03:00
#[test]
2020-07-30 22:10:33 +03:00
fn test_value_unchanged() {
let bytes = include_bytes!("value_unchanged.leo");
2020-06-23 04:28:30 +03:00
let program = parse_program(bytes).unwrap();
2020-07-30 22:10:33 +03:00
assert_satisfied(program);
2020-06-23 04:28:30 +03:00
}
2020-11-12 21:28:24 +03:00
#[test]
fn test_array_input() {
let bytes = include_bytes!("array_input.leo");
let error = parse_program(bytes).err().unwrap();
expect_type_inference_error(error)
}
2020-10-26 23:14:36 +03:00
// Test return multidimensional arrays
#[test]
fn test_return_array_nested_fail() {
let bytes = include_bytes!("return_array_nested_fail.leo");
let program = parse_program(bytes).unwrap();
let _err = expect_compiler_error(program);
}
#[test]
fn test_return_array_nested_pass() {
let bytes = include_bytes!("return_array_nested_pass.leo");
let program = parse_program(bytes).unwrap();
assert_satisfied(program);
}
#[test]
fn test_return_array_tuple_fail() {
let bytes = include_bytes!("return_array_tuple_fail.leo");
let program = parse_program(bytes).unwrap();
let _err = expect_compiler_error(program);
}
#[test]
fn test_return_array_tuple_pass() {
let bytes = include_bytes!("return_array_tuple_pass.leo");
let program = parse_program(bytes).unwrap();
assert_satisfied(program);
}
// Test return tuples
#[test]
fn test_return_tuple() {
let bytes = include_bytes!("return_tuple.leo");
let program = parse_program(bytes).unwrap();
assert_satisfied(program);
}
#[test]
fn test_return_tuple_conditional() {
let bytes = include_bytes!("return_tuple_conditional.leo");
let program = parse_program(bytes).unwrap();
assert_satisfied(program);
}