summaryrefslogtreecommitdiff
path: root/tests/refs/createwithlog.c
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-05-13 16:21:09 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-11-23 13:34:46 +0100
commitbba25f39a29c7913bab97fa6e8ac2ccb78ea33b6 (patch)
tree7ad4b0dc4d045e2614ac3057a2da27841dd74699 /tests/refs/createwithlog.c
parent92f95a170c76ffde80010cbbd6b03c0bf8dded1d (diff)
downloadlibgit2-bba25f39a29c7913bab97fa6e8ac2ccb78ea33b6.tar.gz
refs: Introduce git_reference_create_with_log()
Diffstat (limited to 'tests/refs/createwithlog.c')
-rw-r--r--tests/refs/createwithlog.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/refs/createwithlog.c b/tests/refs/createwithlog.c
new file mode 100644
index 000000000..10e10cec8
--- /dev/null
+++ b/tests/refs/createwithlog.c
@@ -0,0 +1,52 @@
+#include "clar_libgit2.h"
+
+#include "repository.h"
+#include "git2/reflog.h"
+#include "reflog.h"
+#include "ref_helpers.h"
+
+static const char *current_master_tip = "a65fedf39aefe402d3bb6e24df4d4f5fe4547750";
+static const char *current_head_target = "refs/heads/master";
+
+static git_repository *g_repo;
+
+void test_refs_createwithlog__initialize(void)
+{
+ g_repo = cl_git_sandbox_init("testrepo.git");
+}
+
+void test_refs_createwithlog__cleanup(void)
+{
+ cl_git_sandbox_cleanup();
+}
+
+void test_refs_createwithlog__creating_a_direct_reference_adds_a_reflog_entry(void)
+{
+ git_reference *reference;
+ git_oid id;
+ git_signature *signature;
+ git_reflog *reflog;
+ const git_reflog_entry *entry;
+
+ const char *name = "refs/heads/new-head";
+ const char *message = "You've been logged, mate!";
+
+ git_oid_fromstr(&id, current_master_tip);
+
+ cl_git_pass(git_signature_now(&signature, "foo", "foo@bar"));
+
+ cl_git_pass(
+ git_reference_create_with_log(&reference, g_repo, name, &id, 0, signature, message));
+
+ cl_git_pass(git_reflog_read(&reflog, reference));
+ cl_assert_equal_sz(1, git_reflog_entrycount(reflog));
+
+ entry = git_reflog_entry_byindex(reflog, 0);
+ cl_assert(git_oid_streq(&entry->oid_old, GIT_OID_HEX_ZERO) == 0);
+ cl_assert(git_oid_cmp(&id, &entry->oid_cur) == 0);
+ cl_assert_equal_s(message, entry->msg);
+
+ git_reflog_free(reflog);
+ git_reference_free(reference);
+ git_signature_free(signature);
+}