2019-04-22 08:28:10 +02:00
|
|
|
/* This file is part of gitea2rss.
|
2020-10-27 12:05:50 +01:00
|
|
|
* Copyright © 2019, 2020 tastytea <tastytea@tastytea.de>
|
2019-04-22 08:28:10 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gitea2rss.hpp"
|
2020-10-27 12:05:50 +01:00
|
|
|
#include <catch.hpp>
|
|
|
|
#include <string>
|
2019-04-22 08:28:10 +02:00
|
|
|
|
|
|
|
using std::string;
|
2020-10-27 12:05:50 +01:00
|
|
|
using namespace gitea2rss;
|
2019-04-22 08:28:10 +02:00
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
SCENARIO("escape_some_html() works as expected", "[strings]")
|
2019-04-22 08:28:10 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
WHEN("String with escape-able characters")
|
2019-04-22 08:28:10 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
const string escaped = escape_some_html("<p><small>.</small></p>");
|
2019-04-22 08:28:10 +02:00
|
|
|
|
2020-10-27 12:05:50 +01:00
|
|
|
THEN("The HTML is escaped")
|
2019-04-22 08:28:10 +02:00
|
|
|
{
|
2020-10-27 12:05:50 +01:00
|
|
|
REQUIRE(escaped
|
|
|
|
== "<p><small>.</small></p>");
|
2019-04-22 08:28:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|