leo/compiler/tests/integers/u64/mod.rs

109 lines
1.9 KiB
Rust
Raw Normal View History

2020-06-06 02:35:50 +03:00
use crate::{
boolean::{output_expected_boolean, output_false, output_true},
get_error,
2020-06-08 09:30:39 +03:00
get_output,
integers::{fail_integer, IntegerTester},
2020-06-09 05:13:47 +03:00
parse_program,
2020-06-08 09:30:39 +03:00
EdwardsConstrainedValue,
EdwardsTestCompiler,
2020-06-06 02:35:50 +03:00
};
use leo_compiler::{ConstrainedValue, Integer};
2020-06-11 03:53:38 +03:00
use leo_inputs::types::{IntegerType, U64Type};
use leo_types::InputValue;
2020-06-06 02:35:50 +03:00
use snarkos_curves::edwards_bls12::Fq;
2020-06-08 09:30:39 +03:00
use snarkos_models::gadgets::{
r1cs::TestConstraintSystem,
utilities::{alloc::AllocGadget, uint::UInt64},
};
2020-06-06 02:35:50 +03:00
fn output_expected_allocated(program: EdwardsTestCompiler, expected: UInt64) {
let output = get_output(program);
match output {
EdwardsConstrainedValue::Return(vec) => match vec.as_slice() {
[ConstrainedValue::Integer(Integer::U64(actual))] => assert_eq!(*actual, expected),
_ => panic!("program output unknown return value"),
},
_ => panic!("program output unknown return value"),
}
}
2020-07-16 05:55:04 +03:00
test_uint!(TestU64, u64, IntegerType::U64Type(U64Type {}), UInt64);
#[test]
fn test_u64_min() {
TestU64::test_min(std::u64::MIN);
}
#[test]
fn test_u64_max() {
TestU64::test_max(std::u64::MAX);
}
#[test]
fn test_u64_input() {
TestU64::test_input();
}
#[test]
fn test_u64_add() {
TestU64::test_add();
}
#[test]
fn test_u64_sub() {
TestU64::test_sub();
}
#[test]
fn test_u64_mul() {
TestU64::test_mul();
}
2020-06-06 02:35:50 +03:00
#[test]
2020-07-16 05:55:04 +03:00
fn test_u64_div() {
TestU64::test_div();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
#[ignore] // this test takes ~7 mins
fn test_u64_pow() {
TestU64::test_pow();
}
2020-06-06 02:51:26 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u64_eq() {
TestU64::test_eq();
}
2020-06-06 02:51:26 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u64_ge() {
TestU64::test_ge();
}
2020-06-06 02:51:26 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u64_gt() {
TestU64::test_gt();
}
2020-06-06 02:51:26 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u64_le() {
TestU64::test_le();
}
#[test]
fn test_u64_lt() {
TestU64::test_lt();
}
#[test]
fn test_u64_assert_eq() {
TestU64::test_assert_eq();
}
#[test]
fn test_u64_ternary() {
TestU64::test_ternary();
2020-06-06 02:35:50 +03:00
}