123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-10
- * Changed: 2023-02-17
- *
- * */
- #include <gtest/gtest.h>
- #include <ls-std/ls-std-core.hpp>
- #include <ls-std/ls-std-io.hpp>
- using namespace ls::std::core;
- using namespace ls::std::core::type;
- using namespace ls::std::io;
- using namespace ::std;
- namespace
- {
- class SectionPairRowSingleValueTest : public ::testing::Test
- {
- protected:
- SectionPairRowSingleValueTest() = default;
- ~SectionPairRowSingleValueTest() override = default;
- void SetUp() override
- {}
- void TearDown() override
- {}
- };
- TEST_F(SectionPairRowSingleValueTest, constructor_empty_value)
- {
- EXPECT_THROW(
- {
- try
- {
- SectionPairRowSingleValue value{""};
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(SectionPairRowSingleValueTest, constructor_invalid_value)
- {
- EXPECT_THROW(
- {
- try
- {
- SectionPairRowSingleValue value{"=33"};
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(SectionPairRowSingleValueTest, get)
- {
- SectionPairRowSingleValue value{"blue"};
- ASSERT_STREQ("blue", value.get().c_str());
- }
- TEST_F(SectionPairRowSingleValueTest, getClassName)
- {
- ASSERT_STREQ("SectionPairRowSingleValue", SectionPairRowSingleValue{"blue"}.getClassName().c_str());
- }
- TEST_F(SectionPairRowSingleValueTest, getType)
- {
- SectionPairRowSingleValue value{"blue"};
- ASSERT_EQ(ls::std::io::SECTION_PAIR_ROW_SINGLE_VALUE, value.getType());
- }
- TEST_F(SectionPairRowSingleValueTest, marshal)
- {
- shared_ptr<SectionPairRowSingleValue> value = make_shared<SectionPairRowSingleValue>("empty");
- byte_field expected = "empty" + NewLine::get();
- byte_field actual = value->marshal();
- ASSERT_STREQ(expected.c_str(), actual.c_str());
- }
- TEST_F(SectionPairRowSingleValueTest, set_empty_value)
- {
- SectionPairRowSingleValue value{"empty"};
- EXPECT_THROW(
- {
- try
- {
- value.set("");
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(SectionPairRowSingleValueTest, set_invalid_value)
- {
- SectionPairRowSingleValue value{"empty"};
- EXPECT_THROW(
- {
- try
- {
- value.set("=33");
- }
- catch (const IllegalArgumentException &_exception)
- {
- throw;
- }
- },
- IllegalArgumentException);
- }
- TEST_F(SectionPairRowSingleValueTest, unmarshal)
- {
- shared_ptr<SectionPairRowSingleValue> value = make_shared<SectionPairRowSingleValue>("empty");
- value->unmarshal("blue");
- ASSERT_STREQ("blue", value->get().c_str());
- }
- }
|