2021-08-29 23:19:12 +03:00
|
|
|
/*
|
2021-09-01 05:32:46 +03:00
|
|
|
* Copyright (c) 2021, Peter Elliott <pelliott@serenityos.org>
|
2021-08-29 23:19:12 +03:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/JsonArray.h>
|
|
|
|
#include <AK/JsonObject.h>
|
|
|
|
#include <AK/JsonParser.h>
|
|
|
|
#include <AK/String.h>
|
2022-03-10 16:45:14 +03:00
|
|
|
#include <LibCore/Stream.h>
|
2021-08-29 23:19:12 +03:00
|
|
|
#include <LibMarkdown/Document.h>
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <LibTest/TestSuite.h>
|
|
|
|
|
|
|
|
TEST_SETUP
|
|
|
|
{
|
2022-03-20 22:08:05 +03:00
|
|
|
auto file_or_error = Core::Stream::File::open("/home/anon/Tests/commonmark.spec.json", Core::Stream::OpenMode::Read);
|
2022-03-10 16:45:14 +03:00
|
|
|
if (file_or_error.is_error())
|
|
|
|
file_or_error = Core::Stream::File::open("./commonmark.spec.json", Core::Stream::OpenMode::Read);
|
|
|
|
VERIFY(!file_or_error.is_error());
|
|
|
|
auto file = file_or_error.release_value();
|
|
|
|
auto file_size = MUST(file->size());
|
|
|
|
auto content = MUST(ByteBuffer::create_uninitialized(file_size));
|
|
|
|
if (!file->read_or_error(content.bytes()))
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
String test_data { content.bytes() };
|
2021-08-29 23:19:12 +03:00
|
|
|
|
|
|
|
auto tests = JsonParser(test_data).parse().value().as_array();
|
|
|
|
for (size_t i = 0; i < tests.size(); ++i) {
|
|
|
|
auto testcase = tests[i].as_object();
|
|
|
|
|
|
|
|
auto name = String::formatted("{}_ex{}_{}..{}",
|
|
|
|
testcase.get("section"),
|
|
|
|
testcase.get("example"),
|
|
|
|
testcase.get("start_line"),
|
|
|
|
testcase.get("end_line"));
|
|
|
|
|
|
|
|
String markdown = testcase.get("markdown").as_string();
|
|
|
|
String html = testcase.get("html").as_string();
|
|
|
|
|
|
|
|
Test::TestSuite::the().add_case(adopt_ref(*new Test::TestCase(
|
|
|
|
name, [markdown, html]() {
|
|
|
|
auto document = Markdown::Document::parse(markdown);
|
|
|
|
EXPECT_EQ(document->render_to_inline_html(), html);
|
|
|
|
},
|
|
|
|
false)));
|
|
|
|
}
|
|
|
|
}
|