summaryrefslogtreecommitdiffstats
blob: 875abdc33e187faff4f8776cf5cad83274df92a2 (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
54
55
56
57
58
59
60
61
62
/*
 * Copyright (c) 2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <boost/smart_ptr/make_shared.hpp>

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

#include <Swiften/Base/DateTime.h>
#include <Swiften/Elements/Delay.h>
#include <Swiften/Elements/MAMResult.h>
#include <Swiften/Elements/Message.h>
#include <Swiften/Serializer/PayloadSerializers/MAMResultSerializer.h>
#include <Swiften/Serializer/PayloadSerializers/FullPayloadSerializerCollection.h>

using namespace Swift;

class MAMResultSerializerTest : public CppUnit::TestFixture {
		CPPUNIT_TEST_SUITE(MAMResultSerializerTest);
		CPPUNIT_TEST(testSerialize);
		CPPUNIT_TEST_SUITE_END();

	public:
		void testSerialize() {
			MAMResultSerializer serializer(&serializers);

			boost::shared_ptr<Message> message(boost::make_shared<Message>());
			message->setType(Message::Chat);
			message->setTo(JID("juliet@capulet.lit/balcony"));
			message->setFrom(JID("romeo@montague.lit/orchard"));
			message->setBody("Call me but love, and I'll be new baptized; Henceforth I never will be Romeo.");

			boost::shared_ptr<Forwarded> forwarded(boost::make_shared<Forwarded>());
			forwarded->setStanza(message);
			forwarded->setDelay(boost::make_shared<Delay>(stringToDateTime(std::string("2010-07-10T23:08:25Z"))));

			boost::shared_ptr<MAMResult> result(boost::make_shared<MAMResult>());
			result->setID("28482-98726-73623");
			result->setQueryID(std::string("f27"));
			result->setPayload(forwarded);

			std::string expectedResult = 
				"<result id=\"28482-98726-73623\" queryid=\"f27\" xmlns=\"urn:xmpp:mam:0\">"
					"<forwarded xmlns=\"urn:xmpp:forward:0\">"
						"<delay stamp=\"2010-07-10T23:08:25Z\" xmlns=\"urn:xmpp:delay\"/>"
						"<message from=\"romeo@montague.lit/orchard\" to=\"juliet@capulet.lit/balcony\" type=\"chat\" xmlns=\"jabber:client\">"
							"<body>Call me but love, and I'll be new baptized; Henceforth I never will be Romeo.</body>"
						"</message>"
					"</forwarded>"
				"</result>";

			CPPUNIT_ASSERT_EQUAL(expectedResult, serializer.serialize(result));
		}

	private:
		FullPayloadSerializerCollection serializers;
};

CPPUNIT_TEST_SUITE_REGISTRATION(MAMResultSerializerTest);