summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-08-29 08:46:09 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-08-29 08:46:09 (GMT)
commit901f620b6ccabde19ef460368028fa0464aa56c5 (patch)
tree3b492bf60b2ad56c953dde5f5b857b0d40171733 /Swiften
parent30bbee78103b3dc125eba0f81c25e5399032d6ef (diff)
downloadswift-901f620b6ccabde19ef460368028fa0464aa56c5.zip
swift-901f620b6ccabde19ef460368028fa0464aa56c5.tar.bz2
Added StanzaAckParserTest.
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/Parser/GenericElementParser.h1
-rw-r--r--Swiften/Parser/UnitTest/StanzaAckParserTest.cpp53
-rw-r--r--Swiften/SConscript1
3 files changed, 54 insertions, 1 deletions
diff --git a/Swiften/Parser/GenericElementParser.h b/Swiften/Parser/GenericElementParser.h
index f8743eb..ebd85dc 100644
--- a/Swiften/Parser/GenericElementParser.h
+++ b/Swiften/Parser/GenericElementParser.h
@@ -26,7 +26,6 @@ namespace Swift {
return stanza_;
}
- protected:
virtual boost::shared_ptr<ElementType> getElementGeneric() const {
return stanza_;
}
diff --git a/Swiften/Parser/UnitTest/StanzaAckParserTest.cpp b/Swiften/Parser/UnitTest/StanzaAckParserTest.cpp
new file mode 100644
index 0000000..39e67a7
--- /dev/null
+++ b/Swiften/Parser/UnitTest/StanzaAckParserTest.cpp
@@ -0,0 +1,53 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#include <cppunit/extensions/HelperMacros.h>
+#include <cppunit/extensions/TestFactoryRegistry.h>
+
+#include "Swiften/Parser/StanzaAckParser.h"
+#include "Swiften/Parser/PayloadParserFactoryCollection.h"
+#include "Swiften/Parser/UnitTest/ElementParserTester.h"
+
+using namespace Swift;
+
+class StanzaAckParserTest : public CppUnit::TestFixture {
+ CPPUNIT_TEST_SUITE(StanzaAckParserTest);
+ CPPUNIT_TEST(testParse);
+ CPPUNIT_TEST(testParse_Invalid);
+ CPPUNIT_TEST(testParse_Empty);
+ CPPUNIT_TEST_SUITE_END();
+
+ public:
+ void testParse() {
+ StanzaAckParser testling;
+ ElementParserTester parser(&testling);
+
+ CPPUNIT_ASSERT(parser.parse("<a h=\"12\" xmlns=\"urn:xmpp:sm:2\"/>"));
+
+ CPPUNIT_ASSERT(testling.getElementGeneric()->isValid());
+ CPPUNIT_ASSERT_EQUAL(12, testling.getElementGeneric()->getHandledStanzasCount());
+ }
+
+ void testParse_Invalid() {
+ StanzaAckParser testling;
+ ElementParserTester parser(&testling);
+
+ CPPUNIT_ASSERT(parser.parse("<a h=\"invalid\" xmlns=\"urn:xmpp:sm:2\"/>"));
+
+ CPPUNIT_ASSERT(!testling.getElementGeneric()->isValid());
+ }
+
+ void testParse_Empty() {
+ StanzaAckParser testling;
+ ElementParserTester parser(&testling);
+
+ CPPUNIT_ASSERT(parser.parse("<a xmlns=\"urn:xmpp:sm:2\"/>"));
+
+ CPPUNIT_ASSERT(!testling.getElementGeneric()->isValid());
+ }
+};
+
+CPPUNIT_TEST_SUITE_REGISTRATION(StanzaAckParserTest);
diff --git a/Swiften/SConscript b/Swiften/SConscript
index bd54e7c..3e5c35b 100644
--- a/Swiften/SConscript
+++ b/Swiften/SConscript
@@ -187,6 +187,7 @@ if env["SCONS_STAGE"] == "build" :
File("Parser/UnitTest/MessageParserTest.cpp"),
File("Parser/UnitTest/PayloadParserFactoryCollectionTest.cpp"),
File("Parser/UnitTest/PresenceParserTest.cpp"),
+ File("Parser/UnitTest/StanzaAckParserTest.cpp"),
File("Parser/UnitTest/SerializingParserTest.cpp"),
File("Parser/UnitTest/StanzaParserTest.cpp"),
File("Parser/UnitTest/StreamFeaturesParserTest.cpp"),