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
|
/*
* Copyright 2022-2024 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU General Public License version 2
* or later (GPLv2+) WITHOUT ANY WARRANTY.
*/
#include <crm_internal.h>
#include <crm/common/unittest_internal.h>
#include "mock_private.h"
#define SIMPLE_DATA "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
const char *SIMPLE_COMPRESSED = "BZh41AY&SYO\x1ai";
static void
simple_compress(void **state)
{
char *result = pcmk__assert_alloc(1024, sizeof(char));
unsigned int len;
assert_int_equal(pcmk__compress(SIMPLE_DATA, 40, 0, &result, &len), pcmk_rc_ok);
assert_memory_equal(result, SIMPLE_COMPRESSED, 13);
}
static void
max_too_small(void **state)
{
char *result = pcmk__assert_alloc(1024, sizeof(char));
unsigned int len;
assert_int_equal(pcmk__compress(SIMPLE_DATA, 40, 10, &result, &len), EFBIG);
}
static void
calloc_fails(void **state) {
char *result = pcmk__assert_alloc(1024, sizeof(char));
unsigned int len;
pcmk__assert_exits(
CRM_EX_OSERR,
{
pcmk__mock_calloc = true; // calloc() will return NULL
expect_value(__wrap_calloc, nmemb, (size_t) ((40 * 1.01) + 601));
expect_value(__wrap_calloc, size, sizeof(char));
pcmk__compress(SIMPLE_DATA, 40, 0, &result, &len);
pcmk__mock_calloc = false; // Use the real calloc()
}
);
}
PCMK__UNIT_TEST(NULL, NULL,
cmocka_unit_test(simple_compress),
cmocka_unit_test(max_too_small),
cmocka_unit_test(calloc_fails))
|