1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-09
- * 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 SectionPairIdentifierValidatorTest : public Test
- {
- protected:
- SectionPairIdentifierValidatorTest() = default;
- ~SectionPairIdentifierValidatorTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- class SectionPairIdentifierValidatorTest_ValidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairIdentifierValidatorTest_ValidArgumentTest() = default;
- ~SectionPairIdentifierValidatorTest_ValidArgumentTest() override = default;
- };
- class SectionPairIdentifierValidatorTest_InvalidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairIdentifierValidatorTest_InvalidArgumentTest() = default;
- ~SectionPairIdentifierValidatorTest_InvalidArgumentTest() override = default;
- };
- TEST_F(SectionPairIdentifierValidatorTest, getClassName)
- {
- ASSERT_STREQ("SectionPairIdentifierValidator", SectionPairIdentifierValidator{"tmp-key"}.getClassName().c_str());
- }
- TEST_F(SectionPairIdentifierValidatorTest, getValidationRegex)
- {
- ASSERT_STREQ(R"([a-z]([a-z0-9-]){1,31})", SectionPairIdentifierValidator{"tmp-key"}.getValidationRegex().c_str());
- }
- TEST_P(SectionPairIdentifierValidatorTest_ValidArgumentTest, isValid)
- {
- ASSERT_TRUE(SectionPairIdentifierValidator{GetParam()}.isValid());
- }
- TEST_P(SectionPairIdentifierValidatorTest_InvalidArgumentTest, isValid_not_valid)
- {
- ASSERT_FALSE(SectionPairIdentifierValidator{GetParam()}.isValid());
- }
- INSTANTIATE_TEST_SUITE_P(ValidArgumentTest, SectionPairIdentifierValidatorTest_ValidArgumentTest, Values("color", "favourite-color", "age", "name"));
- INSTANTIATE_TEST_SUITE_P(InvalidArgumentTest, SectionPairIdentifierValidatorTest_InvalidArgumentTest, Values("_color", "8color", "colOr", "color:", "-color", "color-is-valid-but-too-long-because-it-exceeds-32-characters"));
- }
|