summaryrefslogtreecommitdiffstats
blob: 82f43f63f561b5571826a20055ceba62e4e011aa (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
/*
 * Copyright (c) 2010-2013 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

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

#include <Swiften/Component/ComponentHandshakeGenerator.h>
#include <Swiften/Crypto/CryptoProvider.h>
#include <Swiften/Crypto/PlatformCryptoProvider.h>

using namespace Swift;

class ComponentHandshakeGeneratorTest : public CppUnit::TestFixture {
        CPPUNIT_TEST_SUITE(ComponentHandshakeGeneratorTest);
        CPPUNIT_TEST(testGetHandshake);
        CPPUNIT_TEST(testGetHandshake_SpecialChars);
        CPPUNIT_TEST_SUITE_END();

    public:
        void setUp() {
            crypto = boost::shared_ptr<CryptoProvider>(PlatformCryptoProvider::create());
        }

        void testGetHandshake() {
            std::string result = ComponentHandshakeGenerator::getHandshake("myid", "mysecret", crypto.get());
            CPPUNIT_ASSERT_EQUAL(std::string("4011cd31f9b99ac089a0cd7ce297da7323fa2525"), result);
        }

        void testGetHandshake_SpecialChars() {
            std::string result = ComponentHandshakeGenerator::getHandshake("&<", ">'\"", crypto.get());
            CPPUNIT_ASSERT_EQUAL(std::string("33631b3e0aaeb2a11c4994c917919324028873fe"), result);
        }

    private:
        boost::shared_ptr<CryptoProvider> crypto;
};

CPPUNIT_TEST_SUITE_REGISTRATION(ComponentHandshakeGeneratorTest);