2021-02-02 07:26:56 +03:00
|
|
|
// Copyright (C) 2019-2021 Aleo Systems Inc.
|
2021-01-25 18:17:42 +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/>.
|
|
|
|
|
|
|
|
use crate::load_asg;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_returns_fail() {
|
|
|
|
let program_string = include_str!("multiple_returns_fail.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_returns_input_ambiguous() {
|
|
|
|
let program_string = include_str!("multiple_returns_input_ambiguous.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_multiple_returns_fail_conditional() {
|
|
|
|
let program_string = include_str!("multiple_returns_fail_conditional.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_scope_fail() {
|
|
|
|
let program_string = include_str!("scope_fail.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_undefined() {
|
|
|
|
let program_string = include_str!("undefined.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_array_input() {
|
|
|
|
let program_string = include_str!("array_input.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test return multidimensional arrays
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_nested_fail() {
|
|
|
|
let program_string = include_str!("return_array_nested_fail.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_return_array_tuple_fail() {
|
|
|
|
let program_string = include_str!("return_array_tuple_fail.leo");
|
2021-02-25 18:40:47 +03:00
|
|
|
load_asg(program_string).err().unwrap();
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|