summaryrefslogtreecommitdiffstats
blob: b90af6eb4f51609592f6bd74c07c127311c5bcda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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(12U, 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);