| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- /*
- * 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/ComputedValues.h>
- #include <RmlUi/Core/Context.h>
- #include <RmlUi/Core/Element.h>
- #include <RmlUi/Core/ElementDocument.h>
- #include <RmlUi/Core/ElementText.h>
- #include <RmlUi/Core/Factory.h>
- #include <doctest.h>
- using namespace Rml;
- static const String document_xml_tags_in_css = R"(
- <rml>
- <head>
- <style>
- body {
- /* <body> */
- width: 200px;
- height: 200px;
- background-color: #00ff00;
- }
- </style>
- </head>
- <body>
- </body>
- </rml>
- )";
- static const String document_escaping = R"(
- <rml>
- <head>
- <style>
- p {
- font-family: LatoLatin;
- }
- </style>
- </head>
- <body>
- <p id="p">€€</p>
- </body>
- </rml>
- )";
- static const String document_escaping_tags = R"(
- <rml>
- <head>
- <style>
- * {
- font-family: LatoLatin;
- }
- </style>
- </head>
- <body><p>&lt;span/&gt;</p></body>
- </rml>
- )";
- TEST_CASE("XMLParser")
- {
- Context* context = TestsShell::GetContext();
- REQUIRE(context);
- // Style nodes should accept XML reserved characters, see https://github.com/mikke89/RmlUi/issues/341
- ElementDocument* document = context->LoadDocumentFromMemory(document_xml_tags_in_css);
- REQUIRE(document);
- document->Show();
- TestsShell::RenderLoop();
- const Colourb background = document->GetComputedValues().background_color();
- CHECK(background.red == 0);
- CHECK(background.green == 0xff);
- CHECK(background.blue == 0);
- CHECK(background.alpha == 0xff);
- document->Close();
- TestsShell::ShutdownShell();
- }
- TEST_CASE("XMLParser.escaping")
- {
- Context* context = TestsShell::GetContext();
- REQUIRE(context);
- ElementDocument* document = context->LoadDocumentFromMemory(document_escaping);
- REQUIRE(document);
- document->Show();
- TestsShell::RenderLoop();
- auto element = document->GetElementById("p");
- REQUIRE(element);
- CHECK(element->GetInnerRML() == "\xe2\x82\xac\xe2\x82\xac");
- document->Close();
- TestsShell::ShutdownShell();
- }
- TEST_CASE("XMLParser.escaping_tags")
- {
- Context* context = TestsShell::GetContext();
- REQUIRE(context);
- ElementDocument* document = context->LoadDocumentFromMemory(document_escaping_tags);
- REQUIRE(document);
- document->Show();
- TestsShell::RenderLoop();
- CHECK(document->GetNumChildren() == 1);
- CHECK(document->GetFirstElementChild()->GetTagName() == "#text");
- // Text-access should yield decoded value, while RML-access should yield encoded value
- CHECK(static_cast<ElementText*>(document->GetFirstChild())->GetText() == "<p><span/></p>");
- CHECK(document->GetInnerRML() == "<p>&lt;span/&gt;</p>");
- document->Close();
- TestsShell::ShutdownShell();
- }
- TEST_CASE("XMLParser.comments_and_cdata")
- {
- const String document_source_pre = R"(
- <rml>
- <head>
- <style>
- body {
- font-family: LatoLatin;
- }
- </style>
- </head>
- <body>)";
- const String document_source_post = R"(</body></rml>)";
- struct TestCase {
- String rml;
- String expected_parsed_rml;
- };
- const TestCase tests[] = {
- {"<!-- <xyz> -->", ""},
- {"<!--<xyz>-->", ""},
- {"<!-- <xyz> ->-->", ""},
- {"<!-- <xyz> -- >-->", ""},
- {"<!-- <xyz> --->", ""},
- {"<!-- <xyz> ---->", ""},
- {"<!--- <xyz> ---->", ""},
- {"<!-- <p> --><p>hello</p><!-- </p> -->", "<p>hello</p>"},
- {"<![CDATA[hello]]>", "hello"},
- {"<![CDATA[hello]]]>", "hello]"},
- {"<![CDATA[hello]]world]]>", "hello]]world"},
- {"<![CDATA[\"hello\"]]>", ""hello""},
- {"<![CDATA[<p>world</p>]]>", "<p>world</p>"},
- };
- Context* context = TestsShell::GetContext();
- REQUIRE(context);
- for (const TestCase& test : tests)
- {
- ElementDocument* document = context->LoadDocumentFromMemory(document_source_pre + test.rml + document_source_post);
- REQUIRE(document);
- CHECK(document->GetInnerRML() == test.expected_parsed_rml);
- document->Close();
- context->Update();
- }
- TestsShell::ShutdownShell();
- }
|