Flutter Engine
The Flutter Engine
Functions
ChecksumTest.cpp File Reference
#include "include/core/SkString.h"
#include "include/core/SkTypes.h"
#include "include/private/base/SkAlign.h"
#include "src/base/SkRandom.h"
#include "src/core/SkChecksum.h"
#include "tests/Test.h"
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <string>
#include <string_view>

Go to the source code of this file.

Functions

 DEF_TEST (Checksum, r)
 
 DEF_TEST (GoodHash, r)
 
 DEF_TEST (ChecksumCollisions, r)
 
 DEF_TEST (ChecksumConsistent, r)
 
 DEF_TEST (ChecksumStrings, r)
 

Function Documentation

◆ DEF_TEST() [1/5]

DEF_TEST ( Checksum  ,
 
)

Definition at line 21 of file ChecksumTest.cpp.

21 {
22 // Put 128 random bytes into two identical buffers. Any multiple of 4 will do.
23 const size_t kBytes = SkAlign4(128);
24 SkRandom rand;
25 uint32_t data[kBytes/4], tweaked[kBytes/4];
26 for (size_t i = 0; i < std::size(tweaked); ++i) {
27 data[i] = tweaked[i] = rand.nextU();
28 }
29
30 const uint32_t hash = SkChecksum::Hash32(data, kBytes);
31 // Should be deterministic.
33
34 // Changing any single element should change the hash.
35 for (size_t j = 0; j < std::size(tweaked); ++j) {
36 const uint32_t saved = tweaked[j];
37 tweaked[j] = rand.nextU();
38 const uint32_t tweakedHash = SkChecksum::Hash32(tweaked, kBytes);
39 REPORTER_ASSERT(r, tweakedHash != hash);
40 REPORTER_ASSERT(r, tweakedHash == SkChecksum::Hash32(tweaked, kBytes));
41 tweaked[j] = saved;
42 }
43}
static constexpr T SkAlign4(T x)
Definition: SkAlign.h:16
static uint32_t hash(const SkShaderBase::GradientInfo &v)
#define REPORTER_ASSERT(r, cond,...)
Definition: Test.h:286
uint32_t nextU()
Definition: SkRandom.h:42
uint32_t Hash32(const void *data, size_t bytes, uint32_t seed)
Definition: SkChecksum.cpp:113
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259
std::shared_ptr< const fml::Mapping > data
Definition: texture_gles.cc:63

◆ DEF_TEST() [2/5]

DEF_TEST ( ChecksumCollisions  ,
 
)

Definition at line 51 of file ChecksumTest.cpp.

51 {
52 // We noticed a few workloads that would cause hash collisions due to the way
53 // our old optimized hashes split into three concurrent hashes and merged those hashes together.
54 //
55 // One of these two workloads ought to cause an unintentional hash collision on very similar
56 // data in those old algorithms, the float version on 32-bit x86 and double elsewhere.
57 {
58 float a[9] = { 0, 1, 2,
59 3, 4, 5,
60 6, 7, 8, };
61 float b[9] = { 1, 2, 0,
62 4, 5, 3,
63 7, 8, 6, };
64
65 REPORTER_ASSERT(r, SkChecksum::Hash32(a, sizeof(a)) != SkChecksum::Hash32(b, sizeof(b)));
66 }
67 {
68 double a[9] = { 0, 1, 2,
69 3, 4, 5,
70 6, 7, 8, };
71 double b[9] = { 1, 2, 0,
72 4, 5, 3,
73 7, 8, 6, };
74
75 REPORTER_ASSERT(r, SkChecksum::Hash32(a, sizeof(a)) != SkChecksum::Hash32(b, sizeof(b)));
76 }
77}
static bool b
struct MyStruct a[10]

◆ DEF_TEST() [3/5]

DEF_TEST ( ChecksumConsistent  ,
 
)

Definition at line 79 of file ChecksumTest.cpp.

79 {
80 // We don't guarantee that SkChecksum::Hash32 will return consistent results, but it does today.
81 // Spot check a few:
82 uint8_t bytes[256];
83 for (int i = 0; i < 256; i++) {
84 bytes[i] = i;
85 }
86 auto hash_bytes = [&](int n) { return SkChecksum::Hash32(bytes, n); };
87 REPORTER_ASSERT(r, hash_bytes( 0) == 0xe2bde459, "%08x", hash_bytes( 0));
88 REPORTER_ASSERT(r, hash_bytes( 1) == 0xe5f8bd85, "%08x", hash_bytes( 1));
89 REPORTER_ASSERT(r, hash_bytes( 2) == 0x77acd42a, "%08x", hash_bytes( 2));
90 REPORTER_ASSERT(r, hash_bytes( 7) == 0x78d0861f, "%08x", hash_bytes( 7));
91 REPORTER_ASSERT(r, hash_bytes( 32) == 0x4e73df6d, "%08x", hash_bytes( 32));
92 REPORTER_ASSERT(r, hash_bytes( 63) == 0x5e66a3f4, "%08x", hash_bytes( 63));
93 REPORTER_ASSERT(r, hash_bytes( 64) == 0x962d6746, "%08x", hash_bytes( 64));
94 REPORTER_ASSERT(r, hash_bytes( 99) == 0x79e09416, "%08x", hash_bytes( 99));
95 REPORTER_ASSERT(r, hash_bytes(255) == 0x85f837f0, "%08x", hash_bytes(255));
96}

◆ DEF_TEST() [4/5]

DEF_TEST ( ChecksumStrings  ,
 
)

Definition at line 98 of file ChecksumTest.cpp.

98 {
99 constexpr char kMessage[] = "Checksums are supported for SkString, string, and string_view.";
100 const uint32_t expectedHash = SkChecksum::Hash32(kMessage, strlen(kMessage));
101
102 REPORTER_ASSERT(r, expectedHash == SkGoodHash()(SkString(kMessage)));
103 REPORTER_ASSERT(r, expectedHash == SkGoodHash()(std::string(kMessage)));
104 REPORTER_ASSERT(r, expectedHash == SkGoodHash()(std::string_view(kMessage)));
105}

◆ DEF_TEST() [5/5]

DEF_TEST ( GoodHash  ,
 
)

Definition at line 45 of file ChecksumTest.cpp.

45 {
46 // 4 bytes --> hits SkChecksum::Mix fast path.
47 REPORTER_ASSERT(r, SkGoodHash()(( int32_t)4) == 614249093);
48 REPORTER_ASSERT(r, SkGoodHash()((uint32_t)4) == 614249093);
49}