summaryrefslogtreecommitdiffstats
blob: f9057f837166c2457de8ff3a3dfc7ac1fc91c351 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <vector>

#include <boost/bind.hpp>

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

#include <Swiften/Base/ByteArray.h>
#include <Swiften/Client/DummyStanzaChannel.h>
#include <Swiften/FileTransfer/ByteArrayReadBytestream.h>
#include <Swiften/FileTransfer/IBBSendSession.h>
#include <Swiften/Queries/IQRouter.h>

using namespace Swift;

class IBBSendSessionTest : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(IBBSendSessionTest);
        CPPUNIT_TEST(testStart);
        CPPUNIT_TEST(testStart_ResponseStartsSending);
        CPPUNIT_TEST(testResponseContinuesSending);
        CPPUNIT_TEST(testRespondToAllFinishes);
        CPPUNIT_TEST(testErrorResponseFinishesWithError);
        CPPUNIT_TEST(testStopDuringSessionCloses);
        CPPUNIT_TEST(testStopAfterFinishedDoesNotClose);
        CPPUNIT_TEST(testDataStreamPauseStopsSendingData);
        CPPUNIT_TEST(testDataStreamResumeAfterPauseSendsData);
        CPPUNIT_TEST(testDataStreamResumeBeforePauseDoesNotSendData);
        CPPUNIT_TEST(testDataStreamResumeAfterResumeDoesNotSendData);

        CPPUNIT_TEST_SUITE_END();

    public:
        void setUp() {
            stanzaChannel = new DummyStanzaChannel();
            iqRouter = new IQRouter(stanzaChannel);
            bytestream = std::make_shared<ByteArrayReadBytestream>(createByteArray("abcdefg"));
            finished = false;
        }

        void tearDown() {
            delete iqRouter;
            delete stanzaChannel;
        }

        void testStart() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(1234);

            testling->start();

            CPPUNIT_ASSERT_EQUAL(1, static_cast<int>(stanzaChannel->sentStanzas.size()));
            CPPUNIT_ASSERT(stanzaChannel->isRequestAtIndex<IBB>(0, JID("foo@bar.com/baz"), IQ::Set));
            IBB::ref ibb = stanzaChannel->sentStanzas[0]->getPayload<IBB>();
            CPPUNIT_ASSERT_EQUAL(IBB::Open, ibb->getAction());
            CPPUNIT_ASSERT_EQUAL(1234, ibb->getBlockSize());
            CPPUNIT_ASSERT_EQUAL(std::string("myid"), ibb->getStreamID());
        }

        void testStart_ResponseStartsSending() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(3);
            testling->start();

            stanzaChannel->onIQReceived(createIBBResult());

            CPPUNIT_ASSERT_EQUAL(2, static_cast<int>(stanzaChannel->sentStanzas.size()));
            CPPUNIT_ASSERT(stanzaChannel->isRequestAtIndex<IBB>(1, JID("foo@bar.com/baz"), IQ::Set));
            IBB::ref ibb = stanzaChannel->sentStanzas[1]->getPayload<IBB>();
            CPPUNIT_ASSERT_EQUAL(IBB::Data, ibb->getAction());
            CPPUNIT_ASSERT(createByteArray("abc") == ibb->getData());
            CPPUNIT_ASSERT_EQUAL(0, ibb->getSequenceNumber());
            CPPUNIT_ASSERT_EQUAL(std::string("myid"), ibb->getStreamID());
        }

        void testResponseContinuesSending() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());

            CPPUNIT_ASSERT_EQUAL(3, static_cast<int>(stanzaChannel->sentStanzas.size()));
            CPPUNIT_ASSERT(stanzaChannel->isRequestAtIndex<IBB>(2, JID("foo@bar.com/baz"), IQ::Set));
            IBB::ref ibb = stanzaChannel->sentStanzas[2]->getPayload<IBB>();
            CPPUNIT_ASSERT_EQUAL(IBB::Data, ibb->getAction());
            CPPUNIT_ASSERT(createByteArray("def") == ibb->getData());
            CPPUNIT_ASSERT_EQUAL(1, ibb->getSequenceNumber());
            CPPUNIT_ASSERT_EQUAL(std::string("myid"), ibb->getStreamID());
        }

        void testRespondToAllFinishes() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());

            CPPUNIT_ASSERT(finished);
            CPPUNIT_ASSERT(!error);
        }

        void testErrorResponseFinishesWithError() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(IQ::createError(JID("baz@fum.com/foo"), stanzaChannel->sentStanzas[0]->getTo(), stanzaChannel->sentStanzas[0]->getID()));

            CPPUNIT_ASSERT(finished);
            CPPUNIT_ASSERT(error);
        }

        void testStopDuringSessionCloses() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(3);
            testling->start();
            testling->stop();

            CPPUNIT_ASSERT_EQUAL(2, static_cast<int>(stanzaChannel->sentStanzas.size()));
            CPPUNIT_ASSERT(stanzaChannel->isRequestAtIndex<IBB>(1, JID("foo@bar.com/baz"), IQ::Set));
            IBB::ref ibb = stanzaChannel->sentStanzas[1]->getPayload<IBB>();
            CPPUNIT_ASSERT_EQUAL(IBB::Close, ibb->getAction());
            CPPUNIT_ASSERT_EQUAL(std::string("myid"), ibb->getStreamID());
            CPPUNIT_ASSERT(finished);
            CPPUNIT_ASSERT(!error);
        }

        void testStopAfterFinishedDoesNotClose() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            testling->setBlockSize(16);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            CPPUNIT_ASSERT(finished);

            testling->stop();

            CPPUNIT_ASSERT_EQUAL(2, static_cast<int>(stanzaChannel->sentStanzas.size()));
        }

        void testDataStreamPauseStopsSendingData() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            bytestream->setDataComplete(false);
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());

            CPPUNIT_ASSERT(!finished);
            CPPUNIT_ASSERT(!error);

            CPPUNIT_ASSERT_EQUAL(4, static_cast<int>(stanzaChannel->sentStanzas.size()));
        }

        void testDataStreamResumeAfterPauseSendsData() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            bytestream->setDataComplete(false);
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());

            bytestream->addData(createByteArray("xyz"));

            CPPUNIT_ASSERT_EQUAL(5, static_cast<int>(stanzaChannel->sentStanzas.size()));
        }

        void testDataStreamResumeBeforePauseDoesNotSendData() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            bytestream->setDataComplete(false);
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());

            bytestream->addData(createByteArray("xyz"));

            CPPUNIT_ASSERT_EQUAL(2, static_cast<int>(stanzaChannel->sentStanzas.size()));
        }

        void testDataStreamResumeAfterResumeDoesNotSendData() {
            std::shared_ptr<IBBSendSession> testling = createSession("foo@bar.com/baz");
            bytestream->setDataComplete(false);
            testling->setBlockSize(3);
            testling->start();
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());
            stanzaChannel->onIQReceived(createIBBResult());

            bytestream->addData(createByteArray("xyz"));
            bytestream->addData(createByteArray("xuv"));

            CPPUNIT_ASSERT_EQUAL(5, static_cast<int>(stanzaChannel->sentStanzas.size()));
        }

    private:
        IQ::ref createIBBResult() {
            return IQ::createResult(JID("baz@fum.com/dum"), stanzaChannel->sentStanzas[stanzaChannel->sentStanzas.size()-1]->getTo(), stanzaChannel->sentStanzas[stanzaChannel->sentStanzas.size()-1]->getID(), std::shared_ptr<IBB>());
        }

    private:
        std::shared_ptr<IBBSendSession> createSession(const std::string& to) {
            std::shared_ptr<IBBSendSession> session(new IBBSendSession("myid", JID(), JID(to), bytestream, iqRouter));
            session->onFinished.connect(boost::bind(&IBBSendSessionTest::handleFinished, this, _1));
            return session;
        }

        void handleFinished(boost::optional<FileTransferError> error) {
            finished = true;
            this->error = error;
        }

    private:
        DummyStanzaChannel* stanzaChannel;
        IQRouter* iqRouter;
        bool finished;
        boost::optional<FileTransferError> error;
        std::shared_ptr<ByteArrayReadBytestream> bytestream;
};

CPPUNIT_TEST_SUITE_REGISTRATION(IBBSendSessionTest);