2021-02-02 07:26:56 +03:00
|
|
|
// Copyright (C) 2019-2021 Aleo Systems Inc.
|
2021-01-25 18:17:42 +03:00
|
|
|
// 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 leo_asg::*;
|
2021-03-05 01:11:17 +03:00
|
|
|
use leo_parser::parse_ast;
|
2021-02-05 06:21:17 +03:00
|
|
|
|
2021-01-25 18:17:42 +03:00
|
|
|
mod fail;
|
|
|
|
mod pass;
|
|
|
|
|
2021-02-05 06:21:17 +03:00
|
|
|
const TESTING_FILEPATH: &str = "input.leo";
|
|
|
|
|
2021-02-25 18:40:47 +03:00
|
|
|
fn load_asg(program_string: &str) -> Result<Program<'static>, AsgConvertError> {
|
|
|
|
load_asg_imports(make_test_context(), program_string, &mut NullImportResolver)
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
2021-02-11 19:38:08 +03:00
|
|
|
fn load_asg_imports<'a, T: ImportResolver<'a>>(
|
|
|
|
context: AsgContext<'a>,
|
2021-02-05 06:21:17 +03:00
|
|
|
program_string: &str,
|
|
|
|
imports: &mut T,
|
2021-02-11 19:38:08 +03:00
|
|
|
) -> Result<Program<'a>, AsgConvertError> {
|
2021-03-05 02:58:00 +03:00
|
|
|
let ast = parse_ast(&TESTING_FILEPATH, program_string)?;
|
2021-03-07 20:45:09 +03:00
|
|
|
Program::new(context, &ast.as_repr(), imports)
|
2021-01-25 18:17:42 +03:00
|
|
|
}
|
|
|
|
|
2021-03-11 15:59:44 +03:00
|
|
|
fn mocked_resolver(_context: AsgContext<'_>) -> MockedImportResolver<'_> {
|
2021-01-25 18:17:42 +03:00
|
|
|
let packages = indexmap::IndexMap::new();
|
|
|
|
MockedImportResolver { packages }
|
|
|
|
}
|
2021-02-25 18:40:47 +03:00
|
|
|
|
|
|
|
//convenience function for tests, leaks memory
|
|
|
|
pub(crate) fn make_test_context() -> AsgContext<'static> {
|
|
|
|
let allocator = Box::leak(Box::new(new_alloc_context()));
|
|
|
|
new_context(allocator)
|
|
|
|
}
|