// 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 . use crate::{expect_asg_error, parse_input, parse_program}; use leo_compiler::errors::CompilerError; use leo_grammar::ParserError; use leo_input::InputParserError; pub mod identifiers; #[test] #[ignore] fn test_semicolon() { let program_string = include_str!("semicolon.leo"); let error = parse_program(program_string).err().unwrap(); match error { CompilerError::ParserError(ParserError::SyntaxError(_)) => {} _ => panic!("test_semicolon failed the wrong expected error, should be a ParserError"), } } #[test] fn test_undefined() { let program_string = include_str!("undefined.leo"); let error = parse_program(program_string).err().unwrap(); expect_asg_error(error); } #[test] fn input_syntax_error() { let input_string = include_str!("input_semicolon.leo"); let error = parse_input(input_string).err().unwrap(); // Expect an input parser error. match error { CompilerError::InputParserError(InputParserError::SyntaxError(_)) => {} _ => panic!("input syntax error should be a ParserError"), } } #[test] fn test_compare_mismatched_types() { let program_string = include_str!("compare_mismatched_types.leo"); let error = parse_program(program_string).err().unwrap(); // Expect a type inference error. crate::expect_asg_error(error); }