summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Strapetz <marc.strapetz@gmail.com>2016-03-22 10:27:50 +0100
committerEdward Thomson <ethomson@github.com>2016-03-24 15:59:49 -0400
commit8152a748211f7a9c1a4ee8d28746ca20deb8928e (patch)
tree8c687fe2c9ad3f65c516f81ed94ec2ac080bd2fd
parent9eb9e5fa87667b823f73265c88a87f314d47aaf7 (diff)
downloadlibgit2-8152a748211f7a9c1a4ee8d28746ca20deb8928e.tar.gz
iterator: more pathlist-related tests should test actual paths
-rw-r--r--tests/iterator/tree.c22
-rw-r--r--tests/iterator/workdir.c7
2 files changed, 23 insertions, 6 deletions
diff --git a/tests/iterator/tree.c b/tests/iterator/tree.c
index 8e1130aab..b4d0f40f3 100644
--- a/tests/iterator/tree.c
+++ b/tests/iterator/tree.c
@@ -979,6 +979,13 @@ void test_iterator_tree__pathlist_with_directory(void)
git_vector filelist;
git_tree *tree;
+ const char *expected[] = { "subdir/README", "subdir/new.txt",
+ "subdir/subdir2/README", "subdir/subdir2/new.txt" };
+ size_t expected_len = 4;
+
+ const char *expected2[] = { "subdir/subdir2/README", "subdir/subdir2/new.txt" };
+ size_t expected_len2 = 2;
+
g_repo = cl_git_sandbox_init("testrepo2");
git_repository_head_tree(&tree, g_repo);
@@ -987,9 +994,10 @@ void test_iterator_tree__pathlist_with_directory(void)
i_opts.pathlist.strings = (char **)filelist.contents;
i_opts.pathlist.count = filelist.length;
+ i_opts.flags |= GIT_ITERATOR_DONT_IGNORE_CASE;
cl_git_pass(git_iterator_for_tree(&i, tree, &i_opts));
- expect_iterator_items(i, 4, NULL, 4, NULL);
+ expect_iterator_items(i, expected_len, expected, expected_len, expected);
git_iterator_free(i);
git_vector_clear(&filelist);
@@ -999,7 +1007,7 @@ void test_iterator_tree__pathlist_with_directory(void)
i_opts.pathlist.count = filelist.length;
cl_git_pass(git_iterator_for_tree(&i, tree, &i_opts));
- expect_iterator_items(i, 4, NULL, 4, NULL);
+ expect_iterator_items(i, expected_len, expected, expected_len, expected);
git_iterator_free(i);
git_vector_clear(&filelist);
@@ -1009,7 +1017,7 @@ void test_iterator_tree__pathlist_with_directory(void)
i_opts.pathlist.count = filelist.length;
cl_git_pass(git_iterator_for_tree(&i, tree, &i_opts));
- expect_iterator_items(i, 2, NULL, 2, NULL);
+ expect_iterator_items(i, expected_len2, expected2, expected_len2, expected2);
git_iterator_free(i);
git_vector_free(&filelist);
@@ -1022,18 +1030,22 @@ void test_iterator_tree__pathlist_with_directory_include_tree_nodes(void)
git_vector filelist;
git_tree *tree;
+ const char *expected[] = { "subdir/", "subdir/README", "subdir/new.txt",
+ "subdir/subdir2/", "subdir/subdir2/README", "subdir/subdir2/new.txt" };
+ size_t expected_len = 6;
+
g_repo = cl_git_sandbox_init("testrepo2");
git_repository_head_tree(&tree, g_repo);
cl_git_pass(git_vector_init(&filelist, 100, &git__strcmp_cb));
cl_git_pass(git_vector_insert(&filelist, "subdir"));
- i_opts.flags |= GIT_ITERATOR_INCLUDE_TREES;
i_opts.pathlist.strings = (char **)filelist.contents;
i_opts.pathlist.count = filelist.length;
+ i_opts.flags |= GIT_ITERATOR_DONT_IGNORE_CASE | GIT_ITERATOR_INCLUDE_TREES;
cl_git_pass(git_iterator_for_tree(&i, tree, &i_opts));
- expect_iterator_items(i, 6, NULL, 6, NULL);
+ expect_iterator_items(i, expected_len, expected, expected_len, expected);
git_iterator_free(i);
git_vector_free(&filelist);
diff --git a/tests/iterator/workdir.c b/tests/iterator/workdir.c
index 2df8ef53e..389d8a1b6 100644
--- a/tests/iterator/workdir.c
+++ b/tests/iterator/workdir.c
@@ -1410,6 +1410,10 @@ void test_iterator_workdir__pathlist_with_directory(void)
git_iterator_options i_opts = GIT_ITERATOR_OPTIONS_INIT;
git_vector filelist;
+ const char *expected[] = { "subdir/README", "subdir/new.txt",
+ "subdir/subdir2/README", "subdir/subdir2/new.txt" };
+ size_t expected_len = 4;
+
cl_git_pass(git_vector_init(&filelist, 100, &git__strcmp_cb));
cl_git_pass(git_vector_insert(&filelist, "subdir/"));
@@ -1417,9 +1421,10 @@ void test_iterator_workdir__pathlist_with_directory(void)
i_opts.pathlist.strings = (char **)filelist.contents;
i_opts.pathlist.count = filelist.length;
+ i_opts.flags |= GIT_ITERATOR_DONT_IGNORE_CASE;
cl_git_pass(git_iterator_for_workdir(&i, g_repo, NULL, NULL, &i_opts));
- expect_iterator_items(i, 4, NULL, 4, NULL);
+ expect_iterator_items(i, expected_len, expected, expected_len, expected);
git_iterator_free(i);
git_vector_free(&filelist);