mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-02 16:34:37 +00:00
109 lines
3.1 KiB
C
109 lines
3.1 KiB
C
#include "clar_libgit2.h"
|
|
#include "git2/attr.h"
|
|
|
|
void test_attr_flags__cleanup(void)
|
|
{
|
|
cl_git_sandbox_cleanup();
|
|
}
|
|
|
|
void test_attr_flags__bare(void)
|
|
{
|
|
git_repository *repo = cl_git_sandbox_init("testrepo.git");
|
|
const char *value;
|
|
|
|
cl_assert(git_repository_is_bare(repo));
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM, "README.md", "diff"));
|
|
cl_assert(GIT_ATTR_UNSPECIFIED(value));
|
|
}
|
|
|
|
void test_attr_flags__index_vs_workdir(void)
|
|
{
|
|
git_repository *repo = cl_git_sandbox_init("attr_index");
|
|
const char *value;
|
|
|
|
cl_assert(!git_repository_is_bare(repo));
|
|
|
|
/* wd then index */
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"README.md", "bar"));
|
|
cl_assert(GIT_ATTR_FALSE(value));
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"README.md", "blargh"));
|
|
cl_assert_equal_s(value, "goop");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"README.txt", "foo"));
|
|
cl_assert(GIT_ATTR_FALSE(value));
|
|
|
|
/* index then wd */
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"README.md", "bar"));
|
|
cl_assert(GIT_ATTR_TRUE(value));
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"README.md", "blargh"));
|
|
cl_assert_equal_s(value, "garble");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"README.txt", "foo"));
|
|
cl_assert(GIT_ATTR_TRUE(value));
|
|
}
|
|
|
|
void test_attr_flags__subdir(void)
|
|
{
|
|
git_repository *repo = cl_git_sandbox_init("attr_index");
|
|
const char *value;
|
|
|
|
/* wd then index */
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"sub/sub/README.md", "bar"));
|
|
cl_assert_equal_s(value, "1234");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"sub/sub/README.txt", "another"));
|
|
cl_assert_equal_s(value, "one");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"sub/sub/README.txt", "again"));
|
|
cl_assert(GIT_ATTR_TRUE(value));
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_FILE_THEN_INDEX,
|
|
"sub/sub/README.txt", "beep"));
|
|
cl_assert_equal_s(value, "10");
|
|
|
|
/* index then wd */
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"sub/sub/README.md", "bar"));
|
|
cl_assert_equal_s(value, "1337");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"sub/sub/README.txt", "another"));
|
|
cl_assert_equal_s(value, "one");
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"sub/sub/README.txt", "again"));
|
|
cl_assert(GIT_ATTR_TRUE(value));
|
|
|
|
cl_git_pass(git_attr_get(
|
|
&value, repo, GIT_ATTR_CHECK_NO_SYSTEM | GIT_ATTR_CHECK_INDEX_THEN_FILE,
|
|
"sub/sub/README.txt", "beep"));
|
|
cl_assert_equal_s(value, "5");
|
|
}
|
|
|