leo/compiler/tests/integers/integer_tester.rs

93 lines
2.8 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-07-31 01:41:03 +03:00
use crate::{expect_compiler_error, EdwardsTestCompiler};
use leo_compiler::errors::{CompilerError, ExpressionError, FunctionError, IntegerError, StatementError, ValueError};
2020-07-16 06:42:57 +03:00
pub trait IntegerTester {
2020-07-31 01:41:03 +03:00
/// Tests defining the smalled value that can be represented by the integer type
fn test_min();
2020-07-16 06:42:57 +03:00
2020-07-31 01:41:03 +03:00
/// Tests defining the smallest value - 1
fn test_min_fail();
/// Tests defining the largest value that can be represented by the integer type
fn test_max();
/// Tests defining the largest value + 1
fn test_max_fail();
/// Tests a non-wrapping addition
2020-07-16 06:42:57 +03:00
fn test_add();
2020-07-31 01:41:03 +03:00
/// Tests a non-wrapping subtraction
2020-07-16 06:42:57 +03:00
fn test_sub();
2020-07-31 01:41:03 +03:00
/// Tests a non-wrapping multiplication
2020-07-16 06:42:57 +03:00
fn test_mul();
/// Tests a non-wrapping division
fn test_div();
2020-07-31 01:41:03 +03:00
/// Tests a non-wrapping exponentiation
2020-07-16 06:42:57 +03:00
fn test_pow();
/// Tests == evaluation
fn test_eq();
2020-08-14 10:25:39 +03:00
/// Tests != evaluation
fn test_ne();
2020-07-16 06:42:57 +03:00
/// Tests >= evaluation
fn test_ge();
/// Tests > evaluation
fn test_gt();
/// Tests <= evaluation
fn test_le();
/// Tests < evaluation
fn test_lt();
/// Test assert equals constraint keyword
2020-08-17 05:14:26 +03:00
fn test_console_assert();
2020-07-16 06:42:57 +03:00
/// Test ternary if bool ? num_1 : num_2;
fn test_ternary();
}
pub(crate) fn expect_parsing_error(program: EdwardsTestCompiler) {
2020-07-31 01:41:03 +03:00
match expect_compiler_error(program) {
CompilerError::FunctionError(FunctionError::StatementError(StatementError::ExpressionError(
ExpressionError::ValueError(ValueError::IntegerError(IntegerError::Error(_))),
))) => {}
error => panic!("Expected integer parsing error, found {:?}", error),
}
}
pub(crate) fn expect_computation_error(program: EdwardsTestCompiler) {
match expect_compiler_error(program) {
CompilerError::FunctionError(FunctionError::StatementError(StatementError::ExpressionError(
ExpressionError::IntegerError(IntegerError::Error(_)),
))) => {}
error => panic!(
"Expected integer computation error such as `DivisionByZero`, found {:?}",
error
),
2020-07-16 06:42:57 +03:00
}
}