Files
scylladb/test/boost/crc_test.cc
Avi Kivity fcb8d040e8 treewide: use Software Package Data Exchange (SPDX) license identifiers
Instead of lengthy blurbs, switch to single-line, machine-readable
standardized (https://spdx.dev) license identifiers. The Linux kernel
switched long ago, so there is strong precedent.

Three cases are handled: AGPL-only, Apache-only, and dual licensed.
For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0),
reasoning that our changes are extensive enough to apply our license.

The changes we applied mechanically with a script, except to
licenses/README.md.

Closes #9937
2022-01-18 12:15:18 +01:00

83 lines
1.9 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#define BOOST_TEST_MODULE core
#include <boost/test/unit_test.hpp>
#include "utils/crc.hh"
#include <seastar/core/print.hh>
inline
uint32_t
do_compute_crc(utils::crc32& c) {
return c.get();
}
template <typename T, typename... Rest>
inline
uint32_t
do_compute_crc(utils::crc32& c, const T& val, const Rest&... rest) {
c.process_le(val);
return do_compute_crc(c, rest...);
}
template <typename... T>
inline
uint32_t
compute_crc(const T&... vals) {
utils::crc32 c;
return do_compute_crc(c, vals...);
}
BOOST_AUTO_TEST_CASE(crc_1_vs_4) {
using b = uint8_t;
BOOST_REQUIRE_EQUAL(compute_crc(0x01020304), compute_crc(b(4), b(3), b(2), b(1)));
}
BOOST_AUTO_TEST_CASE(crc_121_vs_4) {
using b = uint8_t;
using w = uint16_t;
BOOST_REQUIRE_EQUAL(compute_crc(0x01020304), compute_crc(b(4), w(0x0203), b(1)));
}
BOOST_AUTO_TEST_CASE(crc_44_vs_8) {
using q = uint64_t;
BOOST_REQUIRE_EQUAL(compute_crc(q(0x0102030405060708)), compute_crc(0x05060708, 0x01020304));
}
// Test crc32::process()
BOOST_AUTO_TEST_CASE(crc_process) {
const size_t max_size = 7 + 4096 + 31; // cover all code path
const size_t test_sizes[] = {
0, 1, 8, 9, 1023, 1024, 1025, 1032, 1033, 4095, 4096, 4097, max_size
};
// Create data buffer offset 8 bytes boundary by 1 byte
uint64_t data64[max_size/8 + 2];
uint8_t *data = (reinterpret_cast<uint8_t*>(data64)) + 1;
// Fill data with test pattern
for (size_t i = 0; i < max_size; ++i) {
data[i] = i + 1;
}
for (size_t size : test_sizes) {
utils::crc32 c1, c2;
// Get correct answer with simplest method
for (size_t i = 0; i < size; ++i) {
c1.process_le(data[i]);
}
// Calculate crc by optimized routine
c2.process(data, size);
BOOST_REQUIRE_EQUAL(c1.get(), c2.get());
}
}