summaryrefslogtreecommitdiffstats
blob: 739363048f5bdd198b93c44475e9dce94d08e0e9 (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
/*
 * Copyright (c) 2014-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/Delay.h>
#include <Swiften/Elements/Forwarded.h>
#include <Swiften/Elements/Message.h>
#include <Swiften/Parser/PayloadParsers/MAMResultParser.h>
#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadsParserTester.h>

using namespace Swift;

class MAMResultParserTest : public CppUnit::TestFixture
{
        CPPUNIT_TEST_SUITE(MAMResultParserTest);
        CPPUNIT_TEST(testParse);
        CPPUNIT_TEST_SUITE_END();

    public:
        void testParse() {
            PayloadsParserTester parser;
            CPPUNIT_ASSERT(parser.parse(
                "<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 xmlns=\"jabber:client\" from=\"romeo@montague.lit/orchard\" to=\"juliet@capulet.lit/balcony\" type=\"chat\">"
                            "<body>Call me but love, and I'll be new baptized; Henceforth I never will be Romeo.</body>"
                        "</message>"
                    "</forwarded>"
                "</result>"));

            boost::shared_ptr<MAMResult> payload = parser.getPayload<MAMResult>();
            CPPUNIT_ASSERT(!!payload);
            CPPUNIT_ASSERT_EQUAL(std::string("28482-98726-73623"), payload->getID());
            CPPUNIT_ASSERT(payload->getQueryID());
            CPPUNIT_ASSERT_EQUAL(std::string("f27"), *payload->getQueryID());

            boost::shared_ptr<Forwarded> forwarded = payload->getPayload();
            CPPUNIT_ASSERT(forwarded->getDelay());
            CPPUNIT_ASSERT_EQUAL(std::string("2010-07-10T23:08:25Z"), dateTimeToString(forwarded->getDelay()->getStamp()));

            boost::shared_ptr<Message> message = boost::dynamic_pointer_cast<Message>(forwarded->getStanza());
            CPPUNIT_ASSERT(!!message);
            const std::string expectedBody = "Call me but love, and I'll be new baptized; Henceforth I never will be Romeo.";
            CPPUNIT_ASSERT_EQUAL(expectedBody, message->getBody().get());
            CPPUNIT_ASSERT_EQUAL(Message::Chat, message->getType());
            CPPUNIT_ASSERT_EQUAL(JID("juliet@capulet.lit/balcony"), message->getTo());
            CPPUNIT_ASSERT_EQUAL(JID("romeo@montague.lit/orchard"), message->getFrom());
        }
};

CPPUNIT_TEST_SUITE_REGISTRATION(MAMResultParserTest);