clar_libgit2.h 3.54 KB
Newer Older
1 2
#ifndef __CLAR_LIBGIT2__
#define __CLAR_LIBGIT2__
Vicent Marti committed
3

4
#include "clar.h"
Vicent Marti committed
5 6 7 8
#include <git2.h>
#include "common.h"

/**
9 10
 * Replace for `clar_must_pass` that passes the last library error as the
 * test failure message.
Vicent Marti committed
11
 *
12
 * Use this wrapper around all `git_` library calls that return error codes!
Vicent Marti committed
13 14
 */
#define cl_git_pass(expr) do { \
15
	int _lg2_error; \
16
	giterr_clear(); \
17 18 19
	if ((_lg2_error = (expr)) != 0) \
		cl_git_report_failure(_lg2_error, __FILE__, __LINE__, "Function call failed: " #expr); \
	} while (0)
Vicent Marti committed
20 21

/**
22
 * Wrapper for `clar_must_fail` -- this one is
Vicent Marti committed
23 24 25
 * just for consistency. Use with `git_` library
 * calls that are supposed to fail!
 */
26
#define cl_git_fail(expr) cl_must_fail(expr)
Vicent Marti committed
27

28 29 30 31
#define cl_git_fail_with(expr, error) cl_assert_equal_i(error,expr)

void cl_git_report_failure(int, const char *, int, const char *);

32 33 34
#define cl_assert_at_line(expr,file,line) \
	clar__assert((expr) != 0, file, line, "Expression is not true: " #expr, NULL, 1)

35 36 37 38 39 40 41 42 43 44 45
GIT_INLINE(void) clar__assert_in_range(
	int lo, int val, int hi,
	const char *file, int line, const char *err, int should_abort)
{
	if (lo > val || hi < val) {
		char buf[128];
		snprintf(buf, sizeof(buf), "%d not in [%d,%d]", val, lo, hi);
		clar__fail(file, line, err, buf, should_abort);
	}
}

46
#define cl_assert_equal_sz(sz1,sz2) do { \
nulltoken committed
47
	size_t __sz1 = (size_t)(sz1), __sz2 = (size_t)(sz2); \
48 49 50
	clar__assert_equal(__FILE__,__LINE__,#sz1 " != " #sz2, 1, "%"PRIuZ, __sz1, __sz2); \
} while (0)

51 52 53
#define cl_assert_in_range(L,V,H) \
	clar__assert_in_range((L),(V),(H),__FILE__,__LINE__,"Range check: " #V " in [" #L "," #H "]", 1)

54
#define cl_assert_equal_file(DATA,SIZE,PATH) \
nulltoken committed
55
	clar__assert_equal_file(DATA,SIZE,0,PATH,__FILE__,(int)__LINE__)
56 57

#define cl_assert_equal_file_ignore_cr(DATA,SIZE,PATH) \
nulltoken committed
58
	clar__assert_equal_file(DATA,SIZE,1,PATH,__FILE__,(int)__LINE__)
59 60 61 62 63 64 65

void clar__assert_equal_file(
	const char *expected_data,
	size_t expected_size,
	int ignore_cr,
	const char *path,
	const char *file,
nulltoken committed
66
	int line);
67

68 69 70 71 72 73 74 75 76
/*
 * Some utility macros for building long strings
 */
#define REP4(STR)	 STR STR STR STR
#define REP15(STR)	 REP4(STR) REP4(STR) REP4(STR) STR STR STR
#define REP16(STR)	 REP4(REP4(STR))
#define REP256(STR)  REP16(REP16(STR))
#define REP1024(STR) REP4(REP256(STR))

77 78
/* Write the contents of a buffer to disk */
void cl_git_mkfile(const char *filename, const char *content);
79
void cl_git_append2file(const char *filename, const char *new_content);
80
void cl_git_rewritefile(const char *filename, const char *new_content);
81 82
void cl_git_write2file(const char *path, const char *data,
	size_t datalen, int flags, unsigned int mode);
83

84 85 86
bool cl_toggle_filemode(const char *filename);
bool cl_is_chmod_supported(void);

87 88 89 90
/* Environment wrappers */
char *cl_getenv(const char *name);
int cl_setenv(const char *name, const char *value);

91 92 93
/* Reliable rename */
int cl_rename(const char *source, const char *dest);

94 95 96 97
/* Git sandbox setup helpers */

git_repository *cl_git_sandbox_init(const char *sandbox);
void cl_git_sandbox_cleanup(void);
98
git_repository *cl_git_sandbox_reopen(void);
99

100 101 102 103
/* Local-repo url helpers */
const char* cl_git_fixture_url(const char *fixturename);
const char* cl_git_path_url(const char *path);

104 105 106
/* Test repository cleaner */
int cl_git_remove_placeholders(const char *directory_path, const char *filename);

107 108 109 110 111 112 113 114
/* commit creation helpers */
void cl_repo_commit_from_index(
	git_oid *out,
	git_repository *repo,
	git_signature *sig,
	git_time_t time,
	const char *msg);

115 116
/* config setting helpers */
void cl_repo_set_bool(git_repository *repo, const char *cfg, int value);
117
int cl_repo_get_bool(git_repository *repo, const char *cfg);
118

Vicent Marti committed
119
#endif