summaryrefslogtreecommitdiffstats
blob: cad8754e50976c48c7809268fbdeaa417cbe6e2b (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
#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_SUITE_END();

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

			CPPUNIT_ASSERT_EQUAL(ByteArray("\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("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"));

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

CPPUNIT_TEST_SUITE_REGISTRATION(MD5Test);