summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinquize <linquize@yahoo.com.hk>2014-09-23 23:21:41 +0800
committerCarlos Martín Nieto <cmn@dwim.me>2014-12-14 17:04:01 +0100
commitb8fefcb9ca85d16046dbf12a1d62399d4f4eb6be (patch)
tree08b70caa97b26bb1fdbd5b859f0f6f4834ffd7aa
parent5f4739475307665f88ff1d52b35f2b17d3a9b869 (diff)
downloadlibgit2-b8fefcb9ca85d16046dbf12a1d62399d4f4eb6be.tar.gz
Add test for prune refs
-rw-r--r--tests/network/fetchlocal.c128
1 files changed, 128 insertions, 0 deletions
diff --git a/tests/network/fetchlocal.c b/tests/network/fetchlocal.c
index 736261b31..188b8c758 100644
--- a/tests/network/fetchlocal.c
+++ b/tests/network/fetchlocal.c
@@ -48,6 +48,134 @@ void test_network_fetchlocal__complete(void)
git_repository_free(repo);
}
+void test_network_fetchlocal__prune(void)
+{
+ git_repository *repo;
+ git_remote *origin;
+ int callcount = 0;
+ git_strarray refnames = {0};
+ git_reference *ref;
+ git_repository *remote_repo = cl_git_sandbox_init("testrepo.git");
+ const char *url = cl_git_path_url(git_repository_path(remote_repo));
+ git_remote_callbacks callbacks = GIT_REMOTE_CALLBACKS_INIT;
+
+ callbacks.transfer_progress = transfer_cb;
+ callbacks.payload = &callcount;
+
+ cl_set_cleanup(&cleanup_local_repo, "foo");
+ cl_git_pass(git_repository_init(&repo, "foo", true));
+
+ cl_git_pass(git_remote_create(&origin, repo, GIT_REMOTE_ORIGIN, url));
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_connect(origin, GIT_DIRECTION_FETCH));
+ cl_git_pass(git_remote_download(origin));
+ cl_git_pass(git_remote_update_tips(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(19, (int)refnames.count);
+ cl_assert(callcount > 0);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ cl_git_pass(git_reference_lookup(&ref, remote_repo, "refs/heads/br2"));
+ cl_git_pass(git_reference_delete(ref));
+ git_reference_free(ref);
+
+ cl_git_pass(git_remote_load(&origin, repo, GIT_REMOTE_ORIGIN));
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_connect(origin, GIT_DIRECTION_FETCH));
+ cl_git_pass(git_remote_download(origin));
+ cl_git_pass(git_remote_prune(origin));
+ cl_git_pass(git_remote_update_tips(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(18, (int)refnames.count);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ cl_git_pass(git_reference_lookup(&ref, remote_repo, "refs/heads/packed"));
+ cl_git_pass(git_reference_delete(ref));
+ git_reference_free(ref);
+
+ cl_git_pass(git_remote_load(&origin, repo, GIT_REMOTE_ORIGIN));
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_connect(origin, GIT_DIRECTION_FETCH));
+ cl_git_pass(git_remote_download(origin));
+ cl_git_pass(git_remote_prune(origin));
+ cl_git_pass(git_remote_update_tips(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(17, (int)refnames.count);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ git_repository_free(remote_repo);
+ git_repository_free(repo);
+}
+
+void test_network_fetchlocal__fetchprune(void)
+{
+ git_repository *repo;
+ git_remote *origin;
+ int callcount = 0;
+ git_strarray refnames = {0};
+ git_reference *ref;
+ git_config *config;
+ git_repository *remote_repo = cl_git_sandbox_init("testrepo.git");
+ const char *url = cl_git_path_url(git_repository_path(remote_repo));
+ git_remote_callbacks callbacks = GIT_REMOTE_CALLBACKS_INIT;
+
+ callbacks.transfer_progress = transfer_cb;
+ callbacks.payload = &callcount;
+
+ cl_set_cleanup(&cleanup_local_repo, "foo");
+ cl_git_pass(git_repository_init(&repo, "foo", true));
+
+ cl_git_pass(git_remote_create(&origin, repo, GIT_REMOTE_ORIGIN, url));
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_fetch(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(19, (int)refnames.count);
+ cl_assert(callcount > 0);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ cl_git_pass(git_reference_lookup(&ref, remote_repo, "refs/heads/br2"));
+ cl_git_pass(git_reference_delete(ref));
+ git_reference_free(ref);
+
+ cl_git_pass(git_remote_load(&origin, repo, GIT_REMOTE_ORIGIN));
+ git_remote_set_prune_refs(origin, 1);
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_fetch(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(18, (int)refnames.count);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ cl_git_pass(git_reference_lookup(&ref, remote_repo, "refs/heads/packed"));
+ cl_git_pass(git_reference_delete(ref));
+ git_reference_free(ref);
+
+ cl_git_pass(git_repository_config(&config, repo));
+ cl_git_pass(git_config_set_bool(config, "remote.origin.prune", 1));
+ git_config_free(config);
+ cl_git_pass(git_remote_load(&origin, repo, GIT_REMOTE_ORIGIN));
+ cl_assert_equal_i(1, git_remote_prune_refs(origin));
+ git_remote_set_callbacks(origin, &callbacks);
+ cl_git_pass(git_remote_fetch(origin, NULL, NULL));
+
+ cl_git_pass(git_reference_list(&refnames, repo));
+ cl_assert_equal_i(17, (int)refnames.count);
+ git_strarray_free(&refnames);
+ git_remote_free(origin);
+
+ git_repository_free(remote_repo);
+ git_repository_free(repo);
+}
+
static void cleanup_sandbox(void *unused)
{
GIT_UNUSED(unused);