mirror of
https://github.com/aaru-dps/Aaru.Checksums.Native.git
synced 2025-12-16 11:14:29 +00:00
118 lines
2.5 KiB
C++
118 lines
2.5 KiB
C++
//
|
|
// Created by claunia on 5/10/21.
|
|
//
|
|
|
|
#include <climits>
|
|
#include <cstdint>
|
|
|
|
#include "../library.h"
|
|
#include "../crc16_ccitt.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
#define EXPECTED_CRC16_CCITT 0x3640
|
|
#define EXPECTED_CRC16_CCITT_15BYTES 0x166e
|
|
#define EXPECTED_CRC16_CCITT_31BYTES 0xd016
|
|
#define EXPECTED_CRC16_CCITT_63BYTES 0x73c4
|
|
#define EXPECTED_CRC16_CCITT_2352BYTES 0x1946
|
|
|
|
static const uint8_t* buffer;
|
|
|
|
class crc16_ccittFixture : public ::testing::Test
|
|
{
|
|
public:
|
|
crc16_ccittFixture()
|
|
{
|
|
// 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);
|
|
}
|
|
|
|
void TearDown() { free((void*)buffer); }
|
|
|
|
~crc16_ccittFixture()
|
|
{
|
|
// resources cleanup, no exceptions allowed
|
|
}
|
|
|
|
// shared user data
|
|
};
|
|
|
|
TEST_F(crc16_ccittFixture, crc16_ccitt_auto)
|
|
{
|
|
crc16_ccitt_ctx* ctx = crc16_ccitt_init();
|
|
uint16_t crc;
|
|
|
|
EXPECT_NE(ctx, nullptr);
|
|
|
|
crc16_ccitt_update(ctx, buffer, 1048576);
|
|
crc16_ccitt_final(ctx, &crc);
|
|
|
|
EXPECT_EQ(crc, EXPECTED_CRC16_CCITT);
|
|
}
|
|
|
|
TEST_F(crc16_ccittFixture, crc16_ccitt_auto_15bytes)
|
|
{
|
|
crc16_ccitt_ctx* ctx = crc16_ccitt_init();
|
|
uint16_t crc;
|
|
|
|
EXPECT_NE(ctx, nullptr);
|
|
|
|
crc16_ccitt_update(ctx, buffer, 15);
|
|
crc16_ccitt_final(ctx, &crc);
|
|
|
|
EXPECT_EQ(crc, EXPECTED_CRC16_CCITT_15BYTES);
|
|
}
|
|
|
|
TEST_F(crc16_ccittFixture, crc16_ccitt_auto_31bytes)
|
|
{
|
|
crc16_ccitt_ctx* ctx = crc16_ccitt_init();
|
|
uint16_t crc;
|
|
|
|
EXPECT_NE(ctx, nullptr);
|
|
|
|
crc16_ccitt_update(ctx, buffer, 31);
|
|
crc16_ccitt_final(ctx, &crc);
|
|
|
|
EXPECT_EQ(crc, EXPECTED_CRC16_CCITT_31BYTES);
|
|
}
|
|
|
|
TEST_F(crc16_ccittFixture, crc16_ccitt_auto_63bytes)
|
|
{
|
|
crc16_ccitt_ctx* ctx = crc16_ccitt_init();
|
|
uint16_t crc;
|
|
|
|
EXPECT_NE(ctx, nullptr);
|
|
|
|
crc16_ccitt_update(ctx, buffer, 63);
|
|
crc16_ccitt_final(ctx, &crc);
|
|
|
|
EXPECT_EQ(crc, EXPECTED_CRC16_CCITT_63BYTES);
|
|
}
|
|
|
|
TEST_F(crc16_ccittFixture, crc16_ccitt_auto_2352bytes)
|
|
{
|
|
crc16_ccitt_ctx* ctx = crc16_ccitt_init();
|
|
uint16_t crc;
|
|
|
|
EXPECT_NE(ctx, nullptr);
|
|
|
|
crc16_ccitt_update(ctx, buffer, 2352);
|
|
crc16_ccitt_final(ctx, &crc);
|
|
|
|
EXPECT_EQ(crc, EXPECTED_CRC16_CCITT_2352BYTES);
|
|
}
|