use std::{fs::File, io::BufReader, path::Path}; use html5lib_tests::{parse_tests, InitialState, ParseError, ParseErrorInner, Test}; use html5tokenizer::{InternalState, Reader, Token, Tokenizer}; use pretty_assertions::assert_eq; /// Path to a local checkout of [html5lib-tests], relative to the /// directory containing the `Cargo.toml` file of the current crate. /// /// [html5lib-tests]: https://github.com/html5lib/html5lib-tests const HTML5LIB_TESTS_PATH: &str = "html5lib-tests"; // FUTURE: it would be nice to assert that HTML5LIB_TESTS_PATH matches the path defined in .gitmodules // but this is currently blocked by: // * Cargo not setting CARGO_WORKSPACE_DIR (see https://github.com/rust-lang/cargo/issues/3946) // * gix-config having more dependencies than I'd want to add for this #[test] fn tokenizer() { // TODO: use a custom test harness with e.g. libtest-mimic let test_dir = format!("{HTML5LIB_TESTS_PATH}/tokenizer"); let mut test_paths = glob::glob(&format!("{test_dir}/*.test")) .unwrap() .peekable(); if test_paths.peek().is_none() { panic!( "could not find any .test files in {}, maybe try `git submodule update --init`", test_dir ); } for test_path in test_paths { let test_path = test_path.unwrap(); test_tokenizer_file(&test_path); } } fn test_tokenizer_file(path: &Path) { let fname = path.file_name().unwrap().to_str().unwrap(); if matches!( fname, // We don't implement "Coercing an HTML DOM into an infoset" section "xmlViolation.test" | // Our parser does not operate on bytes, the input isn't valid Rust &str "unicodeCharsProblematic.test" ) { return; } let f = File::open(path).unwrap(); let bf = BufReader::new(f); let tests = parse_tests(bf).expect(&format!("failed to parse {path:?}")); for (i, test) in tests.into_iter().enumerate() { run_test(fname, i, test); } } fn run_test(fname: &str, test_i: usize, test: Test) { for state in &test.initial_states { run_test_inner( fname, test_i, &test, state, Tokenizer::new(&test.input), "string", ); run_test_inner( fname, test_i, &test, state, Tokenizer::new(BufReader::new(test.input.as_bytes())), "bufread", ); } } fn run_test_inner( fname: &str, test_i: usize, test: &Test, state: &InitialState, mut tokenizer: Tokenizer, tokenizer_info: &str, ) { println!( "==== FILE {}, TEST {}, STATE {:?}, TOKENIZER {} ====", fname, test_i, state, tokenizer_info, ); println!("description: {}", test.description); tokenizer.set_internal_state(match state { InitialState::Data => InternalState::Data, InitialState::PlainText => InternalState::PlainText, InitialState::RcData => InternalState::RcData, InitialState::RawText => InternalState::RawText, InitialState::ScriptData => InternalState::ScriptData, InitialState::CdataSection => InternalState::CdataSection, }); if let Some(last_start_tag) = &test.last_start_tag { tokenizer.set_last_start_tag(last_start_tag); } let mut actual_tokens = Vec::new(); let mut actual_errors = Vec::new(); for token in tokenizer { let token = token.unwrap(); if let Token::Error { error, .. } = token { actual_errors.push(ParseError { code: ParseErrorInner(error), }); } else { actual_tokens.push(token); } } assert_eq!(test.output.0, actual_tokens); assert_eq!(test.errors, actual_errors); }