summaryrefslogtreecommitdiffstats
blob: 06f3ae50c0168298378861173cd19db13440c544 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * Copyright (c) 2010-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/Elements/Storage.h>
#include <Swiften/Parser/PayloadParsers/PrivateStorageParser.h>
#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadParserTester.h>
#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadsParserTester.h>

using namespace Swift;

class PrivateStorageParserTest : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(PrivateStorageParserTest);
        CPPUNIT_TEST(testParse);
        CPPUNIT_TEST(testParse_NoPayload);
        CPPUNIT_TEST(testParse_MultiplePayloads);
        CPPUNIT_TEST_SUITE_END();

    public:
        PrivateStorageParserTest() {}

        void testParse() {
            PayloadsParserTester parser;

            CPPUNIT_ASSERT(parser.parse(
                "<query xmlns='jabber:iq:private'>"
                    "<storage xmlns='storage:bookmarks'>"
                        "<conference name='Swift' jid='swift@rooms.swift.im'>"
                            "<nick>Alice</nick>"
                        "</conference>"
                    "</storage>"
                "</query>"));

            std::shared_ptr<PrivateStorage> payload = std::dynamic_pointer_cast<PrivateStorage>(parser.getPayload());
            CPPUNIT_ASSERT(payload);
            std::shared_ptr<Storage> storage = std::dynamic_pointer_cast<Storage>(payload->getPayload());
            CPPUNIT_ASSERT(storage);
            CPPUNIT_ASSERT_EQUAL(std::string("Alice"), storage->getRooms()[0].nick);
            CPPUNIT_ASSERT_EQUAL(JID("swift@rooms.swift.im"), storage->getRooms()[0].jid);
        }

        void testParse_NoPayload() {
            PayloadsParserTester parser;

            CPPUNIT_ASSERT(parser.parse("<query xmlns='jabber:iq:private'/>"));

            std::shared_ptr<PrivateStorage> payload = std::dynamic_pointer_cast<PrivateStorage>(parser.getPayload());
            CPPUNIT_ASSERT(payload);
            CPPUNIT_ASSERT(!payload->getPayload());
        }

        void testParse_MultiplePayloads() {
            PayloadsParserTester parser;

            CPPUNIT_ASSERT(parser.parse(
                "<query xmlns='jabber:iq:private'>"
                    "<storage xmlns='storage:bookmarks'>"
                        "<conference name='Swift' jid='swift@rooms.swift.im'>"
                            "<nick>Alice</nick>"
                        "</conference>"
                    "</storage>"
                    "<storage xmlns='storage:bookmarks'>"
                        "<conference name='Swift' jid='swift@rooms.swift.im'>"
                            "<nick>Rabbit</nick>"
                        "</conference>"
                    "</storage>"
                "</query>"));

            std::shared_ptr<PrivateStorage> payload = std::dynamic_pointer_cast<PrivateStorage>(parser.getPayload());
            CPPUNIT_ASSERT(payload);
            std::shared_ptr<Storage> storage = std::dynamic_pointer_cast<Storage>(payload->getPayload());
            CPPUNIT_ASSERT(storage);
            CPPUNIT_ASSERT_EQUAL(std::string("Rabbit"), storage->getRooms()[0].nick);
        }

        void testParse_UnsupportedPayload() {
            PayloadParserFactoryCollection factories;
            PrivateStorageParser testling(&factories);
            PayloadParserTester parser(&testling);

            CPPUNIT_ASSERT(parser.parse(
                "<query xmlns='jabber:iq:private'>"
                    "<foo>Bar</foo>"
                "</query>"));

            CPPUNIT_ASSERT(!std::dynamic_pointer_cast<PrivateStorage>(testling.getPayload())->getPayload());
        }
};

CPPUNIT_TEST_SUITE_REGISTRATION(PrivateStorageParserTest);