summaryrefslogtreecommitdiff
path: root/neozip/test/test_compress_dual.cc
blob: a92ab4be392ef18650792a01bad15f38713a508e (plain)
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
/* test_compress_dual.cc - Test linking against both zlib and zlib-ng */

#include "zlib.h"

#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

#include "test_shared.h"

#include <gtest/gtest.h>

TEST(compress, basic_zlib) {
    Byte compr[128], uncompr[128];
    uLong compr_len = sizeof(compr), uncompr_len = sizeof(uncompr);
    int err;

    err = compress(compr, &compr_len, (const unsigned char *)hello, hello_len);
    EXPECT_EQ(err, Z_OK);

    strcpy((char*)uncompr, "garbage");

    err = uncompress(uncompr, &uncompr_len, compr, compr_len);
    EXPECT_EQ(err, Z_OK);

    EXPECT_STREQ((char *)uncompr, (char *)hello);
}