diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-03-28 15:46:49 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-03-28 15:46:49 (GMT) | 
| commit | f53a1ef582494458301b97bf6e546be52d7ff7e8 (patch) | |
| tree | 7571b5cbcbd8a8f1dd1c966c9045b6cb69f0e295 /Swiften/Parser/UnitTest/PresenceParserTest.cpp | |
| parent | 638345680d72ca6acaf123f2c8c1c391f696e371 (diff) | |
| download | swift-contrib-f53a1ef582494458301b97bf6e546be52d7ff7e8.zip swift-contrib-f53a1ef582494458301b97bf6e546be52d7ff7e8.tar.bz2  | |
Moving submodule contents back.
Diffstat (limited to 'Swiften/Parser/UnitTest/PresenceParserTest.cpp')
| -rw-r--r-- | Swiften/Parser/UnitTest/PresenceParserTest.cpp | 110 | 
1 files changed, 110 insertions, 0 deletions
diff --git a/Swiften/Parser/UnitTest/PresenceParserTest.cpp b/Swiften/Parser/UnitTest/PresenceParserTest.cpp new file mode 100644 index 0000000..5305161 --- /dev/null +++ b/Swiften/Parser/UnitTest/PresenceParserTest.cpp @@ -0,0 +1,110 @@ +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/extensions/TestFactoryRegistry.h> + +#include "Swiften/Parser/PresenceParser.h" +#include "Swiften/Parser/PayloadParserFactoryCollection.h" +#include "Swiften/Parser/UnitTest/StanzaParserTester.h" + +using namespace Swift; + +class PresenceParserTest : public CppUnit::TestFixture +{ +		CPPUNIT_TEST_SUITE(PresenceParserTest); +		CPPUNIT_TEST(testParse_Available); +		CPPUNIT_TEST(testParse_Unavailable); +		CPPUNIT_TEST(testParse_Subscribe); +		CPPUNIT_TEST(testParse_Subscribed); +		CPPUNIT_TEST(testParse_Unsubscribe); +		CPPUNIT_TEST(testParse_Unsubscribed); +		CPPUNIT_TEST(testParse_Probe); +		CPPUNIT_TEST(testParse_Error); +		CPPUNIT_TEST_SUITE_END(); + +	public: +		PresenceParserTest() {} + +		void setUp() { +			factoryCollection_ = new PayloadParserFactoryCollection(); +		} + +		void tearDown() { +			delete factoryCollection_; +		} + +		void testParse_Available() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Available, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Unavailable() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"unavailable\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Unavailable, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Probe() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"probe\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Probe, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Subscribe() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"subscribe\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Subscribe, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Subscribed() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"subscribed\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Subscribed, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Unsubscribe() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"unsubscribe\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Unsubscribe, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Unsubscribed() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"unsubscribed\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Unsubscribed, testling.getStanzaGeneric()->getType()); +		} + +		void testParse_Error() { +			PresenceParser testling(factoryCollection_); +			StanzaParserTester parser(&testling); + +			CPPUNIT_ASSERT(parser.parse("<presence type=\"error\"/>")); + +			CPPUNIT_ASSERT_EQUAL(Presence::Error, testling.getStanzaGeneric()->getType()); +		} + +		private: +			PayloadParserFactoryCollection* factoryCollection_; +}; + +CPPUNIT_TEST_SUITE_REGISTRATION(PresenceParserTest);  | 
 Swift