| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /*
- * This source file is part of RmlUi, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://github.com/mikke89/RmlUi
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- * Copyright (c) 2019-2023 The RmlUi Team, and contributors
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #include "../Common/TestsShell.h"
- #include <RmlUi/Core/Context.h>
- #include <RmlUi/Core/Element.h>
- #include <RmlUi/Core/ElementDocument.h>
- #include <algorithm>
- #include <doctest.h>
- using namespace Rml;
- static const String document_body_template_rml = R"(
- <rml>
- <head>
- <link type="text/template" href="/assets/window.rml"/>
- <style>
- body.window
- {
- top: 100px;
- left: 200px;
- width: 600px;
- height: 450px;
- }
- </style>
- </head>
- <body id="body" class="overridden" template="window">
- <p id="p">A paragraph</p>
- </body>
- </rml>
- )";
- static const String p_address_body_template = "p#p < div#content < div#window < body#body.window < #root#main";
- static const String document_body_and_inline_template_rml = R"(
- <rml>
- <head>
- <link type="text/template" href="/assets/window.rml"/>
- <link type="text/template" href="/../Tests/Data/UnitTests/template_basic.rml"/>
- <style>
- body.window
- {
- top: 100px;
- left: 200px;
- width: 600px;
- height: 450px;
- }
- </style>
- </head>
- <body id="body" template="window">
- <p id="p">A paragraph</p>
- <div id="basic_wrapper">
- <template src="basic">
- Hello!<span id="span">World</span>
- </template>
- </div>
- </body>
- </rml>
- )";
- static const String span_address_body_template = "span#span < p#text < div#basic_wrapper < div#content < div#window < body#body.window < #root#main";
- static const String document_inline_template_rml = R"(
- <rml>
- <head>
- <link type="text/template" href="/assets/window.rml"/>
- <style>
- body
- {
- top: 100px;
- left: 200px;
- width: 600px;
- height: 450px;
- }
- </style>
- </head>
- <body id="body" class="inline">
- <p>Paragraph outside the window.</p>
- <div id="template_parent">
- <template src="window">
- <p id="p">A paragraph</p>
- </template>
- </div>
- </body>
- </rml>
- )";
- static const String p_address_inline_template = "p#p < div#content < div#window < div#template_parent < body#body.inline < #root#main";
- static const String document_double_inline_template_rml = R"(
- <rml>
- <head>
- <link type="text/template" href="/assets/window.rml"/>
- <link type="text/template" href="/../Tests/Data/UnitTests/template_basic.rml"/>
- <style>
- body
- {
- top: 100px;
- left: 200px;
- width: 600px;
- height: 450px;
- }
- </style>
- </head>
- <body id="body" class="inline">
- <p>Paragraph outside the window.</p>
- <div id="template_parent">
- <template src="window">
- <p id="p">A paragraph</p>
- </template>
- <div id="basic_wrapper">
- <template src="basic">
- Hello!<span id="span">World</span>
- </template>
- </div>
- </div>
- </body>
- </rml>
- )";
- static const String span_address_inline_template = "span#span < p#text < div#basic_wrapper < div#template_parent < body#body.inline < #root#main";
- TEST_CASE("template")
- {
- Context* context = TestsShell::GetContext();
- REQUIRE(context);
- SUBCASE("body")
- {
- INFO("Expected warning: Body 'class' attribute overridden by template.");
- TestsShell::SetNumExpectedWarnings(1);
- ElementDocument* document = context->LoadDocumentFromMemory(document_body_template_rml);
- TestsShell::SetNumExpectedWarnings(0);
- document->Show();
- TestsShell::RenderLoop();
- Element* el_p = document->GetElementById("p");
- REQUIRE(el_p);
- CHECK(el_p->GetAddress() == p_address_body_template);
- document->Close();
- }
- SUBCASE("body+inline")
- {
- ElementDocument* document = context->LoadDocumentFromMemory(document_body_and_inline_template_rml);
- document->Show();
- TestsShell::RenderLoop();
- Element* el_p = document->GetElementById("p");
- Element* el_span = document->GetElementById("span");
- REQUIRE(el_p);
- REQUIRE(el_span);
- CHECK(el_p->GetAddress() == p_address_body_template);
- CHECK(el_span->GetAddress() == span_address_body_template);
- document->Close();
- }
- SUBCASE("inline")
- {
- ElementDocument* document = context->LoadDocumentFromMemory(document_inline_template_rml);
- document->Show();
- TestsShell::RenderLoop();
- Element* el_p = document->GetElementById("p");
- REQUIRE(el_p);
- CHECK(el_p->GetAddress() == p_address_inline_template);
- document->Close();
- }
- SUBCASE("inline+inline")
- {
- ElementDocument* document = context->LoadDocumentFromMemory(document_double_inline_template_rml);
- document->Show();
- TestsShell::RenderLoop();
- Element* el_p = document->GetElementById("p");
- Element* el_span = document->GetElementById("span");
- REQUIRE(el_p);
- REQUIRE(el_span);
- CHECK(el_p->GetAddress() == p_address_inline_template);
- CHECK(el_span->GetAddress() == span_address_inline_template);
- document->Close();
- }
- TestsShell::ShutdownShell();
- }
|