123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-11
- * Changed: 2023-02-17
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <ls-std/ls-std-io.hpp>
- #include <memory>
- using namespace ls::std::core;
- using namespace ls::std::io;
- using namespace ::std;
- namespace
- {
- class SerializableSectionPairRowListValueTest : public ::testing::Test
- {
- protected:
- SerializableSectionPairRowListValueTest() = default;
- ~SerializableSectionPairRowListValueTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(SerializableSectionPairRowListValueTest, constructor_no_reference)
- {
- EXPECT_THROW(
- {
- try
- {
- SerializableSectionPairRowListValue serializable(nullptr);
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(SerializableSectionPairRowListValueTest, getClassName)
- {
- ASSERT_STREQ("SerializableSectionPairRowListValue", SerializableSectionPairRowListValue{make_shared<SectionPairRowListValue>()}.getClassName().c_str());
- }
- TEST_F(SerializableSectionPairRowListValueTest, getValue)
- {
- shared_ptr<SectionPairRowListValue> value = make_shared<SectionPairRowListValue>();
- SerializableSectionPairRowListValue serializable(value);
- ASSERT_TRUE(value == serializable.getValue());
- }
- TEST_F(SerializableSectionPairRowListValueTest, marshal)
- {
- shared_ptr<SectionPairRowListValue> value = make_shared<SectionPairRowListValue>();
- value->add("Drumming");
- value->add("Reading");
- value->add("Coding");
- SerializableSectionPairRowListValue serializable(value);
- ::std::string expected = " Drumming" + NewLine::get() + " Reading" + NewLine::get() + " Coding" + NewLine::get();
- ASSERT_STREQ(expected.c_str(), serializable.marshal().c_str());
- }
- TEST_F(SerializableSectionPairRowListValueTest, unmarshal)
- {
- shared_ptr<SectionPairRowListValue> value = make_shared<SectionPairRowListValue>();
- SerializableSectionPairRowListValue serializable(value);
- ::std::string serializedListValue = " Drumming" + NewLine::get() + " Reading" + NewLine::get() + " Coding" + NewLine::get();
- serializable.unmarshal(serializedListValue);
- ASSERT_EQ(3, value->getSize());
- ASSERT_STREQ("Drumming", value->get(0).c_str());
- ASSERT_STREQ("Reading", value->get(1).c_str());
- ASSERT_STREQ("Coding", value->get(2).c_str());
- }
- TEST_F(SerializableSectionPairRowListValueTest, unmarshal_empty_string)
- {
- SerializableSectionPairRowListValue serializable(make_shared<SectionPairRowListValue>());
- EXPECT_THROW(
- {
- try
- {
- serializable.unmarshal("");
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- }
|