/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-10-18 * Changed: 2023-03-25 * * */ #include #include using std::list; using std::pair; using std::string; using test::io::XmlParserTestWrapper; using testing::Test; namespace { class XmlParserTestWrapperTest : public Test { public: XmlParserTestWrapperTest() = default; ~XmlParserTestWrapperTest() override = default; }; TEST_F(XmlParserTestWrapperTest, readAttribute) { pair attribute = XmlParserTestWrapper::readAttribute(R"(name="tim")"); ASSERT_TRUE(attribute.first == "name"); ASSERT_TRUE(attribute.second == "tim"); attribute = XmlParserTestWrapper::readAttribute(R"(id="dialog_001")"); ASSERT_TRUE(attribute.first == "id"); ASSERT_TRUE(attribute.second == "dialog_001"); } TEST_F(XmlParserTestWrapperTest, readAttributes) { // first case string tag = R"()"; list> attributes = XmlParserTestWrapper::readAttributes(tag); ASSERT_EQ(2, attributes.size()); auto iterator = next(attributes.begin(), 0); ASSERT_TRUE(iterator->first == "version"); ASSERT_TRUE(iterator->second == "1.0"); iterator = next(attributes.begin(), 1); ASSERT_TRUE(iterator->first == "encoding"); ASSERT_TRUE(iterator->second == "UTF-8"); // second case tag = R"()"; attributes = XmlParserTestWrapper::readAttributes(tag); ASSERT_EQ(1, attributes.size()); iterator = next(attributes.begin(), 0); ASSERT_TRUE(iterator->first == "name"); ASSERT_TRUE(iterator->second == "test_machine"); } }