mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 11:14:39 +00:00
Add unit test for CRC64.
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
[submodule "tests/lib"]
|
||||
path = tests/lib
|
||||
url = https://github.com/google/googletest
|
||||
@@ -9,3 +9,5 @@ add_library(aaruformat SHARED include/aaruformat/consts.h include/aaruformat/enu
|
||||
src/close.c include/aaruformat/errors.h src/read.c src/crc64.c src/cst.c src/ecc_cd.c src/helpers.c)
|
||||
|
||||
include_directories(include include/aaruformat)
|
||||
|
||||
add_subdirectory(tests)
|
||||
14
tests/CMakeLists.txt
Normal file
14
tests/CMakeLists.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
# 'Google_test' is the subproject name
|
||||
project(tests)
|
||||
|
||||
# 'lib' is the folder with Google Test sources
|
||||
add_subdirectory(lib)
|
||||
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
||||
|
||||
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/random
|
||||
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/data/)
|
||||
|
||||
# 'Google_Tests_run' is the target name
|
||||
# 'test1.cpp tests2.cpp' are source files with tests
|
||||
add_executable(tests_run crc64.cpp)
|
||||
target_link_libraries(tests_run gtest gtest_main "aaruformat")
|
||||
138
tests/crc64.cpp
Normal file
138
tests/crc64.cpp
Normal file
@@ -0,0 +1,138 @@
|
||||
//
|
||||
// Created by claunia on 5/10/21.
|
||||
//
|
||||
|
||||
#include "../include/aaruformat.h"
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <climits>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
|
||||
#define EXPECTED_CRC64 0xbf09992cc5ede38e
|
||||
#define EXPECTED_CRC64_15BYTES 0x797F3766FD93975B
|
||||
#define EXPECTED_CRC64_31BYTES 0xCD9201905A7937FD
|
||||
#define EXPECTED_CRC64_63BYTES 0x29F331FC90702BF4
|
||||
#define EXPECTED_CRC64_2352BYTES 0x126435DB43477623
|
||||
|
||||
static const uint8_t* buffer;
|
||||
static const uint8_t* buffer_misaligned;
|
||||
|
||||
class crc64Fixture : public ::testing::Test
|
||||
{
|
||||
public:
|
||||
crc64Fixture()
|
||||
{
|
||||
// initialization;
|
||||
// can also be done in SetUp()
|
||||
}
|
||||
|
||||
protected:
|
||||
void SetUp()
|
||||
{
|
||||
char path[PATH_MAX];
|
||||
char filename[PATH_MAX];
|
||||
|
||||
getcwd(path, PATH_MAX);
|
||||
snprintf(filename, PATH_MAX, "%s/data/random", path);
|
||||
|
||||
FILE* file = fopen(filename, "rb");
|
||||
buffer = (const uint8_t*)malloc(1048576);
|
||||
fread((void*)buffer, 1, 1048576, file);
|
||||
fclose(file);
|
||||
|
||||
buffer_misaligned = (const uint8_t*)malloc(1048577);
|
||||
memcpy((void*)(buffer_misaligned + 1), buffer, 1048576);
|
||||
}
|
||||
|
||||
void TearDown()
|
||||
{
|
||||
free((void*)buffer);
|
||||
free((void*)buffer_misaligned);
|
||||
}
|
||||
|
||||
~crc64Fixture()
|
||||
{
|
||||
// resources cleanup, no exceptions allowed
|
||||
}
|
||||
|
||||
// shared user data
|
||||
};
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer, 1048576);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64);
|
||||
}
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto_misaligned)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer_misaligned + 1, 1048576);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64);
|
||||
}
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto_15bytes)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer, 15);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64_15BYTES);
|
||||
}
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto_31bytes)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer, 31);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64_31BYTES);
|
||||
}
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto_63bytes)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer, 63);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64_63BYTES);
|
||||
}
|
||||
|
||||
TEST_F(crc64Fixture, crc64_auto_2352bytes)
|
||||
{
|
||||
void* ctx = crc64_init_ecma();
|
||||
uint64_t crc;
|
||||
|
||||
EXPECT_NE(ctx, nullptr);
|
||||
|
||||
crc64_update(ctx, buffer, 2352);
|
||||
crc = crc64_final(ctx);
|
||||
|
||||
EXPECT_EQ(crc, EXPECTED_CRC64_2352BYTES);
|
||||
}
|
||||
BIN
tests/data/random
Normal file
BIN
tests/data/random
Normal file
Binary file not shown.
1
tests/lib
Submodule
1
tests/lib
Submodule
Submodule tests/lib added at 9d21db9e0a
Reference in New Issue
Block a user