]> git.proxmox.com Git - libgit2.git/blobdiff - tests/repo/head.c
New upstream version 1.4.3+dfsg.1
[libgit2.git] / tests / repo / head.c
index 31c22877768dfc5ea404cb19f24382ceee226554..8229905559641d4b20990fa89ee17f0cce9ae95f 100644 (file)
@@ -18,40 +18,6 @@ void test_repo_head__cleanup(void)
        cl_git_sandbox_cleanup();
 }
 
-static void check_last_reflog_entry(const char *email, const char *message)
-{
-       git_reflog *log;
-       const git_reflog_entry *entry;
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       cl_assert(git_reflog_entrycount(log) > 0);
-       entry = git_reflog_entry_byindex(log, 0);
-       if (email)
-               cl_assert_equal_s(email, git_reflog_entry_committer(entry)->email);
-       if (message)
-               cl_assert_equal_s(message, git_reflog_entry_message(entry));
-       git_reflog_free(log);
-}
-
-void test_repo_head__head_detached(void)
-{
-       git_reference *ref;
-
-       cl_assert_equal_i(false, git_repository_head_detached(repo));
-
-       cl_git_pass(git_repository_detach_head(repo));
-       check_last_reflog_entry(g_email, "checkout: moving from master to a65fedf39aefe402d3bb6e24df4d4f5fe4547750");
-       cl_assert_equal_i(true, git_repository_head_detached(repo));
-
-       /* take the repo back to it's original state */
-       cl_git_pass(git_reference_symbolic_create(&ref, repo, "HEAD", "refs/heads/master",
-                               true, "REATTACH"));
-       git_reference_free(ref);
-
-       check_last_reflog_entry(g_email, "REATTACH");
-       cl_assert_equal_i(false, git_repository_head_detached(repo));
-}
-
 void test_repo_head__unborn_head(void)
 {
        git_reference *ref;
@@ -114,7 +80,7 @@ static void assert_head_is_correctly_detached(void)
 
        cl_git_pass(git_repository_head(&head, repo));
 
-       cl_git_pass(git_object_lookup(&commit, repo, git_reference_target(head), GIT_OBJ_COMMIT));
+       cl_git_pass(git_object_lookup(&commit, repo, git_reference_target(head), GIT_OBJECT_COMMIT));
 
        git_object_free(commit);
        git_reference_free(head);
@@ -154,7 +120,7 @@ void test_repo_head__set_head_detached_Detaches_HEAD_and_make_it_point_to_the_pe
        git_object *tag;
 
        cl_git_pass(git_revparse_single(&tag, repo, "tags/test"));
-       cl_assert_equal_i(GIT_OBJ_TAG, git_object_type(tag));
+       cl_assert_equal_i(GIT_OBJECT_TAG, git_object_type(tag));
 
        cl_git_pass(git_repository_set_head_detached(repo, git_object_id(tag)));
 
@@ -214,248 +180,3 @@ void test_repo_head__can_tell_if_an_unborn_head_is_detached(void)
 
        cl_assert_equal_i(false, git_repository_head_detached(repo));
 }
