Make sure that `fetch --prune --tags` doesn't remove tags.
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
diff --git a/tests/network/fetchlocal.c b/tests/network/fetchlocal.c
index 1996a70..49a14db 100644
--- a/tests/network/fetchlocal.c
+++ b/tests/network/fetchlocal.c
@@ -4,6 +4,10 @@
#include "path.h"
#include "remote.h"
+static const char* tagger_name = "Vicent Marti";
+static const char* tagger_email = "vicent@github.com";
+static const char* tagger_message = "This is my tag.\n\nThere are many tags, but this one is mine\n";
+
static int transfer_cb(const git_transfer_progress *stats, void *payload)
{
int *callcount = (int*)payload;
@@ -238,6 +242,61 @@ void test_network_fetchlocal__fetchprune(void)
git_repository_free(repo);
}
+void test_network_fetchlocal__prune_tag(void)
+{
+ git_repository *repo;
+ git_remote *origin;
+ int callcount = 0;
+ git_reference *ref;
+ git_config *config;
+ git_oid tag_id;
+ git_signature *tagger;
+ git_object *obj;
+
+ 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, NULL));
+
+ cl_git_pass(git_revparse_single(&obj, repo, "origin/master"));
+
+ cl_git_pass(git_reference_create(&ref, repo, "refs/remotes/origin/fake-remote", git_object_id(obj), 1, NULL, NULL));
+
+ /* create signature */
+ cl_git_pass(git_signature_new(&tagger, tagger_name, tagger_email, 123456789, 60));
+
+ cl_git_pass(
+ git_tag_create(&tag_id, repo,
+ "some-tag", obj, tagger, tagger_message, 0)
+ );
+
+ 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_lookup(&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, NULL));
+
+ cl_git_pass(git_revparse_single(&obj, repo, "some-tag"));
+ cl_git_fail(git_revparse_single(&obj, repo, "refs/remotes/origin/fake-remote"));
+
+ git_object_free(obj);
+ git_remote_free(origin);
+
+ git_repository_free(remote_repo);
+ git_repository_free(repo);
+}
+
static void cleanup_sandbox(void *unused)
{
GIT_UNUSED(unused);