mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-02 12:22:08 +03:00
40 lines
1.5 KiB
Rust
40 lines
1.5 KiB
Rust
// Copyright (C) 2019-2020 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 leo_ast::LeoAst;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
#[test]
|
|
#[cfg(not(feature = "ci_skip"))]
|
|
fn test_serialize() {
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
program_filepath.push("tests/serialization/main.leo");
|
|
|
|
let expected = include_str!("./expected_ast.json");
|
|
|
|
// Loads the Leo code as a string from the given file path.
|
|
let program_string = LeoAst::load_file(&program_filepath).unwrap();
|
|
|
|
// Parses the Leo file and constructs an abstract syntax tree.
|
|
let ast = LeoAst::new(&program_filepath, &program_string).unwrap();
|
|
|
|
// Serializes the abstract syntax tree into JSON format.
|
|
let serialized_ast = LeoAst::to_json_string(&ast).unwrap();
|
|
|
|
assert_eq!(expected, serialized_ast);
|
|
}
|