123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-20
- * Changed: 2023-02-22
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <ls-std/ls-std-io.hpp>
- #include <string>
- using namespace ls::std::core;
- using namespace ls::std::io;
- using namespace ::std;
- using namespace ::testing;
- namespace
- {
- class SectionPairRowValidatorTest : public Test
- {
- protected:
- SectionPairRowValidatorTest() = default;
- ~SectionPairRowValidatorTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- class SectionPairRowValidatorTest_ValidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairRowValidatorTest_ValidArgumentTest() = default;
- ~SectionPairRowValidatorTest_ValidArgumentTest() override = default;
- };
- class SectionPairRowValidatorTest_InvalidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairRowValidatorTest_InvalidArgumentTest() = default;
- ~SectionPairRowValidatorTest_InvalidArgumentTest() override = default;
- };
- TEST_F(SectionPairRowValidatorTest, getClassName)
- {
- ASSERT_STREQ("SectionPairRowValidator", SectionPairRowValidator{"empty"}.getClassName().c_str());
- }
- TEST_F(SectionPairRowValidatorTest, getValidationRegex)
- {
- string expected = R"((([a-z]([a-z0-9-]){1,31})={1}([a-zA-Z0-9\-_#!?\[\]\{\}\(\)\$ۤ<>+:;., \*\/"]{1,32}){1}($|\n{1}|\r{1}\n{1}))|(((((([a-z]([a-z0-9-]){1,31}):{1})((\n{1})|(\r{1}\n{1})))( {2}[a-zA-Z0-9\-_#!?\[\]\{\}\(\)\$ۤ<>+:;., \*\/"]{1,32}((\n{1})|(\r{1}\n{1})))){1}(( {2}[a-zA-Z0-9\-_#!?\[\]\{\}\(\)\$ۤ<>+:;., \*\/"]{1,32}((\n{1})|(\r{1}\n{1})))*))))";
- ASSERT_STREQ(expected.c_str(), SectionPairRowValidator::getValidationRegex().c_str());
- }
- TEST_P(SectionPairRowValidatorTest_ValidArgumentTest, isValid)
- {
- ASSERT_TRUE(SectionPairRowValidator{GetParam()}.isValid());
- }
- TEST_P(SectionPairRowValidatorTest_InvalidArgumentTest, isValid_not_valid)
- {
- ASSERT_FALSE(SectionPairRowValidator{GetParam()}.isValid());
- }
- INSTANTIATE_TEST_SUITE_P(ValidArgumentTest, SectionPairRowValidatorTest_ValidArgumentTest, Values("favourite-color=blue\n", "color=red\r\n", "colors:\n red\n blue\n", "colors:\r\n red\r\n yellow\r\n", "graphics-card=GTX 720\n"));
- INSTANTIATE_TEST_SUITE_P(InvalidArgumentTest, SectionPairRowValidatorTest_InvalidArgumentTest, Values("color blue", "a row\nand so on"));
- }
|