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

/*
 * Copyright (c) 2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

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

#include <Swiften/Base/DateTime.h>
#include <Swiften/Elements/Idle.h>
#include <Swiften/Elements/Presence.h>
#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadsParserTester.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());
		}
};