mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
added build_index() function
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
#include "builder/builder.hpp"
|
||||
#include "config/config.hpp"
|
||||
#include "format/format.hpp"
|
||||
#include "io/io.hpp"
|
||||
@@ -128,6 +129,21 @@ This [should be clickable](https://example.com)
|
||||
- nine
|
||||
- six
|
||||
- nine)";
|
||||
|
||||
constexpr const char *template_index = R"(<!DOCTYPE html>
|
||||
<html lang="{{lang}}">
|
||||
<head>
|
||||
{{head}}
|
||||
</head>
|
||||
<body>
|
||||
<header>{{header}}</header>
|
||||
<main>
|
||||
{{main}}
|
||||
</main>
|
||||
{{footer}}
|
||||
</body>
|
||||
</html>)";
|
||||
|
||||
} // namespace TestFiles
|
||||
|
||||
// IO tests
|
||||
@@ -158,7 +174,7 @@ TEST_CASE("get_metadata function data correctness test") {
|
||||
Metadata result = get_metadata(TestFiles::post_md).value();
|
||||
|
||||
std::string expected_author = "joseph";
|
||||
struct tm datetime = {0};
|
||||
struct tm datetime = {};
|
||||
datetime.tm_year = 2026 - 1900;
|
||||
datetime.tm_mon = 1 - 1;
|
||||
datetime.tm_mday = 1;
|
||||
@@ -241,3 +257,37 @@ TEST_CASE("Test format_file_conditionally with empty tag") {
|
||||
format_file_conditionally(TestFiles::formatter_html_conditionally,
|
||||
"{{if tag}}", "{{endif}}", "{{tag}}", ""));
|
||||
}
|
||||
|
||||
// Builder tests
|
||||
TEST_CASE("build_index correctly assembles the page", "[builder]") {
|
||||
Config config;
|
||||
config.general.lang = "pl";
|
||||
Metadata metadata;
|
||||
|
||||
Information info;
|
||||
info.config = config;
|
||||
info.metadata = metadata;
|
||||
|
||||
Page page;
|
||||
page.head = "<meta charset='utf-8'><title>Test</title>";
|
||||
page.header = "<nav>Menu</nav>";
|
||||
page.main = "<article>Treść wpisu</article>";
|
||||
page.footer = "<footer>Stopka</footer>";
|
||||
|
||||
std::string expected_output = R"(<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset='utf-8'><title>Test</title>
|
||||
</head>
|
||||
<body>
|
||||
<header><nav>Menu</nav></header>
|
||||
<main>
|
||||
<article>Treść wpisu</article>
|
||||
</main>
|
||||
<footer>Stopka</footer>
|
||||
</body>
|
||||
</html>)";
|
||||
|
||||
std::string result = build_index(TestFiles::template_index, page, info);
|
||||
REQUIRE(result == expected_output);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user