oom.c 1.52 KB
Newer Older
1
#include "clar_libgit2.h"
2
#include "clar_libgit2_alloc.h"
3

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Override default allocators with ones that will fail predictably. */

static git_allocator std_alloc;
static git_allocator oom_alloc;

static void *oom_malloc(size_t n, const char *file, int line)
{
	/* Reject any allocation of more than 100 bytes */
	return (n > 100) ? NULL : std_alloc.gmalloc(n, file, line);
}

static void *oom_realloc(void *p, size_t n, const char *file, int line)
{
	/* Reject any allocation of more than 100 bytes */
	return (n > 100) ? NULL : std_alloc.grealloc(p, n, file, line);
}

21
void test_str_oom__initialize(void)
22 23 24 25 26 27 28
{
	git_stdalloc_init_allocator(&std_alloc);
	git_stdalloc_init_allocator(&oom_alloc);

	oom_alloc.gmalloc = oom_malloc;
	oom_alloc.grealloc = oom_realloc;

29
	cl_git_pass(git_allocator_setup(&oom_alloc));
30 31
}

32
void test_str_oom__cleanup(void)
33
{
34
	cl_git_pass(git_allocator_setup(NULL));
35 36
}

37
void test_str_oom__grow(void)
38
{
39
	git_str buf = GIT_STR_INIT;
40

41 42
	cl_git_pass(git_str_grow(&buf, 42));
	cl_assert(!git_str_oom(&buf));
43

44 45
	cl_assert(git_str_grow(&buf, 101) == -1);
	cl_assert(git_str_oom(&buf));
46

47
	git_str_dispose(&buf);
48
}
49

50
void test_str_oom__grow_by(void)
51
{
52
	git_str buf = GIT_STR_INIT;
53

54 55
	cl_git_pass(git_str_grow_by(&buf, 42));
	cl_assert(!git_str_oom(&buf));
56

57 58
	cl_assert(git_str_grow_by(&buf, 101) == -1);
	cl_assert(git_str_oom(&buf));
59
}
60 61 62 63 64 65 66 67 68 69 70 71

void test_str_oom__allocation_failure(void)
{
	git_str buf = GIT_STR_INIT;

	cl_alloc_limit(10);

	cl_git_pass(git_str_puts(&buf, "foobar"));
	cl_git_fail(git_str_puts(&buf, "foobar"));

	cl_alloc_reset();
}