leo/parser/tests/serialization/json.rs

103 lines
3.3 KiB
Rust
Raw Normal View History

2021-02-02 07:26:56 +03:00
// Copyright (C) 2019-2021 Aleo Systems Inc.
2020-08-18 13:50:26 +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/>.
2021-03-03 20:59:24 +03:00
use leo_ast::Ast;
#[cfg(not(feature = "ci_skip"))]
2021-01-27 21:02:20 +03:00
use leo_ast::Program;
2021-03-03 20:59:24 +03:00
use leo_parser::SyntaxError;
use std::path::{Path, PathBuf};
2021-03-03 20:59:24 +03:00
fn to_ast(program_filepath: &Path) -> Result<Ast, SyntaxError> {
let program_string = std::fs::read_to_string(program_filepath).expect("failed to open test");
2021-03-03 20:59:24 +03:00
// Parses the Leo file and constructs a leo ast.
2021-03-07 21:17:33 +03:00
leo_parser::parse_ast("test", &program_string)
}
#[test]
2020-08-03 05:57:28 +03:00
#[cfg(not(feature = "ci_skip"))]
fn test_serialize() {
2020-11-12 23:00:27 +03:00
// Construct an ast from the given test file.
let ast = {
2021-03-07 21:17:33 +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()
};
// Serializes the ast into JSON format.
let serialized_ast: Program = serde_json::from_value(serde_json::to_value(ast.as_repr()).unwrap()).unwrap();
// Load the expected ast.
let expected: Program = serde_json::from_str(include_str!("expected_leo_ast.json")).unwrap();
2020-11-12 23:00:27 +03:00
assert_eq!(expected, serialized_ast);
}
#[test]
2020-08-03 05:57:28 +03:00
#[cfg(not(feature = "ci_skip"))]
fn test_deserialize() {
// Load the expected ast.
2020-11-12 23:00:27 +03:00
let expected_ast = {
2021-03-07 21:17:33 +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()
};
// 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-11-12 23:00:27 +03:00
assert_eq!(expected_ast, ast);
}
#[test]
fn test_serialize_deserialize_serialize() {
2020-11-12 23:00:27 +03:00
// Construct an ast from the given test file.
let ast = {
2021-03-07 21:17:33 +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()
};
// Serializes the ast into JSON format.
2020-11-12 23:00:27 +03:00
let serialized_ast = ast.to_json_string().unwrap();
2020-11-12 23:00:27 +03:00
// Deserializes the serialized ast into an ast.
let ast = Ast::from_json_string(&serialized_ast).unwrap();
// Reserializes the ast into JSON format.
2020-11-12 23:00:27 +03:00
let reserialized_ast = ast.to_json_string().unwrap();
2020-11-12 23:00:27 +03:00
assert_eq!(serialized_ast, reserialized_ast);
}
2021-01-27 20:10:34 +03:00
#[test]
fn test_generic_parser_error() {
let error_result = {
2021-03-07 21:17:33 +03:00
let mut program_filepath = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
program_filepath.push("tests/serialization/parser_error.leo");
2021-01-27 20:10:34 +03:00
to_ast(&program_filepath)
}
2021-03-03 20:59:24 +03:00
.map_err(|err| matches!(err, SyntaxError::Error(_)));
2021-01-27 20:10:34 +03:00
assert!(error_result.err().unwrap());
}