submodule.c 2.65 KB
Newer Older
1 2
#include "clar_libgit2.h"
#include "repository.h"
3
#include "worktree.h"
4 5 6 7 8
#include "worktree_helpers.h"

#define WORKTREE_PARENT "submodules-worktree-parent"
#define WORKTREE_CHILD "submodules-worktree-child"

9 10 11 12
static worktree_fixture parent
    = WORKTREE_FIXTURE_INIT("submodules", WORKTREE_PARENT);
static worktree_fixture child
    = WORKTREE_FIXTURE_INIT(NULL, WORKTREE_CHILD);
13

14 15 16
void test_worktree_submodule__initialize(void)
{
	setup_fixture_worktree(&parent);
17

18 19 20
	cl_git_pass(p_rename(
		"submodules/testrepo/.gitted",
		"submodules/testrepo/.git"));
21

22
	setup_fixture_worktree(&child);
23 24
}

25
void test_worktree_submodule__cleanup(void)
26
{
27 28 29
	cleanup_fixture_worktree(&child);
	cleanup_fixture_worktree(&parent);
}
30

31 32 33 34
void test_worktree_submodule__submodule_worktree_parent(void)
{
	cl_assert(git_repository_path(parent.worktree) != NULL);
	cl_assert(git_repository_workdir(parent.worktree) != NULL);
35

36 37 38
	cl_assert(!parent.repo->is_worktree);
	cl_assert(parent.worktree->is_worktree);
}
39

40 41 42 43 44
void test_worktree_submodule__submodule_worktree_child(void)
{
	cl_assert(!parent.repo->is_worktree);
	cl_assert(parent.worktree->is_worktree);
	cl_assert(child.worktree->is_worktree);
45 46 47 48 49 50 51 52
}

void test_worktree_submodule__open_discovered_submodule_worktree(void)
{
	git_buf path = GIT_BUF_INIT;
	git_repository *repo;

	cl_git_pass(git_repository_discover(&path,
53
		git_repository_workdir(child.worktree), false, NULL));
54
	cl_git_pass(git_repository_open(&repo, path.ptr));
55
	cl_assert_equal_s(git_repository_workdir(child.worktree),
56 57
		git_repository_workdir(repo));

58
	git_buf_dispose(&path);
59 60
	git_repository_free(repo);
}
61 62 63

void test_worktree_submodule__resolve_relative_url(void)
{
64
	git_str wt_path = GIT_STR_INIT;
65 66 67 68 69
	git_buf sm_relative_path = GIT_BUF_INIT, wt_relative_path = GIT_BUF_INIT;
	git_repository *repo;
	git_worktree *wt;

	cl_git_pass(git_futils_mkdir("subdir", 0755, GIT_MKDIR_PATH));
70
	cl_git_pass(git_fs_path_prettify_dir(&wt_path, "subdir", NULL));
71
	cl_git_pass(git_str_joinpath(&wt_path, wt_path.ptr, "wt"));
72 73 74 75 76

	/* Open child repository, which is a submodule */
	cl_git_pass(git_repository_open(&child.repo, WORKTREE_CHILD));

	/* Create worktree of submodule repository */
77
	cl_git_pass(git_worktree_add(&wt, child.repo, "subdir", wt_path.ptr, NULL));
78 79 80 81 82 83 84 85 86 87 88
	cl_git_pass(git_repository_open_from_worktree(&repo, wt));

	cl_git_pass(git_submodule_resolve_url(&sm_relative_path, repo,
		    "../" WORKTREE_CHILD));
	cl_git_pass(git_submodule_resolve_url(&wt_relative_path, child.repo,
		    "../" WORKTREE_CHILD));

	cl_assert_equal_s(sm_relative_path.ptr, wt_relative_path.ptr);

	git_worktree_free(wt);
	git_repository_free(repo);
89
	git_str_dispose(&wt_path);
90 91
	git_buf_dispose(&sm_relative_path);
	git_buf_dispose(&wt_relative_path);
92
}