conditionals.c 5.82 KB
Newer Older
1
#include "clar_libgit2.h"
2
#include "futils.h"
3
#include "repository.h"
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

#ifdef GIT_WIN32
# define ROOT_PREFIX "C:"
#else
# define ROOT_PREFIX
#endif

static git_repository *_repo;

void test_config_conditionals__initialize(void)
{
	_repo = cl_git_sandbox_init("empty_standard_repo");
}

void test_config_conditionals__cleanup(void)
{
	cl_git_sandbox_cleanup();
}

static void assert_condition_includes(const char *keyword, const char *path, bool expected)
{
25 26
	git_buf value = GIT_BUF_INIT;
	git_str buf = GIT_STR_INIT;
27
	git_config *cfg;
28

29 30
	cl_git_pass(git_str_printf(&buf, "[includeIf \"%s:%s\"]\n", keyword, path));
	cl_git_pass(git_str_puts(&buf, "path = other\n"));
31 32 33 34 35

	cl_git_mkfile("empty_standard_repo/.git/config", buf.ptr);
	cl_git_mkfile("empty_standard_repo/.git/other", "[foo]\nbar=baz\n");
	_repo = cl_git_sandbox_reopen();

36 37
	git_str_dispose(&buf);

38 39 40
	cl_git_pass(git_repository_config(&cfg, _repo));

	if (expected) {
41 42
		cl_git_pass(git_config_get_string_buf(&value, cfg, "foo.bar"));
		cl_assert_equal_s("baz", value.ptr);
43 44
	} else {
		cl_git_fail_with(GIT_ENOTFOUND,
45
				 git_config_get_string_buf(&value, cfg, "foo.bar"));
46 47
	}

48 49
	git_str_dispose(&buf);
	git_buf_dispose(&value);
50 51 52
	git_config_free(cfg);
}

53
static char *sandbox_path(git_str *buf, const char *suffix)
54 55 56
{
	char *path = p_realpath(clar_sandbox_path(), NULL);
	cl_assert(path);
57 58
	cl_git_pass(git_str_attach(buf, path, 0));
	cl_git_pass(git_str_joinpath(buf, buf->ptr, suffix));
59 60 61
	return buf->ptr;
}

62 63
void test_config_conditionals__gitdir(void)
{
64
	git_str path = GIT_STR_INIT;
65 66

	assert_condition_includes("gitdir", ROOT_PREFIX "/", true);
67 68 69 70 71 72 73
	assert_condition_includes("gitdir", "empty_stand", false);
	assert_condition_includes("gitdir", "empty_stand/", false);
	assert_condition_includes("gitdir", "empty_stand/.git", false);
	assert_condition_includes("gitdir", "empty_stand/.git/", false);
	assert_condition_includes("gitdir", "empty_stand*/", true);
	assert_condition_includes("gitdir", "empty_stand*/.git", true);
	assert_condition_includes("gitdir", "empty_stand*/.git/", false);
74
	assert_condition_includes("gitdir", "empty_standard_repo", false);
75
	assert_condition_includes("gitdir", "empty_standard_repo/", true);
76 77 78 79
	assert_condition_includes("gitdir", "empty_standard_repo/.git", true);
	assert_condition_includes("gitdir", "empty_standard_repo/.git/", false);

	assert_condition_includes("gitdir", "./", false);
80 81 82 83 84

	assert_condition_includes("gitdir", ROOT_PREFIX "/nonexistent", false);
	assert_condition_includes("gitdir", ROOT_PREFIX "/empty_standard_repo", false);
	assert_condition_includes("gitdir", "~/empty_standard_repo", false);

85
	assert_condition_includes("gitdir", sandbox_path(&path, "/"), true);
86
	assert_condition_includes("gitdir", sandbox_path(&path, "/*"), false);
87
	assert_condition_includes("gitdir", sandbox_path(&path, "/**"), true);
88

89
	assert_condition_includes("gitdir", sandbox_path(&path, "empty_standard_repo"), false);
90 91 92 93
	assert_condition_includes("gitdir", sandbox_path(&path, "empty_standard_repo/"), true);
	assert_condition_includes("gitdir", sandbox_path(&path, "empty_standard_repo/"), true);
	assert_condition_includes("gitdir", sandbox_path(&path, "Empty_Standard_Repo"), false);
	assert_condition_includes("gitdir", sandbox_path(&path, "Empty_Standard_Repo/"), false);
94

95
	git_str_dispose(&path);
96 97
}

98 99
void test_config_conditionals__gitdir_i(void)
{
100
	git_str path = GIT_STR_INIT;
101

102 103
	assert_condition_includes("gitdir/i", sandbox_path(&path, "empty_standard_repo/"), true);
	assert_condition_includes("gitdir/i", sandbox_path(&path, "EMPTY_STANDARD_REPO/"), true);
104

105
	git_str_dispose(&path);
106 107
}

108 109 110 111
void test_config_conditionals__invalid_conditional_fails(void)
{
	assert_condition_includes("foobar", ".git", false);
}
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

static void set_head(git_repository *repo, const char *name)
{
	cl_git_pass(git_repository_create_head(git_repository_path(repo), name));
}

void test_config_conditionals__onbranch(void)
{
	assert_condition_includes("onbranch", "master", true);
	assert_condition_includes("onbranch", "m*", true);
	assert_condition_includes("onbranch", "*", true);
	assert_condition_includes("onbranch", "master/", false);
	assert_condition_includes("onbranch", "foo", false);

	set_head(_repo, "foo");
	assert_condition_includes("onbranch", "master", false);
	assert_condition_includes("onbranch", "foo", true);
	assert_condition_includes("onbranch", "f*o", true);

	set_head(_repo, "dir/ref");
	assert_condition_includes("onbranch", "dir/ref", true);
	assert_condition_includes("onbranch", "dir/", true);
	assert_condition_includes("onbranch", "dir/*", true);
	assert_condition_includes("onbranch", "dir/**", true);
	assert_condition_includes("onbranch", "**", true);
	assert_condition_includes("onbranch", "dir", false);
	assert_condition_includes("onbranch", "dir*", false);

	set_head(_repo, "dir/subdir/ref");
	assert_condition_includes("onbranch", "dir/subdir/", true);
	assert_condition_includes("onbranch", "dir/subdir/*", true);
	assert_condition_includes("onbranch", "dir/subdir/ref", true);
	assert_condition_includes("onbranch", "dir/", true);
	assert_condition_includes("onbranch", "dir/**", true);
	assert_condition_includes("onbranch", "**", true);
	assert_condition_includes("onbranch", "dir", false);
	assert_condition_includes("onbranch", "dir*", false);
	assert_condition_includes("onbranch", "dir/*", false);
}
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

void test_config_conditionals__empty(void)
{
	git_buf value = GIT_BUF_INIT;
	git_str buf = GIT_STR_INIT;
	git_config *cfg;

	cl_git_pass(git_str_puts(&buf, "[includeIf]\n"));
	cl_git_pass(git_str_puts(&buf, "path = other\n"));

	cl_git_mkfile("empty_standard_repo/.git/config", buf.ptr);
	cl_git_mkfile("empty_standard_repo/.git/other", "[foo]\nbar=baz\n");
	_repo = cl_git_sandbox_reopen();

	git_str_dispose(&buf);

	cl_git_pass(git_repository_config(&cfg, _repo));

	cl_git_fail_with(GIT_ENOTFOUND,
		git_config_get_string_buf(&value, cfg, "foo.bar"));

	git_str_dispose(&buf);
	git_buf_dispose(&value);
	git_config_free(cfg);
}