12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-21
- * Changed: 2023-02-22
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std-io-test.hpp>
- #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 test::io;
- using namespace ::testing;
- namespace
- {
- class SectionPairDocumentValidatorTest : public Test
- {
- protected:
- SectionPairDocumentValidatorTest() = default;
- ~SectionPairDocumentValidatorTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- class SectionPairDocumentValidatorTest_LineBreakTest : public TestWithParam<string>
- {
- protected:
- SectionPairDocumentValidatorTest_LineBreakTest() = default;
- ~SectionPairDocumentValidatorTest_LineBreakTest() override = default;
- };
- class SectionPairDocumentValidatorTest_ValidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairDocumentValidatorTest_ValidArgumentTest() = default;
- ~SectionPairDocumentValidatorTest_ValidArgumentTest() override = default;
- };
- class SectionPairDocumentValidatorTest_InvalidArgumentTest : public TestWithParam<string>
- {
- protected:
- SectionPairDocumentValidatorTest_InvalidArgumentTest() = default;
- ~SectionPairDocumentValidatorTest_InvalidArgumentTest() override = default;
- };
- TEST_F(SectionPairDocumentValidatorTest, getClassName)
- {
- ASSERT_STREQ("SectionPairDocumentValidator", SectionPairDocumentValidator{"tmp-key"}.getClassName().c_str());
- }
- TEST_P(SectionPairDocumentValidatorTest_LineBreakTest, isValid)
- {
- ASSERT_TRUE(SectionPairDocumentValidator{GetParam()}.isValid());
- }
- TEST_P(SectionPairDocumentValidatorTest_ValidArgumentTest, isValid)
- {
- ASSERT_TRUE(SectionPairDocumentValidator{GetParam()}.isValid());
- }
- TEST_P(SectionPairDocumentValidatorTest_InvalidArgumentTest, isValid_not_valid)
- {
- ASSERT_FALSE(SectionPairDocumentValidator{GetParam()}.isValid());
- }
- INSTANTIATE_TEST_SUITE_P(LineBreakTest, SectionPairDocumentValidatorTest_LineBreakTest, Values(SectionPairDocumentProvider::createSerializedDocument(NewLine::getWindowsNewLine()), SectionPairDocumentProvider::createSerializedDocument(NewLine::getUnixNewLine())));
- INSTANTIATE_TEST_SUITE_P(InvalidArgumentTest, SectionPairDocumentValidatorTest_InvalidArgumentTest, Values("\n[general]\n\ncolors:\nblue\n"));
- INSTANTIATE_TEST_SUITE_P(ValidArgumentTest, SectionPairDocumentValidatorTest_ValidArgumentTest, Values(SectionPairDocumentProvider::createSerializedDocumentComputerExample(NewLine::get())));
- }
|