blob: ed9f69cd8d3975b3b674112c74e0f9b6c380a876 [file] [log] [blame]
bungeman@google.comcfcb1be2013-01-31 19:47:48 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
bungeman@google.comcfcb1be2013-01-31 19:47:48 +00008#include "Test.h"
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00009#include "TestClassDef.h"
bungeman@google.comcfcb1be2013-01-31 19:47:48 +000010#include "SkMD5.h"
11
12static bool digests_equal(const SkMD5::Digest& expectedDigest, const SkMD5::Digest& computedDigest) {
13 for (size_t i = 0; i < SK_ARRAY_COUNT(expectedDigest.data); ++i) {
14 if (expectedDigest.data[i] != computedDigest.data[i]) {
15 return false;
16 }
17 }
18 return true;
19}
20
21static void md5_test(const char* string, const SkMD5::Digest& expectedDigest, skiatest::Reporter* reporter) {
22 size_t len = strlen(string);
23
24 // All at once
25 {
26 SkMD5 context;
27 context.update(reinterpret_cast<const uint8_t*>(string), len);
28 SkMD5::Digest digest;
29 context.finish(digest);
30
31 REPORTER_ASSERT(reporter, digests_equal(expectedDigest, digest));
32 }
33
34 // One byte at a time.
35 {
36 SkMD5 context;
37 const uint8_t* data = reinterpret_cast<const uint8_t*>(string);
38 const uint8_t* end = reinterpret_cast<const uint8_t*>(string + len);
39 for (; data < end; ++data) {
40 context.update(data, 1);
41 }
42 SkMD5::Digest digest;
43 context.finish(digest);
44
45 REPORTER_ASSERT(reporter, digests_equal(expectedDigest, digest));
46 }
47}
48
49static struct MD5Test {
50 const char* message;
51 SkMD5::Digest digest;
52} md5_tests[] = {
53 // Reference tests from RFC1321 Section A.5 ( http://www.ietf.org/rfc/rfc1321.txt )
54 { "", {{ 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e }} },
55 { "a", {{ 0x0c, 0xc1, 0x75, 0xb9, 0xc0, 0xf1, 0xb6, 0xa8, 0x31, 0xc3, 0x99, 0xe2, 0x69, 0x77, 0x26, 0x61 }} },
56 { "abc", {{ 0x90, 0x01, 0x50, 0x98, 0x3c, 0xd2, 0x4f, 0xb0, 0xd6, 0x96, 0x3f, 0x7d, 0x28, 0xe1, 0x7f, 0x72 }} },
57 { "message digest", {{ 0xf9, 0x6b, 0x69, 0x7d, 0x7c, 0xb7, 0x93, 0x8d, 0x52, 0x5a, 0x2f, 0x31, 0xaa, 0xf1, 0x61, 0xd0 }} },
58 { "abcdefghijklmnopqrstuvwxyz", {{ 0xc3, 0xfc, 0xd3, 0xd7, 0x61, 0x92, 0xe4, 0x00, 0x7d, 0xfb, 0x49, 0x6c, 0xca, 0x67, 0xe1, 0x3b }} },
59 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", {{ 0xd1, 0x74, 0xab, 0x98, 0xd2, 0x77, 0xd9, 0xf5, 0xa5, 0x61, 0x1c, 0x2c, 0x9f, 0x41, 0x9d, 0x9f }} },
60 { "12345678901234567890123456789012345678901234567890123456789012345678901234567890", {{ 0x57, 0xed, 0xf4, 0xa2, 0x2b, 0xe3, 0xc9, 0x55, 0xac, 0x49, 0xda, 0x2e, 0x21, 0x07, 0xb6, 0x7a }} },
61};
62
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000063DEF_TEST(MD5, reporter) {
bungeman@google.comcfcb1be2013-01-31 19:47:48 +000064 for (size_t i = 0; i < SK_ARRAY_COUNT(md5_tests); ++i) {
65 md5_test(md5_tests[i].message, md5_tests[i].digest, reporter);
66 }
67}