2020-08-18 13:50:26 +03:00
|
|
|
// 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/>.
|
|
|
|
|
2020-10-21 18:26:51 +03:00
|
|
|
#[cfg(not(feature = "ci_skip"))]
|
2021-01-27 21:02:20 +03:00
|
|
|
use leo_ast::Program;
|
|
|
|
use leo_ast::{Ast, AstError};
|
2021-01-27 20:10:34 +03:00
|
|
|
use leo_grammar::{Grammar, ParserError};
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-10-16 18:21:18 +03:00
|
|
|
use std::path::{Path, PathBuf};
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2021-01-27 20:10:34 +03:00
|
|
|
fn to_ast(program_filepath: &Path) -> Result<Ast, AstError> {
|
2020-08-02 07:50:47 +03:00
|
|
|
// Loads the Leo code as a string from the given file path.
|
2021-01-27 20:10:34 +03:00
|
|
|
let program_string = Grammar::load_file(program_filepath)?;
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Parses the Leo file and constructs a grammar ast.
|
2021-01-27 20:10:34 +03:00
|
|
|
let ast = Grammar::new(&program_filepath, &program_string)?;
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Parses the pest ast and constructs a Leo ast.
|
2021-01-27 20:10:34 +03:00
|
|
|
Ast::new("leo_tree", &ast)
|
2020-08-02 07:50:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-08-03 05:57:28 +03:00
|
|
|
#[cfg(not(feature = "ci_skip"))]
|
2020-08-02 07:50:47 +03:00
|
|
|
fn test_serialize() {
|
2020-11-12 23:00:27 +03:00
|
|
|
// Construct an ast from the given test file.
|
|
|
|
let ast = {
|
2020-08-02 07:50:47 +03:00
|
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
program_filepath.push("tests/serialization/main.leo");
|
|
|
|
|
2021-01-27 20:10:34 +03:00
|
|
|
to_ast(&program_filepath).unwrap()
|
2020-08-02 07:50:47 +03:00
|
|
|
};
|
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Serializes the ast into JSON format.
|
2020-11-12 23:00:27 +03:00
|
|
|
let serialized_ast: Program = serde_json::from_value(serde_json::to_value(ast.into_repr()).unwrap()).unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Load the expected ast.
|
|
|
|
let expected: Program = serde_json::from_str(include_str!("expected_leo_ast.json")).unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-12 23:00:27 +03:00
|
|
|
assert_eq!(expected, serialized_ast);
|
2020-08-02 07:50:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-08-03 05:57:28 +03:00
|
|
|
#[cfg(not(feature = "ci_skip"))]
|
2020-08-02 07:50:47 +03:00
|
|
|
fn test_deserialize() {
|
2020-11-11 23:47:54 +03:00
|
|
|
// Load the expected ast.
|
2020-11-12 23:00:27 +03:00
|
|
|
let expected_ast = {
|
2020-08-02 07:50:47 +03:00
|
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
program_filepath.push("tests/serialization/main.leo");
|
|
|
|
|
2021-01-27 20:10:34 +03:00
|
|
|
to_ast(&program_filepath).unwrap()
|
2020-08-02 07:50:47 +03:00
|
|
|
};
|
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Construct an ast by deserializing a ast JSON file.
|
|
|
|
let serialized_ast = include_str!("expected_leo_ast.json");
|
2020-11-12 23:00:27 +03:00
|
|
|
let ast = Ast::from_json_string(serialized_ast).unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-12 23:00:27 +03:00
|
|
|
assert_eq!(expected_ast, ast);
|
2020-08-02 07:50:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_serialize_deserialize_serialize() {
|
2020-11-12 23:00:27 +03:00
|
|
|
// Construct an ast from the given test file.
|
|
|
|
let ast = {
|
2020-08-02 07:50:47 +03:00
|
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
program_filepath.push("tests/serialization/main.leo");
|
|
|
|
|
2021-01-27 20:10:34 +03:00
|
|
|
to_ast(&program_filepath).unwrap()
|
2020-08-02 07:50:47 +03:00
|
|
|
};
|
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Serializes the ast into JSON format.
|
2020-11-12 23:00:27 +03:00
|
|
|
let serialized_ast = ast.to_json_string().unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-12 23:00:27 +03:00
|
|
|
// Deserializes the serialized ast into an ast.
|
|
|
|
let ast = Ast::from_json_string(&serialized_ast).unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-11 23:47:54 +03:00
|
|
|
// Reserializes the ast into JSON format.
|
2020-11-12 23:00:27 +03:00
|
|
|
let reserialized_ast = ast.to_json_string().unwrap();
|
2020-08-02 07:50:47 +03:00
|
|
|
|
2020-11-12 23:00:27 +03:00
|
|
|
assert_eq!(serialized_ast, reserialized_ast);
|
2020-08-02 07:50:47 +03:00
|
|
|
}
|
2021-01-27 20:10:34 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_file_read_error() {
|
|
|
|
let error_result = {
|
|
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
program_filepath.push("tests/serialization/dne.leo");
|
|
|
|
|
|
|
|
to_ast(&program_filepath)
|
|
|
|
}
|
|
|
|
.map_err(|err| matches!(err, AstError::ParserError(x) if matches!(x, ParserError::FileReadError(_))));
|
|
|
|
|
|
|
|
assert!(error_result.err().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_generic_parser_error() {
|
|
|
|
let error_result = {
|
|
|
|
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
|
|
program_filepath.push("tests/serialization/parser_error.leo");
|
|
|
|
|
|
|
|
to_ast(&program_filepath)
|
|
|
|
}
|
|
|
|
.map_err(|err| matches!(err, AstError::ParserError(_)));
|
|
|
|
|
|
|
|
assert!(error_result.err().unwrap());
|
|
|
|
}
|