summaryrefslogtreecommitdiff
path: root/tests/reset/hard.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reset/hard.c')
-rw-r--r--tests/reset/hard.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/reset/hard.c b/tests/reset/hard.c
index 88055adda..149973374 100644
--- a/tests/reset/hard.c
+++ b/tests/reset/hard.c
@@ -235,3 +235,55 @@ void test_reset_hard__reflog_is_correct(void)
git_annotated_commit_free(annotated);
}
+
+void test_reset_hard__switch_file_to_dir(void)
+{
+ git_index_entry entry = { 0 };
+ git_index *idx;
+ git_object *commit;
+ git_tree *tree;
+ git_signature *sig;
+ git_oid src_tree_id, tgt_tree_id;
+ git_oid src_id, tgt_id;
+
+ entry.mode = GIT_FILEMODE_BLOB;
+ cl_git_pass(git_oid_fromstr(&entry.id, "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391"));
+ cl_git_pass(git_index_new(&idx));
+ cl_git_pass(git_signature_now(&sig, "foo", "bar"));
+
+ /* Create the old tree */
+ entry.path = "README";
+ cl_git_pass(git_index_add(idx, &entry));
+ entry.path = "dir";
+ cl_git_pass(git_index_add(idx, &entry));
+
+ cl_git_pass(git_index_write_tree_to(&src_tree_id, idx, repo));
+ cl_git_pass(git_index_clear(idx));
+
+ cl_git_pass(git_tree_lookup(&tree, repo, &src_tree_id));
+ cl_git_pass(git_commit_create(&src_id, repo, NULL, sig, sig, NULL, "foo", tree, 0, NULL));
+ git_tree_free(tree);
+
+ /* Create the new tree */
+ entry.path = "README";
+ cl_git_pass(git_index_add(idx, &entry));
+ entry.path = "dir/FILE";
+ cl_git_pass(git_index_add(idx, &entry));
+
+ cl_git_pass(git_index_write_tree_to(&tgt_tree_id, idx, repo));
+ cl_git_pass(git_tree_lookup(&tree, repo, &tgt_tree_id));
+ cl_git_pass(git_commit_create(&tgt_id, repo, NULL, sig, sig, NULL, "foo", tree, 0, NULL));
+ git_tree_free(tree);
+ git_index_free(idx);
+ git_signature_free(sig);
+
+ /* Let's go to a known state of the src commit with the file named 'dir' */
+ cl_git_pass(git_object_lookup(&commit, repo, &src_id, GIT_OBJ_COMMIT));
+ cl_git_pass(git_reset(repo, commit, GIT_RESET_HARD, NULL));
+ git_object_free(commit);
+
+ /* And now we move over to the commit with the directory named 'dir' */
+ cl_git_pass(git_object_lookup(&commit, repo, &tgt_id, GIT_OBJ_COMMIT));
+ cl_git_pass(git_reset(repo, commit, GIT_RESET_HARD, NULL));
+ git_object_free(commit);
+}