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

56 lines
1.5 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,
2020-06-08 07:26:49 +03:00
integers::{fail_integer, fail_synthesis, 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
};
2020-06-08 07:26:49 +03:00
use leo_compiler::ConstrainedValue;
2020-06-11 03:53:38 +03:00
use leo_inputs::types::{IntegerType, U8Type};
2020-06-08 09:30:39 +03:00
use leo_types::{InputValue, Integer};
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::UInt8},
};
2020-06-06 02:35:50 +03:00
fn output_expected_allocated(program: EdwardsTestCompiler, expected: UInt8) {
let output = get_output(program);
match output {
EdwardsConstrainedValue::Return(vec) => match vec.as_slice() {
[ConstrainedValue::Integer(Integer::U8(actual))] => assert_eq!(*actual, expected),
_ => panic!("program output unknown return value"),
},
_ => panic!("program output unknown return value"),
}
}
#[test]
fn test_u8() {
2020-06-11 03:53:38 +03:00
test_uint!(Testu8, u8, IntegerType::U8Type(U8Type {}), UInt8);
2020-06-06 02:35:50 +03:00
Testu8::test_min(std::u8::MIN);
Testu8::test_max(std::u8::MAX);
Testu8::test_input();
Testu8::test_add();
// Testu8::test_sub(); //Todo: Catch subtraction overflow error in gadget
Testu8::test_mul();
Testu8::test_div();
Testu8::test_pow();
Testu8::test_eq();
Testu8::test_ge();
Testu8::test_gt();
Testu8::test_le();
Testu8::test_gt();
Testu8::test_assert_eq();
Testu8::test_ternary();
}