blob: 923f303509fae90b8395f2d0ff1d074832bdf603 [file] [log] [blame]
epoger@google.com4adfab82012-11-02 18:35:04 +00001/*
2 * Copyright 2012 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 */
epoger@google.com31114c62012-12-12 17:22:23 +00007
epoger@google.com4adfab82012-11-02 18:35:04 +00008#include "SkChecksum.h"
commit-bot@chromium.org2b0f7c32014-01-09 17:48:48 +00009#include "SkRandom.h"
10#include "Test.h"
epoger@google.com0bba6bd2012-12-07 15:12:01 +000011
epoger@google.com4adfab82012-11-02 18:35:04 +000012
commit-bot@chromium.org2b0f7c32014-01-09 17:48:48 +000013// Murmur3 has an optional third seed argument, so we wrap it to fit a uniform type.
mtklein53d43592014-07-10 14:10:45 -070014static uint32_t murmur_noseed(const SkChecksum::FourByteAligned* d, size_t l) {
15 return SkChecksum::Murmur3(d, l);
16}
commit-bot@chromium.org2b0f7c32014-01-09 17:48:48 +000017
18#define ASSERT(x) REPORTER_ASSERT(r, x)
19
20DEF_TEST(Checksum, r) {
21 // Algorithms to test. They're currently all uint32_t(const uint32_t*, size_t).
mtklein53d43592014-07-10 14:10:45 -070022 typedef uint32_t(*algorithmProc)(const SkChecksum::FourByteAligned*, size_t);
commit-bot@chromium.org2b0f7c32014-01-09 17:48:48 +000023 const algorithmProc kAlgorithms[] = { &SkChecksum::Compute, &murmur_noseed };
24
25 // Put 128 random bytes into two identical buffers. Any multiple of 4 will do.
26 const size_t kBytes = SkAlign4(128);
27 SkRandom rand;
28 uint32_t data[kBytes/4], tweaked[kBytes/4];
29 for (size_t i = 0; i < SK_ARRAY_COUNT(tweaked); ++i) {
30 data[i] = tweaked[i] = rand.nextU();
31 }
32
33 // Test each algorithm.
34 for (size_t i = 0; i < SK_ARRAY_COUNT(kAlgorithms); ++i) {
35 const algorithmProc algorithm = kAlgorithms[i];
36
37 // Hash of NULL is always 0.
38 ASSERT(algorithm(NULL, 0) == 0);
39
40 const uint32_t hash = algorithm(data, kBytes);
41 // Should be deterministic.
42 ASSERT(hash == algorithm(data, kBytes));
43
44 // Changing any single element should change the hash.
45 for (size_t j = 0; j < SK_ARRAY_COUNT(tweaked); ++j) {
46 const uint32_t saved = tweaked[j];
47 tweaked[j] = rand.nextU();
48 const uint32_t tweakedHash = algorithm(tweaked, kBytes);
49 ASSERT(tweakedHash != hash);
50 ASSERT(tweakedHash == algorithm(tweaked, kBytes));
51 tweaked[j] = saved;
epoger@google.com4adfab82012-11-02 18:35:04 +000052 }
commit-bot@chromium.org2b0f7c32014-01-09 17:48:48 +000053 }
epoger@google.com4adfab82012-11-02 18:35:04 +000054}