-
-static void test_reflog(git_repository *repo, size_t idx,
-               const char *old_spec, const char *new_spec,
-               const char *email, const char *message)
-{
-       git_reflog *log;
-       const git_reflog_entry *entry;
-
-       cl_git_pass(git_reflog_read(&log, repo, "HEAD"));
-       entry = git_reflog_entry_byindex(log, idx);
-
-       if (old_spec) {
-               git_object *obj;
-               cl_git_pass(git_revparse_single(&obj, repo, old_spec));
-               cl_assert_equal_oid(git_object_id(obj), git_reflog_entry_id_old(entry));
-               git_object_free(obj);
-       }
-       if (new_spec) {
-               git_object *obj;
-               cl_git_pass(git_revparse_single(&obj, repo, new_spec));
-               cl_assert_equal_oid(git_object_id(obj), git_reflog_entry_id_new(entry));
-               git_object_free(obj);
-       }
-
-       if (email) {
-               cl_assert_equal_s(email, git_reflog_entry_committer(entry)->email);
-       }
-       if (message) {
-               cl_assert_equal_s(message, git_reflog_entry_message(entry));
-       }
-
-       git_reflog_free(log);
-}
-
-void test_repo_head__setting_head_updates_reflog(void)
-{
-       git_object *tag;
-       git_signature *sig;
-       git_annotated_commit *annotated;
-
-       cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));
-
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/unborn"));
-       cl_git_pass(git_revparse_single(&tag, repo, "tags/test"));
-       cl_git_pass(git_repository_set_head_detached(repo, git_object_id(tag)));
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-
-       test_reflog(repo, 2, NULL, "refs/heads/haacked", "foo@example.com", "checkout: moving from master to haacked");
-       test_reflog(repo, 1, NULL, "tags/test^{commit}", "foo@example.com", "checkout: moving from unborn to e90810b8df3e80c413d903f631643c716887138d");
-       test_reflog(repo, 0, "tags/test^{commit}", "refs/heads/haacked", "foo@example.com", "checkout: moving from e90810b8df3e80c413d903f631643c716887138d to haacked");
-
-       cl_git_pass(git_annotated_commit_from_revspec(&annotated, repo, "haacked~0"));
-       cl_git_pass(git_repository_set_head_detached_from_annotated(repo, annotated));
-
-       test_reflog(repo, 0, NULL, "refs/heads/haacked", "foo@example.com", "checkout: moving from haacked to haacked~0");
-
-       git_annotated_commit_free(annotated);
-       git_object_free(tag);
-       git_signature_free(sig);
-}
-
-static void assert_head_reflog(git_repository *repo, size_t idx,
-                              const char *old_id, const char *new_id, const char *message)
-{
-       git_reflog *log;
-       const git_reflog_entry *entry;
-       char id_str[GIT_OID_HEXSZ + 1] = {0};
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       entry = git_reflog_entry_byindex(log, idx);
-
-       git_oid_fmt(id_str, git_reflog_entry_id_old(entry));
-       cl_assert_equal_s(old_id, id_str);
-
-       git_oid_fmt(id_str, git_reflog_entry_id_new(entry));
-       cl_assert_equal_s(new_id, id_str);
-
-       cl_assert_equal_s(message, git_reflog_entry_message(entry));
-
-       git_reflog_free(log);
-}
-
-void test_repo_head__detaching_writes_reflog(void)
-{
-       git_signature *sig;
-       git_oid id;
-       const char *msg;
-
-       cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));
-
-       msg = "checkout: moving from master to e90810b8df3e80c413d903f631643c716887138d";
-       git_oid_fromstr(&id, "e90810b8df3e80c413d903f631643c716887138d");
-       cl_git_pass(git_repository_set_head_detached(repo, &id));
-       assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
-                          "e90810b8df3e80c413d903f631643c716887138d", msg);
-
-       msg = "checkout: moving from e90810b8df3e80c413d903f631643c716887138d to haacked";
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-       assert_head_reflog(repo, 0, "e90810b8df3e80c413d903f631643c716887138d",
-                          "258f0e2a959a364e40ed6603d5d44fbb24765b10", msg);
-
-       git_signature_free(sig);
-}
-
-void test_repo_head__orphan_branch_does_not_count(void)
-{
-       git_oid id;
-       const char *msg;
-
-       /* Have something known */
-       msg = "checkout: moving from master to e90810b8df3e80c413d903f631643c716887138d";
-       git_oid_fromstr(&id, "e90810b8df3e80c413d903f631643c716887138d");
-       cl_git_pass(git_repository_set_head_detached(repo, &id));
-       assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
-                          "e90810b8df3e80c413d903f631643c716887138d", msg);
-
-       /* Switching to an orphan branch does not write tot he reflog */
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/orphan"));
-       assert_head_reflog(repo, 0, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750",
-                          "e90810b8df3e80c413d903f631643c716887138d", msg);
-
-       /* And coming back, we set the source to zero */
-       msg = "checkout: moving from orphan to haacked";
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-       assert_head_reflog(repo, 0, "0000000000000000000000000000000000000000",
-                          "258f0e2a959a364e40ed6603d5d44fbb24765b10", msg);
-}
-
-void test_repo_head__set_to_current_target(void)
-{
-       git_reflog *log;
-       size_t nentries, nentries_after;
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       nentries = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/haacked"));
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       nentries_after = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       cl_assert_equal_i(nentries + 1, nentries_after);
-}
-
-void test_repo_head__branch_birth(void)
-{
-       git_signature *sig;
-       git_oid id;
-       git_tree *tree;
-       git_reference *ref;
-       const char *msg;
-       git_reflog *log;
-       size_t nentries, nentries_after;
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       nentries = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));
-
-       cl_git_pass(git_repository_head(&ref, repo));
-       cl_git_pass(git_reference_peel((git_object **) &tree, ref, GIT_OBJ_TREE));
-       git_reference_free(ref);
-
-       cl_git_pass(git_repository_set_head(repo, "refs/heads/orphan"));
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       nentries_after = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       cl_assert_equal_i(nentries, nentries_after);
-
-       msg = "message 2";
-       cl_git_pass(git_commit_create(&id, repo, "HEAD", sig, sig, NULL, msg, tree, 0, NULL));
-
-       git_tree_free(tree);
-
-       cl_git_pass(git_reflog_read(&log, repo, "refs/heads/orphan"));
-       cl_assert_equal_i(1, git_reflog_entrycount(log));
-       git_reflog_free(log);
-
-       cl_git_pass(git_reflog_read(&log, repo, GIT_HEAD_FILE));
-       nentries_after = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       cl_assert_equal_i(nentries + 1, nentries_after);
-
-       git_signature_free(sig);
-
-}
-
-static size_t entrycount(git_repository *repo, const char *name)
-{
-       git_reflog *log;
-       size_t ret;
-
-       cl_git_pass(git_reflog_read(&log, repo, name));
-       ret = git_reflog_entrycount(log);
-       git_reflog_free(log);
-
-       return ret;
-}
-
-void test_repo_head__symref_chain(void)
-{
-       git_signature *sig;
-       git_oid id;
-       git_tree *tree;
-       git_reference *ref;
-       const char *msg;
-       size_t nentries, nentries_master;
-
-       nentries = entrycount(repo, GIT_HEAD_FILE);
-
-       cl_git_pass(git_signature_now(&sig, "me", "foo@example.com"));
-
-       cl_git_pass(git_repository_head(&ref, repo));
-       cl_git_pass(git_reference_peel((git_object **) &tree, ref, GIT_OBJ_TREE));
-       git_reference_free(ref);
-
-       nentries_master = entrycount(repo, "refs/heads/master");
-
-       msg = "message 1";
-       cl_git_pass(git_reference_symbolic_create(&ref, repo, "refs/heads/master", "refs/heads/foo", 1, msg));
-       git_reference_free(ref);
-
-       cl_assert_equal_i(0, entrycount(repo, "refs/heads/foo"));
-       cl_assert_equal_i(nentries, entrycount(repo, GIT_HEAD_FILE));
-       cl_assert_equal_i(nentries_master, entrycount(repo, "refs/heads/master"));
-
-       msg = "message 2";
-       cl_git_pass(git_commit_create(&id, repo, "HEAD", sig, sig, NULL, msg, tree, 0, NULL));
-       git_tree_free(tree);
-
-       cl_assert_equal_i(1, entrycount(repo, "refs/heads/foo"));
-       cl_assert_equal_i(nentries +1, entrycount(repo, GIT_HEAD_FILE));
-       cl_assert_equal_i(nentries_master, entrycount(repo, "refs/heads/master"));
-
-       git_signature_free(sig);
-
-}