1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/*********************************************************************
Blosc - Blocked Shuffling and Compression Library
Unit tests for BLOSC_COMPRESSOR environment variable in Blosc.
Copyright (c) 2021 Blosc Development Team <blosc@blosc.org>
https://blosc.org
License: BSD 3-Clause (see LICENSE.txt)
See LICENSE.txt for details about copyright and rights to use.
**********************************************************************/
#include "test_common.h"
int tests_run = 0;
/* Global vars */
void *src, *srccpy, *dest, *dest2;
int nbytes, cbytes;
int clevel = 1;
int doshuffle = 1;
size_t typesize = 8;
int32_t size = 8 * 1000 * 1000; /* must be divisible by typesize */
/* Check compressor */
static char *test_compressor(void) {
const char* compressor;
/* Before any blosc1_compress() the compressor must be blosclz */
compressor = blosc1_get_compressor();
mu_assert("ERROR: get_compressor (compress, before) incorrect",
strcmp(compressor, "blosclz") == 0);
/* Activate the BLOSC_COMPRESSOR variable */
setenv("BLOSC_COMPRESSOR", "lz4", 0);
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not correct", cbytes < size);
compressor = blosc1_get_compressor();
/* Activate the BLOSC_COMPRESSOR variable */
mu_assert("ERROR: get_compressor (compress, after) incorrect",
strcmp(compressor, "lz4") == 0);
/* Reset envvar */
unsetenv("BLOSC_COMPRESSOR");
return 0;
}
/* Check compressing + decompressing */
static char *test_compress_decompress(void) {
const char* compressor;
/* Activate the BLOSC_COMPRESSOR variable */
setenv("BLOSC_COMPRESSOR", "lz4", 0);
compressor = blosc1_get_compressor();
/* Activate the BLOSC_COMPRESSOR variable */
mu_assert("ERROR: get_compressor (compress, after) incorrect",
strcmp(compressor, "lz4") == 0);
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not correct", cbytes < size);
compressor = blosc1_get_compressor();
mu_assert("ERROR: get_compressor incorrect",
strcmp(compressor, "lz4") == 0);
/* Decompress the buffer */
nbytes = blosc1_decompress(dest, dest2, size);
mu_assert("ERROR: nbytes incorrect(1)", nbytes == size);
compressor = blosc1_get_compressor();
mu_assert("ERROR: get_compressor incorrect",
strcmp(compressor, "lz4") == 0);
/* Reset envvar */
unsetenv("BLOSC_COMPRESSOR");
return 0;
}
/* Check compression level */
static char *test_clevel(void) {
int cbytes2;
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not correct", cbytes < size);
/* Activate the BLOSC_CLEVEL variable */
setenv("BLOSC_CLEVEL", "9", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_CLEVEL does not work correctly", cbytes2 != cbytes);
/* Reset envvar */
unsetenv("BLOSC_CLEVEL");
return 0;
}
/* Check noshuffle */
static char *test_noshuffle(void) {
int cbytes2;
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not correct", cbytes < size);
/* Activate the BLOSC_SHUFFLE variable */
setenv("BLOSC_SHUFFLE", "NOSHUFFLE", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_SHUFFLE=NOSHUFFLE does not work correctly",
cbytes2 > cbytes);
/* Reset env var */
unsetenv("BLOSC_SHUFFLE");
return 0;
}
/* Check regular shuffle */
static char *test_shuffle(void) {
int cbytes2;
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not 0", cbytes < size);
/* Activate the BLOSC_SHUFFLE variable */
setenv("BLOSC_SHUFFLE", "SHUFFLE", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_SHUFFLE=SHUFFLE does not work correctly",
cbytes2 == cbytes);
/* Reset env var */
unsetenv("BLOSC_SHUFFLE");
return 0;
}
/* Check bitshuffle */
static char *test_bitshuffle(void) {
int cbytes2;
/* Get a compressed buffer */
if (blosc1_set_compressor("zlib") == -1) {
/* If zlib is not here, just skip the test */
return 0;
};
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not 0", cbytes < size);
/* Activate the BLOSC_BITSHUFFLE variable */
setenv("BLOSC_SHUFFLE", "BITSHUFFLE", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_SHUFFLE=BITSHUFFLE does not work correctly",
cbytes2 < cbytes);
/* Reset env var */
unsetenv("BLOSC_SHUFFLE");
return 0;
}
/* Check delta conding */
static char *test_delta(void) {
int cbytes2;
/* Get a compressed buffer */
blosc1_set_compressor("blosclz"); /* avoid lz4 here for now (see #168) */
blosc2_set_delta(0);
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not 0", cbytes < size);
/* Activate the BLOSC_DELTA variable */
setenv("BLOSC_DELTA", "1", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_DELTA=1 does not work correctly",
cbytes2 < 3 * cbytes / 4);
/* Reset env var */
unsetenv("BLOSC_DELTA");
return 0;
}
/* Check typesize */
static char *test_typesize(void) {
int cbytes2;
/* Get a compressed buffer */
cbytes = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: cbytes is not correct", cbytes < size);
/* Activate the BLOSC_TYPESIZE variable */
setenv("BLOSC_TYPESIZE", "9", 0);
cbytes2 = blosc1_compress(clevel, doshuffle, typesize, size, src,
dest, size + BLOSC2_MAX_OVERHEAD);
mu_assert("ERROR: BLOSC_TYPESIZE does not work correctly", cbytes2 > cbytes);
/* Reset envvar */
unsetenv("BLOSC_TYPESIZE");
return 0;
}
/* Check small blocksize */
static char *test_small_blocksize(void) {
blosc2_cparams cparams = BLOSC2_CPARAMS_DEFAULTS;
cparams.blocksize = 2;
cparams.typesize = 1;
blosc2_context *cctx = blosc2_create_cctx(cparams);
blosc2_dparams dparams = BLOSC2_DPARAMS_DEFAULTS;
blosc2_context *dctx = blosc2_create_dctx(dparams);
size = 8;
/* Get a compressed buffer */
cbytes = blosc2_compress_ctx(cctx, src, size, dest, size + BLOSC2_MAX_OVERHEAD);
nbytes = blosc2_decompress_ctx(dctx, dest, size + BLOSC2_MAX_OVERHEAD, src, size);
mu_assert("ERROR: nbytes is not correct", nbytes == size);
blosc2_free_ctx(cctx);
blosc2_free_ctx(dctx);
return 0;
}
/* Check small buffer */
static char *test_small_buffer(void) {
blosc2_cparams cparams = BLOSC2_CPARAMS_DEFAULTS;
cparams.typesize = 1;
blosc2_context *cctx = blosc2_create_cctx(cparams);
blosc2_dparams dparams = BLOSC2_DPARAMS_DEFAULTS;
blosc2_context *dctx = blosc2_create_dctx(dparams);
size = 2;
uint8_t *src2 = calloc(size, 1);
for (int i = 0; i < size; i++) {
src2[i] = (uint8_t)i;
}
/* Using contexts */
cbytes = blosc2_compress_ctx(cctx, src2, size, dest, size + BLOSC2_MAX_OVERHEAD);
nbytes = blosc2_decompress_ctx(dctx, dest, size + BLOSC2_MAX_OVERHEAD, src, size);
mu_assert("ERROR: nbytes is not correct", nbytes == size);
/* Not using contexts */
cbytes = blosc2_compress(9, 1, cparams.typesize, src2, size, dest, size + BLOSC2_MAX_OVERHEAD);
nbytes = blosc2_decompress(dest, size + BLOSC2_MAX_OVERHEAD, src, size);
mu_assert("ERROR: nbytes is not correct", nbytes == size);
/* Using Blosc1 interface */
cbytes = blosc1_compress(9, 1, cparams.typesize, size, src2, dest, size + BLOSC2_MAX_OVERHEAD);
nbytes = blosc1_decompress(dest, src, size);
mu_assert("ERROR: nbytes is not correct", nbytes == size);
free(src2);
blosc2_free_ctx(cctx);
blosc2_free_ctx(dctx);
return 0;
}
static char *all_tests(void) {
mu_run_test(test_compressor);
mu_run_test(test_compress_decompress);
mu_run_test(test_clevel);
mu_run_test(test_noshuffle);
mu_run_test(test_shuffle);
mu_run_test(test_bitshuffle);
mu_run_test(test_delta);
mu_run_test(test_typesize);
mu_run_test(test_small_blocksize);
mu_run_test(test_small_buffer);
return 0;
}
#define BUFFER_ALIGN_SIZE 32
int main(void) {
int64_t *_src;
char *result;
size_t i;
blosc2_init();
blosc1_set_compressor("blosclz");
/* Initialize buffers */
src = blosc_test_malloc(BUFFER_ALIGN_SIZE, size);
srccpy = blosc_test_malloc(BUFFER_ALIGN_SIZE, size);
dest = blosc_test_malloc(BUFFER_ALIGN_SIZE, size + BLOSC2_MAX_OVERHEAD);
dest2 = blosc_test_malloc(BUFFER_ALIGN_SIZE, size);
_src = (int64_t *)src;
for (i=0; i < (size / sizeof(int64_t)); i++) {
_src[i] = (int64_t)i;
}
memcpy(srccpy, src, size);
/* Run all the suite */
result = all_tests();
if (result != 0) {
printf(" (%s)\n", result);
}
else {
printf(" ALL TESTS PASSED");
}
printf("\tTests run: %d\n", tests_run);
blosc_test_free(src);
blosc_test_free(srccpy);
blosc_test_free(dest);
blosc_test_free(dest2);
blosc2_destroy();
return result != 0;
}
|