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

108 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, U16Type};
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::UInt16},
};
2020-06-06 02:35:50 +03:00
fn output_expected_allocated(program: EdwardsTestCompiler, expected: UInt16) {
let output = get_output(program);
match output {
EdwardsConstrainedValue::Return(vec) => match vec.as_slice() {
[ConstrainedValue::Integer(Integer::U16(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!(TestU16, u16, IntegerType::U16Type(U16Type {}), UInt16);
#[test]
fn test_u16_min() {
TestU16::test_min(std::u16::MIN);
}
#[test]
fn test_u16_max() {
TestU16::test_max(std::u16::MAX);
}
#[test]
fn test_u16_input() {
TestU16::test_input();
}
#[test]
fn test_u16_add() {
TestU16::test_add();
}
#[test]
fn test_u16_sub() {
TestU16::test_sub();
}
#[test]
fn test_u16_mul() {
TestU16::test_mul();
}
2020-06-06 02:35:50 +03:00
#[test]
2020-07-16 05:55:04 +03:00
fn test_u16_div() {
TestU16::test_div();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_pow() {
TestU16::test_pow();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_eq() {
TestU16::test_eq();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_ge() {
TestU16::test_ge();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_gt() {
TestU16::test_gt();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_le() {
TestU16::test_le();
}
#[test]
fn test_u16_lt() {
TestU16::test_lt();
}
#[test]
fn test_u16_assert_eq() {
TestU16::test_assert_eq();
}
#[test]
fn test_u16_ternary() {
TestU16::test_ternary();
2020-06-06 02:35:50 +03:00
}