Do not fail if .gitignore is directory This is designed to fix libgit2sharp #350 where if .gitignore is a directory we abort all operations that process ignores instead of just skipping it as core git does. Also added test that fails without this change and passes with it.
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
diff --git a/src/attr.c b/src/attr.c
index a1d9932..9c88771 100644
--- a/src/attr.c
+++ b/src/attr.c
@@ -278,8 +278,14 @@ static int load_attr_file(
return GIT_ENOTFOUND;
error = git_futils_readbuffer(&content, filename);
- if (error < 0)
- return error;
+ if (error < 0) {
+ /* convert error into ENOTFOUND so failed permissions / invalid
+ * file type don't actually stop the operation in progress.
+ */
+ return GIT_ENOTFOUND;
+
+ /* TODO: once warnings are available, issue a warning callback */
+ }
*data = git_buf_detach(&content);
diff --git a/tests-clar/attr/ignore.c b/tests-clar/attr/ignore.c
index 943eafe..aa81e92 100644
--- a/tests-clar/attr/ignore.c
+++ b/tests-clar/attr/ignore.c
@@ -1,32 +1,48 @@
#include "clar_libgit2.h"
+#include "posix.h"
+#include "path.h"
static git_repository *g_repo = NULL;
void test_attr_ignore__initialize(void)
{
- g_repo = cl_git_sandbox_init("attr");
+ g_repo = cl_git_sandbox_init("attr");
}
void test_attr_ignore__cleanup(void)
{
- cl_git_sandbox_cleanup();
- g_repo = NULL;
+ cl_git_sandbox_cleanup();
+ g_repo = NULL;
}
void assert_is_ignored(bool expected, const char *filepath)
{
- int is_ignored;
+ int is_ignored;
- cl_git_pass(git_ignore_path_is_ignored(&is_ignored, g_repo, filepath));
- cl_assert_equal_i(expected, is_ignored == 1);
+ cl_git_pass(git_ignore_path_is_ignored(&is_ignored, g_repo, filepath));
+ cl_assert_equal_i(expected, is_ignored == 1);
}
void test_attr_ignore__honor_temporary_rules(void)
{
- cl_git_rewritefile("attr/.gitignore", "/NewFolder\n/NewFolder/NewFolder");
+ cl_git_rewritefile("attr/.gitignore", "/NewFolder\n/NewFolder/NewFolder");
- assert_is_ignored(false, "File.txt");
- assert_is_ignored(true, "NewFolder");
- assert_is_ignored(true, "NewFolder/NewFolder");
- assert_is_ignored(true, "NewFolder/NewFolder/File.txt");
+ assert_is_ignored(false, "File.txt");
+ assert_is_ignored(true, "NewFolder");
+ assert_is_ignored(true, "NewFolder/NewFolder");
+ assert_is_ignored(true, "NewFolder/NewFolder/File.txt");
+}
+
+void test_attr_ignore__skip_gitignore_directory(void)
+{
+ cl_git_rewritefile("attr/.git/info/exclude", "/NewFolder\n/NewFolder/NewFolder");
+ p_unlink("attr/.gitignore");
+ cl_assert(!git_path_exists("attr/.gitignore"));
+ p_mkdir("attr/.gitignore", 0777);
+ cl_git_mkfile("attr/.gitignore/garbage.txt", "new_file\n");
+
+ assert_is_ignored(false, "File.txt");
+ assert_is_ignored(true, "NewFolder");
+ assert_is_ignored(true, "NewFolder/NewFolder");
+ assert_is_ignored(true, "NewFolder/NewFolder/File.txt");
}