mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
136 lines
3.3 KiB
Rust
136 lines
3.3 KiB
Rust
// Copyright (C) 2019-2021 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/>.
|
|
|
|
use crate::load_asg;
|
|
|
|
// Expressions
|
|
|
|
#[test]
|
|
fn test_inline() {
|
|
let program_string = include_str!("inline.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
// Members
|
|
|
|
#[test]
|
|
fn test_member_variable() {
|
|
let program_string = include_str!("member_variable.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_member_variable_and_function() {
|
|
let program_string = include_str!("member_variable_and_function.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_member_function() {
|
|
let program_string = include_str!("member_function.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_mut_member_function() {
|
|
let program_string = r#"
|
|
circuit Foo {
|
|
function echo(mut self, x: u32) -> u32 {
|
|
return x
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
let mut a = Foo { };
|
|
|
|
console.assert(a.echo(1u32) == 1u32);
|
|
}"#;
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_member_function_nested() {
|
|
let program_string = include_str!("member_function_nested.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_member_static_function() {
|
|
let program_string = include_str!("member_static_function.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_member_static_function_nested() {
|
|
let program_string = include_str!("member_static_function_nested.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
// Mutability
|
|
|
|
#[test]
|
|
fn test_mutate_self_variable() {
|
|
let program_string = include_str!("mut_self_variable.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_mutate_self_variable_conditional() {
|
|
let program_string = include_str!("mut_self_variable_conditional.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_mutate_variable() {
|
|
let program_string = include_str!("mut_variable.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
// Self
|
|
|
|
#[test]
|
|
fn test_self_member_pass() {
|
|
let program_string = include_str!("self_member.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
// All
|
|
|
|
#[test]
|
|
fn test_pedersen_mock() {
|
|
let program_string = include_str!("pedersen_mock.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_define_circuit_inside_circuit_function() {
|
|
let program_string = include_str!("define_circuit_inside_circuit_function.leo");
|
|
load_asg(program_string).unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn test_circuit_explicit_define() {
|
|
let program_string = r#"
|
|
circuit One {
|
|
x: u8,
|
|
}
|
|
function main () {
|
|
let x: One = One {x: 5};
|
|
}
|
|
"#;
|
|
load_asg(program_string).unwrap();
|
|
}
|