/* * This file is part of the Aaru Data Preservation Suite. * Copyright (c) 2019-2025 Natalia Portillo. * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of the * License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ #include #include #include #include #include "crc32.h" #include "gtest/gtest.h" #define EXPECTED_CRC32 0x954bf76e static uint8_t *buffer; class lzmaFixture : public ::testing::Test { public: lzmaFixture() = default; protected: void SetUp() override { char path[PATH_MAX]; char filename[PATH_MAX]; getcwd(path, PATH_MAX); snprintf(filename, PATH_MAX, "%s/data/lzma.bin", path); FILE *file = fopen(filename, "rb"); buffer = static_cast(malloc(1200275)); fread(buffer, 1, 1200275, file); fclose(file); } void TearDown() override { free(buffer); } ~lzmaFixture() override = default; // shared user data }; TEST_F(lzmaFixture, lzma) { uint8_t params[] = {0x5D, 0x00, 0x00, 0x00, 0x02}; size_t destLen = 8388608; size_t srcLen = 1200275; auto *outBuf = static_cast(malloc(8388608)); auto err = aaruf_lzma_decode_buffer(outBuf, &destLen, buffer, &srcLen, params, 5); EXPECT_EQ(err, 0); EXPECT_EQ(destLen, 8388608); auto crc = crc32_data(outBuf, 8388608); free(outBuf); EXPECT_EQ(crc, EXPECTED_CRC32); } TEST_F(lzmaFixture, lzmaCompress) { size_t original_len = 8388608; size_t cmp_len = original_len; size_t decmp_len = original_len; char path[PATH_MAX]; char filename[PATH_MAX * 2]; uint8_t props[5]; size_t props_len = 5; // Allocate buffers uint8_t *original = static_cast(malloc(original_len)); uint8_t *cmp_buffer = static_cast(malloc(cmp_len)); uint8_t *decmp_buffer = static_cast(malloc(decmp_len)); // Read the file getcwd(path, PATH_MAX); snprintf(filename, PATH_MAX, "%s/data/data.bin", path); FILE *file = fopen(filename, "rb"); fread(original, 1, original_len, file); fclose(file); // Calculate the CRC uint32_t original_crc = crc32_data(original, original_len); // Compress int err = aaruf_lzma_encode_buffer(cmp_buffer, &cmp_len, original, original_len, props, &props_len, 9, 1048576, 3, 0, 2, 273, 2); EXPECT_EQ(err, 0); // Decompress err = aaruf_lzma_decode_buffer(decmp_buffer, &decmp_len, cmp_buffer, &cmp_len, props, props_len); EXPECT_EQ(err, 0); EXPECT_EQ(decmp_len, original_len); uint32_t decmp_crc = crc32_data(decmp_buffer, decmp_len); // Free buffers free(original); free(cmp_buffer); free(decmp_buffer); EXPECT_EQ(decmp_crc, original_crc); }