/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-12 * Changed: 2023-02-17 * * */ #include #include #include #include #include using namespace ls::std::core; using namespace ls::std::core::interface_type; using namespace ls::std::core::type; using namespace ls::std::io; using namespace ::std; using namespace test::io; namespace { class SerializableSectionPairRowTest : public ::testing::Test { protected: SerializableSectionPairRowTest() = default; ~SerializableSectionPairRowTest() override = default; void SetUp() override {} void TearDown() override {} }; class SerializableSectionPairRowSerializationTest : public ::testing::TestWithParam { protected: SerializableSectionPairRowSerializationTest() = default; ~SerializableSectionPairRowSerializationTest() override = default; }; TEST_F(SerializableSectionPairRowTest, constructor_no_reference) { SerializableSectionPairParameter parameter{}; EXPECT_THROW( { try { SerializableSectionPairRow serializable(parameter); } catch (const IllegalArgumentException &_exception) { throw; } }, IllegalArgumentException); } TEST_F(SerializableSectionPairRowTest, getClassName) { SerializableSectionPairParameter parameter{}; parameter.setValue(make_shared("tmp-key", SectionPairRowEnumType::SECTION_PAIR_ROW_SINGLE_VALUE)); ASSERT_STREQ("SerializableSectionPairRow", SerializableSectionPairRow{parameter}.getClassName().c_str()); } TEST_F(SerializableSectionPairRowTest, getValue) { SerializableSectionPairParameter parameter{}; parameter.setValue(make_shared("tmp-key", SectionPairRowEnumType::SECTION_PAIR_ROW_SINGLE_VALUE)); SerializableSectionPairRow serializable{parameter}; ASSERT_TRUE(serializable.getValue() != nullptr); } TEST_P(SerializableSectionPairRowSerializationTest, marshal_single_value) { string newLine = GetParam(); shared_ptr serializable = SerializableSectionPairRowProvider::createSingleValueForMarshal(newLine); byte_field expected = "favourite-color=blue" + newLine; byte_field actual = serializable->marshal(); ASSERT_STREQ(expected.c_str(), actual.c_str()); } TEST_P(SerializableSectionPairRowSerializationTest, marshal_list_value) { string newLine = GetParam(); shared_ptr serializable = SerializableSectionPairRowProvider::createListValueForMarshal(newLine); string expected = "favourite-colors:" + newLine + " blue" + newLine + " red" + newLine + " purple" + newLine; ASSERT_STREQ(expected.c_str(), serializable->marshal().c_str()); } TEST_P(SerializableSectionPairRowSerializationTest, unmarshal_single_value) { shared_ptr serializable = SerializableSectionPairRowProvider::createSingleValueForUnmarshal(GetParam()); serializable->unmarshal("favourite-color=blue"); shared_ptr row = dynamic_pointer_cast(serializable->getValue()); ASSERT_STREQ("favourite-color", row->getKey().c_str()); ASSERT_STREQ("blue", dynamic_pointer_cast(row->getValue())->get().c_str()); } TEST_P(SerializableSectionPairRowSerializationTest, unmarshal_list_value) { string newLine = GetParam(); shared_ptr serializable = SerializableSectionPairRowProvider::createListValueForUnmarshal(newLine); string data = "favourite-colors:" + newLine + " blue" + newLine + " red" + newLine + " purple" + newLine; serializable->unmarshal(data); shared_ptr row = dynamic_pointer_cast(serializable->getValue()); ASSERT_STREQ("favourite-colors", row->getKey().c_str()); ASSERT_EQ(3, dynamic_pointer_cast(row->getValue())->getSize()); ASSERT_STREQ("blue", dynamic_pointer_cast(row->getValue())->get(0).c_str()); ASSERT_STREQ("red", dynamic_pointer_cast(row->getValue())->get(1).c_str()); ASSERT_STREQ("purple", dynamic_pointer_cast(row->getValue())->get(2).c_str()); } INSTANTIATE_TEST_SUITE_P(SerializableSectionPairRowTest, SerializableSectionPairRowSerializationTest, ::testing::Values(NewLine::getUnixNewLine(), NewLine::getWindowsNewLine())); }