summaryrefslogtreecommitdiffstats
blob: c62c46a98b1b278d845cc8354759f43a73f894f6 (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include <Swiften/Base/ByteArray.h>
#include <QA/Checker/IO.h>

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

#include <Swiften/StringCodecs/MD5.h>
#include <Swiften/Base/ByteArray.h>

using namespace Swift;

class MD5Test : public CppUnit::TestFixture {
		CPPUNIT_TEST_SUITE(MD5Test);
		CPPUNIT_TEST(testGetHash_Empty);
		CPPUNIT_TEST(testGetHash_Alphabet);
		CPPUNIT_TEST(testIncrementalTest);
		CPPUNIT_TEST_SUITE_END();

	public:
		void testGetHash_Empty() {
			ByteArray result(MD5::getHash(createByteArray("")));

			CPPUNIT_ASSERT_EQUAL(createByteArray("\xd4\x1d\x8c\xd9\x8f\x00\xb2\x04\xe9\x80\x09\x98\xec\xf8\x42\x7e", 16), result);
		}

		void testGetHash_Alphabet() {
			ByteArray result(MD5::getHash(createByteArray("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789")));

			CPPUNIT_ASSERT_EQUAL(createByteArray("\xd1\x74\xab\x98\xd2\x77\xd9\xf5\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f", 16), result);
		}

		void testIncrementalTest() {
			MD5 testling;
			testling.update(createByteArray("ABCDEFGHIJKLMNOPQRSTUVWXYZ"));
			testling.update(createByteArray("abcdefghijklmnopqrstuvwxyz0123456789"));

			ByteArray result = testling.getHash();

			CPPUNIT_ASSERT_EQUAL(createByteArray("\xd1\x74\xab\x98\xd2\x77\xd9\xf5\xa5\x61\x1c\x2c\x9f\x41\x9d\x9f", 16), result);
		}
};

CPPUNIT_TEST_SUITE_REGISTRATION(MD5Test);