mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-22 22:23:05 +00:00
Fix network suite
This commit is contained in:
parent
afb181167e
commit
f46769e52a
@ -1 +1 @@
|
|||||||
Subproject commit 3f99b7f36ffa2b0965eefd04abac998fa37ced23
|
Subproject commit 75254eeb042e8a6f83775c452b2b59da20e50bda
|
@ -19,18 +19,14 @@ void test_clone_nonetwork__initialize(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void test_clone_nonetwork__cleanup(void)
|
void test_clone_nonetwork__cleanup(void)
|
||||||
{
|
|
||||||
git_remote_free(g_origin);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void cleanup_repository(void *path)
|
|
||||||
{
|
{
|
||||||
if (g_repo) {
|
if (g_repo) {
|
||||||
git_repository_free(g_repo);
|
git_repository_free(g_repo);
|
||||||
g_repo = NULL;
|
g_repo = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
cl_fixture_cleanup((const char *)path);
|
cl_fixture_cleanup("./foo");
|
||||||
|
git_remote_free(g_origin);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_clone_nonetwork__bad_url(void)
|
void test_clone_nonetwork__bad_url(void)
|
||||||
@ -48,7 +44,6 @@ void test_clone_nonetwork__bad_url(void)
|
|||||||
|
|
||||||
void test_clone_nonetwork__local(void)
|
void test_clone_nonetwork__local(void)
|
||||||
{
|
{
|
||||||
cl_set_cleanup(&cleanup_repository, "./foo");
|
|
||||||
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,32 +51,25 @@ void test_clone_nonetwork__local_absolute_path(void)
|
|||||||
{
|
{
|
||||||
const char *local_src = cl_fixture("testrepo.git");
|
const char *local_src = cl_fixture("testrepo.git");
|
||||||
git_remote_free(g_origin);
|
git_remote_free(g_origin);
|
||||||
|
|
||||||
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", local_src, GIT_REMOTE_DEFAULT_FETCH));
|
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", local_src, GIT_REMOTE_DEFAULT_FETCH));
|
||||||
|
|
||||||
cl_set_cleanup(&cleanup_repository, "./foo");
|
|
||||||
|
|
||||||
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_clone_nonetwork__local_bare(void)
|
void test_clone_nonetwork__local_bare(void)
|
||||||
{
|
{
|
||||||
cl_set_cleanup(&cleanup_repository, "./foo");
|
|
||||||
g_options.bare = true;
|
g_options.bare = true;
|
||||||
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
cl_git_pass(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_clone_nonetwork__fail_when_the_target_is_a_file(void)
|
void test_clone_nonetwork__fail_when_the_target_is_a_file(void)
|
||||||
{
|
{
|
||||||
cl_set_cleanup(&cleanup_repository, "./foo");
|
|
||||||
|
|
||||||
cl_git_mkfile("./foo", "Bar!");
|
cl_git_mkfile("./foo", "Bar!");
|
||||||
cl_git_fail(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
cl_git_fail(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory(void)
|
void test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory(void)
|
||||||
{
|
{
|
||||||
cl_set_cleanup(&cleanup_repository, "./foo");
|
|
||||||
|
|
||||||
p_mkdir("./foo", GIT_DIR_MODE);
|
p_mkdir("./foo", GIT_DIR_MODE);
|
||||||
cl_git_mkfile("./foo/bar", "Baz!");
|
cl_git_mkfile("./foo/bar", "Baz!");
|
||||||
cl_git_fail(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
cl_git_fail(git_clone(&g_repo, g_origin, "./foo", &g_options));
|
||||||
|
Loading…
Reference in New Issue
Block a user