Tests: Port TestHTMLTokenizer to Core::Stream

This commit is contained in:
Sam Atkins 2022-03-10 14:02:40 +00:00 committed by Tim Flynn
parent 2b2ddee77c
commit 82605e2dff
Notes: sideshowbarker 2024-07-17 17:37:05 +09:00

View File

@ -6,7 +6,7 @@
#include <LibTest/TestCase.h> #include <LibTest/TestCase.h>
#include <LibCore/File.h> #include <LibCore/Stream.h>
#include <LibWeb/HTML/Parser/HTMLTokenizer.h> #include <LibWeb/HTML/Parser/HTMLTokenizer.h>
using Tokenizer = Web::HTML::HTMLTokenizer; using Tokenizer = Web::HTML::HTMLTokenizer;
@ -201,9 +201,11 @@ TEST_CASE(doctype)
// If that changes, or something is added to the test HTML, the hash needs to be adjusted. // If that changes, or something is added to the test HTML, the hash needs to be adjusted.
TEST_CASE(regression) TEST_CASE(regression)
{ {
auto file = Core::File::open("/usr/Tests/LibWeb/tokenizer-test.html", Core::OpenMode::ReadOnly); auto file = MUST(Core::Stream::File::open("/usr/Tests/LibWeb/tokenizer-test.html", Core::Stream::OpenMode::Read));
VERIFY(!file.is_error()); auto file_size = MUST(file->size());
auto file_contents = file.value()->read_all(); auto content = MUST(ByteBuffer::create_uninitialized(file_size));
MUST(file->read(content.bytes()));
String file_contents { content.bytes() };
auto tokens = run_tokenizer(file_contents); auto tokens = run_tokenizer(file_contents);
u32 hash = hash_tokens(tokens); u32 hash = hash_tokens(tokens);
EXPECT_EQ(hash, 710375345u); EXPECT_EQ(hash, 710375345u);