mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
181 lines
4.1 KiB
Rust
181 lines
4.1 KiB
Rust
use crate::{get_error, get_output, parse_program, EdwardsConstrainedValue, EdwardsTestCompiler};
|
|
use leo_compiler::{
|
|
errors::{BooleanError, CompilerError, ExpressionError, FunctionError, StatementError},
|
|
ConstrainedValue,
|
|
};
|
|
use leo_types::InputValue;
|
|
|
|
use snarkos_models::gadgets::utilities::boolean::Boolean;
|
|
|
|
pub fn output_expected_boolean(program: EdwardsTestCompiler, boolean: bool) {
|
|
let output = get_output(program);
|
|
assert_eq!(
|
|
EdwardsConstrainedValue::Return(vec![ConstrainedValue::Boolean(Boolean::Constant(boolean))]).to_string(),
|
|
output.to_string()
|
|
);
|
|
}
|
|
|
|
pub fn output_true(program: EdwardsTestCompiler) {
|
|
output_expected_boolean(program, true)
|
|
}
|
|
|
|
pub fn output_false(program: EdwardsTestCompiler) {
|
|
output_expected_boolean(program, false)
|
|
}
|
|
|
|
fn fail_boolean(program: EdwardsTestCompiler) {
|
|
match get_error(program) {
|
|
CompilerError::FunctionError(FunctionError::BooleanError(BooleanError::Error(_))) => {}
|
|
error => panic!("Expected boolean error, got {}", error),
|
|
}
|
|
}
|
|
|
|
fn fail_boolean_statement(program: EdwardsTestCompiler) {
|
|
match get_error(program) {
|
|
CompilerError::FunctionError(FunctionError::StatementError(StatementError::ExpressionError(
|
|
ExpressionError::BooleanError(BooleanError::Error(_)),
|
|
))) => {}
|
|
_ => panic!("Expected boolean error, got {}"),
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_true() {
|
|
let bytes = include_bytes!("true.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_true(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_false() {
|
|
let bytes = include_bytes!("false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_input_bool_field() {
|
|
let bytes = include_bytes!("input_bool.leo");
|
|
let mut program = parse_program(bytes).unwrap();
|
|
|
|
program.set_inputs(vec![Some(InputValue::Field("1field".to_string()))]);
|
|
|
|
fail_boolean(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_input_bool_none() {
|
|
let bytes = include_bytes!("input_bool.leo");
|
|
let mut program = parse_program(bytes).unwrap();
|
|
|
|
program.set_inputs(vec![None]);
|
|
|
|
fail_boolean(program);
|
|
}
|
|
|
|
// Boolean not !
|
|
|
|
#[test]
|
|
fn test_not_true() {
|
|
let bytes = include_bytes!("not_true.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_not_false() {
|
|
let bytes = include_bytes!("not_false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_true(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_not_u32() {
|
|
let bytes = include_bytes!("not_u32.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
fail_boolean_statement(program)
|
|
}
|
|
|
|
// Boolean or ||
|
|
|
|
#[test]
|
|
fn test_true_or_true() {
|
|
let bytes = include_bytes!("true_or_true.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_true(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_true_or_false() {
|
|
let bytes = include_bytes!("true_or_false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_true(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_false_or_false() {
|
|
let bytes = include_bytes!("false_or_false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_true_or_u32() {
|
|
let bytes = include_bytes!("true_or_u32.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
fail_boolean_statement(program);
|
|
}
|
|
|
|
// Boolean and &&
|
|
|
|
#[test]
|
|
fn test_true_and_true() {
|
|
let bytes = include_bytes!("true_and_true.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_true(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_true_and_false() {
|
|
let bytes = include_bytes!("true_and_false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_false_and_false() {
|
|
let bytes = include_bytes!("false_and_false.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|
|
|
|
#[test]
|
|
fn test_true_and_u32() {
|
|
let bytes = include_bytes!("true_and_u32.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
fail_boolean_statement(program);
|
|
}
|
|
|
|
// All
|
|
|
|
#[test]
|
|
fn test_all() {
|
|
let bytes = include_bytes!("all.leo");
|
|
let program = parse_program(bytes).unwrap();
|
|
|
|
output_false(program);
|
|
}
|