Let's make (git) history!

This commit is contained in:
2018-11-03 17:12:20 +01:00
commit 3bfebfe8a8
212 muutettua tiedostoa jossa 11970 lisäystä ja 0 poistoa

10
tests/parser.h Normal file
Näytä tiedosto

@ -0,0 +1,10 @@
#ifndef PARSER_H
#define PARSER_H
class parser
{
public:
parser();
};
#endif // PARSER_H

57
tests/request.cpp Normal file
Näytä tiedosto

@ -0,0 +1,57 @@
/* Copyright (c) 2018 Albert S.
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 <map>
#include <string>
#include <exception>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "../request.h"
TEST(Request, initGetMap)
{
Request r;
r.initGetMap("hi=there&bye=here");
ASSERT_TRUE(r.get("hi") == "there");
ASSERT_TRUE(r.get("bye") == "here");
Request r2;
r2.initGetMap("hi===");
ASSERT_TRUE(r2.get("hi") == "==");
Request r3;
r3.initGetMap("abcdef=aaa&&&&&dddddd=2");
ASSERT_TRUE(r3.get("abcdef") == "aaa");
ASSERT_TRUE(r3.get("dddddd") == "2");
ASSERT_TRUE(r3.get("&") == "");
Request xss;
xss.initGetMap("q=\"><b>x</b>\"");
ASSERT_TRUE(xss.get("q") != "");
ASSERT_TRUE(xss.get("q").find("<") == std::string::npos);
}
TEST(Request, initCookies)
{
Request r1;
r1.initCookies("aaaa=22aa");
ASSERT_TRUE(r1.cookie("aaaa") == "22aa");
}

40
tests/template.cpp Normal file
Näytä tiedosto

@ -0,0 +1,40 @@
/* Copyright (c) 2018 Albert S.
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 <map>
#include <string>
#include <exception>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "../utils.h"
#include "../config.h"
#include "../template.h"
#include "testconfigprovider.h"
class TemplateTest : public ::testing::Test
{
public:
Template *testTemplate;
TemplateTest()
{
Config config = TestConfigProvider::testConfig();
testTemplate = new Template{config};
}
};

Näytä tiedosto

@ -0,0 +1,32 @@
/* Copyright (c) 2018 Albert S.
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 "testconfigprovider.h"
TestConfigProvider::TestConfigProvider()
{
}
Config TestConfigProvider::testConfig()
{
ConfigReader configreader("config");
Config config = configreader.readConfig();
return config;
}

Näytä tiedosto

@ -0,0 +1,13 @@
#ifndef TESTCONFIGPROVIDER_H
#define TESTCONFIGPROVIDER_H
#include "../config.h"
class TestConfigProvider
{
public:
TestConfigProvider();
static Config testConfig();
};
#endif // TESTCONFIGPROVIDER_H

98
tests/utils.cpp Normal file
Näytä tiedosto

@ -0,0 +1,98 @@
/* Copyright (c) 2018 Albert S.
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 <map>
#include <string>
#include <exception>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "../utils.h"
TEST(Utils, hasKey)
{
std::map<std::string, int> testmap;
testmap["test"] = 23;
testmap["test2"] = 24;
ASSERT_TRUE(utils::hasKey(testmap, std::string{"test"}));
ASSERT_TRUE(utils::hasKey(testmap, std::string{"test2"}));
ASSERT_FALSE(utils::hasKey(testmap, std::string{"testthere"}));
ASSERT_FALSE(utils::hasKey(testmap, std::string{}));
}
TEST(Utils, urldecode)
{
std::string testr1 = "abc123=23";
std::string decoded = utils::urldecode(testr1);
ASSERT_TRUE(testr1 == decoded);
std::string testr2 = "a%20b";
std::string decoded2 = utils::urldecode(testr2);
std::string expected2 = "a b";
ASSERT_TRUE(decoded2 == expected2);
std::string testr3 = "a%";
std::string expected3 = "a%";
std::string decoded3 = utils::urldecode(testr3);
ASSERT_TRUE(testr3 == expected3);
}
TEST(UTILS, toUInt)
{
EXPECT_NO_THROW({
std::string number = "23";
unsigned int expected = 23;
unsigned int actual = utils::toUInt(number);
ASSERT_EQ(expected, actual);
});
ASSERT_THROW(utils::toUInt("abc"), std::invalid_argument);
ASSERT_THROW(utils::toUInt("999999999999999999999"), std::out_of_range);
}
TEST(UTILS, html_xss)
{
std::string input = "<b>";
std::string escaped = utils::html_xss(input);
ASSERT_TRUE(escaped.find('<') == std::string::npos);
}
TEST(UTILS, strreplace)
{
std::string input = "ABCHelloDEF";
std::string output = utils::strreplace(input, "Hello", "Bye");
ASSERT_TRUE("ABCByeDEF" == output);
input = "XXLeaveUsYY";
output = utils::strreplace(input, "NotFoundInString", "WithSomething");
ASSERT_TRUE(output == input);
input = "AA2233";
output = utils::strreplace(input, "A", "1");
ASSERT_TRUE(output == "112233");
input = "someTESTtest";
output = utils::strreplace(input, "TEST", "TEST");
ASSERT_TRUE(output == input);
}