leo/compiler/tests/syntax/mod.rs
2020-06-19 15:47:09 -07:00

37 lines
1010 B
Rust

use crate::{get_error, parse_program};
use leo_ast::ParserError;
use leo_compiler::errors::CompilerError;
use leo_inputs::InputParserError;
#[test]
fn test_semicolon() {
let bytes = include_bytes!("semicolon.leo");
let error = parse_program(bytes).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 bytes = include_bytes!("undefined.leo");
let program = parse_program(bytes).unwrap();
let error = get_error(program);
println!("{}", error);
}
// #[test]
// fn inputs_syntax_error() {
// let bytes = include_bytes!("inputs_semicolon.leo");
// let error = parse_inputs(bytes).err().unwrap();
//
// match error {
// CompilerError::InputParserError(InputParserError::SyntaxError(_)) => {}
// _ => panic!("inputs syntax error should be a ParserError"),
// }
// }