mirror of
https://github.com/KingDuckZ/kamokan.git
synced 2025-10-02 15:00:02 +00:00
Fix calculations and add a test for the html escaping code.
This commit is contained in:
parent
3de5e3fd27
commit
6bee1af080
3 changed files with 76 additions and 10 deletions
|
@ -16,6 +16,7 @@ add_executable(${PROJECT_NAME}
|
|||
../data/UTF-8-test.txt.c
|
||||
test_invalid_utf8_get.cpp
|
||||
test_mime_split.cpp
|
||||
test_html_escape.cpp
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
|
|
57
test/unit/test_html_escape.cpp
Normal file
57
test/unit/test_html_escape.cpp
Normal file
|
@ -0,0 +1,57 @@
|
|||
/* Copyright 2017, Michele Santullo
|
||||
* This file is part of "tawashi".
|
||||
*
|
||||
* "tawashi" 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, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* "tawashi" 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 "tawashi". If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "catch.hpp"
|
||||
#include "escapist.hpp"
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <boost/utility/string_view.hpp>
|
||||
|
||||
TEST_CASE ("Test html escaping", "[security][escape]") {
|
||||
using boost::string_view;
|
||||
using StrPair = std::pair<string_view, string_view>;
|
||||
|
||||
const std::vector<StrPair> test_data {
|
||||
{"", ""},
|
||||
{"a", "a"},
|
||||
{"&", "&"},
|
||||
{">", ">"},
|
||||
{"<", "<"},
|
||||
{"/", "/"},
|
||||
{"\"", """},
|
||||
{"'", "'"},
|
||||
{">a", ">a"},
|
||||
{"a>", "a>"},
|
||||
{"abcd", "abcd"},
|
||||
{"abcdefgh", "abcdefgh"},
|
||||
{"abcdefghi", "abcdefghi"},
|
||||
{"abcdefgh&", "abcdefgh&"},
|
||||
{"ab&defghi", "ab&defghi"},
|
||||
{"<>&123''", "<>&123''"},
|
||||
{"</body>", "</body>"},
|
||||
{"&\"lol\"&", "&"lol"&"}
|
||||
};
|
||||
|
||||
tawashi::Escapist esc;
|
||||
for (const auto& p : test_data) {
|
||||
const auto& in = p.first;
|
||||
const auto& expected = p.second;
|
||||
std::string out = esc.escape_html(in);
|
||||
CHECK(out == expected);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue