summaryrefslogtreecommitdiffstats
blob: 5b3867ce57453dc4b5002d55d78b685f83e712dc (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
/*
 * 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/Base/ByteArray.h>
#include <Swiften/FileTransfer/FileReadBytestream.h>

#include <SwifTools/Application/PlatformApplicationPathProvider.h>

using namespace Swift;

class FileReadBytestreamTest : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(FileReadBytestreamTest);
        CPPUNIT_TEST(testRead);
        CPPUNIT_TEST(testRead_Twice);
        CPPUNIT_TEST(testIsFinished_NotFinished);
        CPPUNIT_TEST(testIsFinished_IsFinished);
        CPPUNIT_TEST_SUITE_END();

    public:
        void setUp() {
            pathProvider = new PlatformApplicationPathProvider("FileReadBytestreamTest");
        }

        void tearDown() {
            delete pathProvider;
        }

        void testRead() {
            boost::shared_ptr<FileReadBytestream> testling(createTestling());

            boost::shared_ptr< std::vector<unsigned char> > result = testling->read(10);

            CPPUNIT_ASSERT(createByteArray("/*\n * Copy") == *result.get());
        }

        void testRead_Twice() {
            boost::shared_ptr<FileReadBytestream> testling(createTestling());

            testling->read(10);
            boost::shared_ptr< std::vector<unsigned char> > result = testling->read(10);

            CPPUNIT_ASSERT_EQUAL(std::string("right (c) "), byteArrayToString(*result));
        }

        void testIsFinished_NotFinished() {
            boost::shared_ptr<FileReadBytestream> testling(createTestling());

            testling->read(10);

            CPPUNIT_ASSERT(!testling->isFinished());
        }

        void testIsFinished_IsFinished() {
            boost::shared_ptr<FileReadBytestream> testling(createTestling());

            testling->read(4096);

            CPPUNIT_ASSERT(testling->isFinished());
        }

    private:
        FileReadBytestream* createTestling() {
            return new FileReadBytestream(pathProvider->getExecutableDir() / "FileReadBytestreamTest.cpp");
        }

        PlatformApplicationPathProvider* pathProvider;
};

CPPUNIT_TEST_SUITE_REGISTRATION(FileReadBytestreamTest);