mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 02:25:52 +00:00
202 lines
5.9 KiB
C++
202 lines
5.9 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2025 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <xrpl/beast/hash/xxhasher.h>
|
|
#include <xrpl/beast/unit_test.h>
|
|
|
|
namespace beast {
|
|
|
|
class XXHasher_test : public unit_test::suite
|
|
{
|
|
public:
|
|
void
|
|
testWithoutSeed()
|
|
{
|
|
testcase("Without seed");
|
|
|
|
xxhasher hasher{};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
16042857369214894119ULL);
|
|
}
|
|
|
|
void
|
|
testWithSeed()
|
|
{
|
|
testcase("With seed");
|
|
|
|
xxhasher hasher{static_cast<std::uint32_t>(102)};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
14440132435660934800ULL);
|
|
}
|
|
|
|
void
|
|
testWithTwoSeeds()
|
|
{
|
|
testcase("With two seeds");
|
|
xxhasher hasher{
|
|
static_cast<std::uint32_t>(102), static_cast<std::uint32_t>(103)};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
14440132435660934800ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithMultiupleSmallUpdatesWithoutSeed()
|
|
{
|
|
testcase("Big object with multiple small updates without seed");
|
|
xxhasher hasher{};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
for (int i = 0; i < 100; i++)
|
|
{
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
}
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
15296278154063476002ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithMultiupleSmallUpdatesWithSeed()
|
|
{
|
|
testcase("Big object with multiple small updates with seed");
|
|
xxhasher hasher{static_cast<std::uint32_t>(103)};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
for (int i = 0; i < 100; i++)
|
|
{
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
}
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
17285302196561698791ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithSmallAndBigUpdatesWithoutSeed()
|
|
{
|
|
testcase("Big object with small and big updates without seed");
|
|
xxhasher hasher{};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
std::string bigObject;
|
|
for (int i = 0; i < 20; i++)
|
|
{
|
|
bigObject += "Hello, xxHash!";
|
|
}
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
hasher(bigObject.data(), bigObject.size());
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
1865045178324729219ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithSmallAndBigUpdatesWithSeed()
|
|
{
|
|
testcase("Big object with small and big updates with seed");
|
|
xxhasher hasher{static_cast<std::uint32_t>(103)};
|
|
|
|
std::string objectToHash{"Hello, xxHash!"};
|
|
std::string bigObject;
|
|
for (int i = 0; i < 20; i++)
|
|
{
|
|
bigObject += "Hello, xxHash!";
|
|
}
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
hasher(bigObject.data(), bigObject.size());
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
16189862915636005281ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithOneUpdateWithoutSeed()
|
|
{
|
|
testcase("Big object with one update without seed");
|
|
xxhasher hasher{};
|
|
|
|
std::string objectToHash;
|
|
for (int i = 0; i < 100; i++)
|
|
{
|
|
objectToHash += "Hello, xxHash!";
|
|
}
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
15296278154063476002ULL);
|
|
}
|
|
|
|
void
|
|
testBigObjectWithOneUpdateWithSeed()
|
|
{
|
|
testcase("Big object with one update with seed");
|
|
xxhasher hasher{static_cast<std::uint32_t>(103)};
|
|
|
|
std::string objectToHash;
|
|
for (int i = 0; i < 100; i++)
|
|
{
|
|
objectToHash += "Hello, xxHash!";
|
|
}
|
|
hasher(objectToHash.data(), objectToHash.size());
|
|
|
|
BEAST_EXPECT(
|
|
static_cast<xxhasher::result_type>(hasher) ==
|
|
17285302196561698791ULL);
|
|
}
|
|
|
|
void
|
|
run() override
|
|
{
|
|
testWithoutSeed();
|
|
testWithSeed();
|
|
testWithTwoSeeds();
|
|
testBigObjectWithMultiupleSmallUpdatesWithoutSeed();
|
|
testBigObjectWithMultiupleSmallUpdatesWithSeed();
|
|
testBigObjectWithSmallAndBigUpdatesWithoutSeed();
|
|
testBigObjectWithSmallAndBigUpdatesWithSeed();
|
|
testBigObjectWithOneUpdateWithoutSeed();
|
|
testBigObjectWithOneUpdateWithSeed();
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(XXHasher, beast_core, beast);
|
|
} // namespace beast
|