summaryrefslogtreecommitdiffstats
blob: 74da4742aebde6b280ff0b22647e6037c9d9d89c (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
/*
 * Copyright (c) 2013 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/extensions/TestFactoryRegistry.h>

#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadsParserTester.h>
#include <Swiften/Elements/Presence.h>
#include <Swiften/Elements/Idle.h>
#include <Swiften/Base/DateTime.h>

using namespace Swift;

class IdleParserTest : public CppUnit::TestFixture {
		CPPUNIT_TEST_SUITE(IdleParserTest);
		CPPUNIT_TEST(testParse_XepWhatever_Example1);
		CPPUNIT_TEST_SUITE_END();

	public:
		void testParse_XepWhatever_Example1() {
			PayloadsParserTester parser;
			CPPUNIT_ASSERT(parser.parse(
				"<presence from='juliet@capulet.com/balcony'>\n"
					"<show>away</show>\n"
					"<idle xmlns='urn:xmpp:idle:1' since='1969-07-21T02:56:15Z'/>\n"
				"</presence>\n"
			));

			Presence::ref presence = parser.getPayload<Presence>();
			CPPUNIT_ASSERT(presence);
			Idle::ref idle = presence->getPayload<Idle>();
			CPPUNIT_ASSERT(idle);
			CPPUNIT_ASSERT(stringToDateTime("1969-07-21T02:56:15Z") == idle->getSince());
		}
};