#include "xml-writer.hh" #include #include namespace nix { /* ---------------------------------------------------------------------------- * XMLWriter * --------------------------------------------------------------------------*/ TEST(XMLWriter, emptyObject) { std::stringstream out; { XMLWriter t(false, out); } ASSERT_EQ(out.str(), "\n"); } TEST(XMLWriter, objectWithEmptyElement) { std::stringstream out; { XMLWriter t(false, out); t.openElement("foobar"); } ASSERT_EQ(out.str(), "\n"); } TEST(XMLWriter, objectWithElementWithAttrs) { std::stringstream out; { XMLWriter t(false, out); XMLAttrs attrs = { { "foo", "bar" } }; t.openElement("foobar", attrs); } ASSERT_EQ(out.str(), "\n"); } TEST(XMLWriter, objectWithElementWithEmptyAttrs) { std::stringstream out; { XMLWriter t(false, out); XMLAttrs attrs = {}; t.openElement("foobar", attrs); } ASSERT_EQ(out.str(), "\n"); } TEST(XMLWriter, objectWithElementWithAttrsEscaping) { std::stringstream out; { XMLWriter t(false, out); XMLAttrs attrs = { { "", "" } }; t.openElement("foobar", attrs); } // XXX: While "" is escaped, "" isn't which I think is a bug. ASSERT_EQ(out.str(), "\n=\"<value>\">"); } TEST(XMLWriter, objectWithElementWithAttrsIndented) { std::stringstream out; { XMLWriter t(true, out); XMLAttrs attrs = { { "foo", "bar" } }; t.openElement("foobar", attrs); } ASSERT_EQ(out.str(), "\n\n\n"); } TEST(XMLWriter, writeEmptyElement) { std::stringstream out; { XMLWriter t(false, out); t.writeEmptyElement("foobar"); } ASSERT_EQ(out.str(), "\n"); } TEST(XMLWriter, writeEmptyElementWithAttributes) { std::stringstream out; { XMLWriter t(false, out); XMLAttrs attrs = { { "foo", "bar" } }; t.writeEmptyElement("foobar", attrs); } ASSERT_EQ(out.str(), "\n"); } }