rename.c 1.48 KB
Newer Older
1
#include "clar_libgit2.h"
2 3 4 5 6 7
#include "posix.h"

void test_index_rename__single_file(void)
{
	git_repository *repo;
	git_index *index;
8
	size_t position;
9
	git_oid expected;
Ben Straub committed
10
	const git_index_entry *entry;
11 12 13 14 15 16 17 18

	p_mkdir("rename", 0700);

	cl_git_pass(git_repository_init(&repo, "./rename", 0));
	cl_git_pass(git_repository_index(&index, repo));

	cl_assert(git_index_entrycount(index) == 0);

19
	cl_git_mkfile("./rename/lame.name.txt", "new_file\n");
20 21

	/* This should add a new blob to the object database in 'd4/fa8600b4f37d7516bef4816ae2c64dbf029e3a' */
22
	cl_git_pass(git_index_add_bypath(index, "lame.name.txt"));
23 24 25 26
	cl_assert(git_index_entrycount(index) == 1);

	cl_git_pass(git_oid_fromstr(&expected, "d4fa8600b4f37d7516bef4816ae2c64dbf029e3a"));

27
	cl_assert(!git_index_find(&position, index, "lame.name.txt"));
28

Edward Thomson committed
29
	entry = git_index_get_byindex(index, position);
30
	cl_assert(git_oid_cmp(&expected, &entry->id) == 0);
31 32

	/* This removes the entry from the index, but not from the object database */
Edward Thomson committed
33
	cl_git_pass(git_index_remove(index, "lame.name.txt", 0));
34 35 36 37
	cl_assert(git_index_entrycount(index) == 0);

	p_rename("./rename/lame.name.txt", "./rename/fancy.name.txt");

38
	cl_git_pass(git_index_add_bypath(index, "fancy.name.txt"));
39 40
	cl_assert(git_index_entrycount(index) == 1);

41
	cl_assert(!git_index_find(&position, index, "fancy.name.txt"));
42

Edward Thomson committed
43
	entry = git_index_get_byindex(index, position);
44
	cl_assert(git_oid_cmp(&expected, &entry->id) == 0);
45 46 47 48 49 50

	git_index_free(index);
	git_repository_free(repo);

	cl_fixture_cleanup("rename");
}