summaryrefslogtreecommitdiff
path: root/tests-clar
diff options
context:
space:
mode:
Diffstat (limited to 'tests-clar')
-rw-r--r--tests-clar/clone/network.c44
-rw-r--r--tests-clar/clone/nonetwork.c48
-rw-r--r--tests-clar/fetchhead/network.c15
-rw-r--r--tests-clar/network/fetch.c12
4 files changed, 70 insertions, 49 deletions
diff --git a/tests-clar/clone/network.c b/tests-clar/clone/network.c
index 15ad95b37..49b57bbe5 100644
--- a/tests-clar/clone/network.c
+++ b/tests-clar/clone/network.c
@@ -9,18 +9,22 @@ CL_IN_CATEGORY("network")
#define LIVE_EMPTYREPO_URL "http://github.com/libgit2/TestEmptyRepository"
static git_repository *g_repo;
-static git_remote *g_origin;
+static git_clone_options g_options;
void test_clone_network__initialize(void)
{
g_repo = NULL;
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
+
+ memset(&g_options, 0, sizeof(git_clone_options));
+ g_options.version = GIT_CLONE_OPTIONS_VERSION;
+ g_options.out = &g_repo;
+ g_options.local_path = "./foo";
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
}
void test_clone_network__cleanup(void)
{
- git_remote_free(g_origin);
- g_origin = NULL;
+ git_remote_free(g_options.origin_remote);
}
static void cleanup_repository(void *path)
@@ -37,9 +41,9 @@ void test_clone_network__network_full(void)
{
git_remote *origin;
- cl_set_cleanup(&cleanup_repository, "./test2");
+ cl_set_cleanup(&cleanup_repository, "./foo");
- cl_git_pass(git_clone(&g_repo, g_origin, "./test2", NULL, NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
cl_assert(!git_repository_is_bare(g_repo));
cl_git_pass(git_remote_load(&origin, g_repo, "origin"));
@@ -51,9 +55,10 @@ void test_clone_network__network_bare(void)
{
git_remote *origin;
- cl_set_cleanup(&cleanup_repository, "./test");
+ cl_set_cleanup(&cleanup_repository, "./foo");
+ g_options.bare = true;
- cl_git_pass(git_clone_bare(&g_repo, g_origin, "./test", NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
cl_assert(git_repository_is_bare(g_repo));
cl_git_pass(git_remote_load(&origin, g_repo, "origin"));
@@ -65,7 +70,7 @@ void test_clone_network__cope_with_already_existing_directory(void)
cl_set_cleanup(&cleanup_repository, "./foo");
p_mkdir("./foo", GIT_DIR_MODE);
- cl_git_pass(git_clone(&g_repo, g_origin, "./foo", NULL, NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
git_repository_free(g_repo); g_repo = NULL;
}
@@ -73,12 +78,12 @@ void test_clone_network__empty_repository(void)
{
git_reference *head;
- cl_set_cleanup(&cleanup_repository, "./empty");
+ cl_set_cleanup(&cleanup_repository, "./foo");
- git_remote_free(g_origin);
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_EMPTYREPO_URL, GIT_REMOTE_DEFAULT_FETCH));
+ git_remote_free(g_options.origin_remote);
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", LIVE_EMPTYREPO_URL, GIT_REMOTE_DEFAULT_FETCH));
- cl_git_pass(git_clone(&g_repo, g_origin, "./empty", NULL, NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
cl_assert_equal_i(true, git_repository_is_empty(g_repo));
cl_assert_equal_i(true, git_repository_head_orphan(g_repo));
@@ -93,10 +98,9 @@ void test_clone_network__empty_repository(void)
void test_clone_network__can_prevent_the_checkout_of_a_standard_repo(void)
{
git_buf path = GIT_BUF_INIT;
+ cl_set_cleanup(&cleanup_repository, "./foo");
- cl_set_cleanup(&cleanup_repository, "./no-checkout");
-
- cl_git_pass(git_clone(&g_repo, g_origin, "./no-checkout", NULL, NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
cl_git_pass(git_buf_joinpath(&path, git_repository_workdir(g_repo), "master.txt"));
cl_assert_equal_i(false, git_path_isfile(git_buf_cstr(&path)));
@@ -129,11 +133,13 @@ void test_clone_network__can_checkout_a_cloned_repo(void)
opts.checkout_strategy = GIT_CHECKOUT_SAFE;
opts.progress_cb = &checkout_progress;
opts.progress_payload = &checkout_progress_cb_was_called;
+ g_options.checkout_opts = &opts;
+ g_options.fetch_progress_cb = &fetch_progress;
+ g_options.fetch_progress_payload = &fetch_progress_cb_was_called;
- cl_set_cleanup(&cleanup_repository, "./default-checkout");
+ cl_set_cleanup(&cleanup_repository, "./foo");
- cl_git_pass(git_clone(&g_repo, g_origin, "./default-checkout", &opts,
- &fetch_progress, &fetch_progress_cb_was_called));
+ cl_git_pass(git_clone(&g_options));
cl_git_pass(git_buf_joinpath(&path, git_repository_workdir(g_repo), "master.txt"));
cl_assert_equal_i(true, git_path_isfile(git_buf_cstr(&path)));
diff --git a/tests-clar/clone/nonetwork.c b/tests-clar/clone/nonetwork.c
index 983f9fbc3..3626c544a 100644
--- a/tests-clar/clone/nonetwork.c
+++ b/tests-clar/clone/nonetwork.c
@@ -5,19 +5,23 @@
#define LIVE_REPO_URL "git://github.com/libgit2/TestGitRepository"
+static git_clone_options g_options;
static git_repository *g_repo;
-static git_remote *g_origin = NULL;
void test_clone_nonetwork__initialize(void)
{
g_repo = NULL;
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", cl_git_fixture_url("testrepo.git"), GIT_REMOTE_DEFAULT_FETCH));
+
+ memset(&g_options, 0, sizeof(git_clone_options));
+ g_options.version = GIT_CLONE_OPTIONS_VERSION;
+ g_options.out = &g_repo;
+ g_options.local_path = "./foo";
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", cl_git_fixture_url("testrepo.git"), GIT_REMOTE_DEFAULT_FETCH));
}
void test_clone_nonetwork__cleanup(void)
{
- git_remote_free(g_origin);
- g_origin = NULL;
+ git_remote_free(g_options.origin_remote);
}
static void cleanup_repository(void *path)
@@ -33,38 +37,38 @@ static void cleanup_repository(void *path)
void test_clone_nonetwork__bad_url(void)
{
/* Clone should clean up the mess if the URL isn't a git repository */
- git_remote_free(g_origin);
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", "not_a_repo", GIT_REMOTE_DEFAULT_FETCH));
+ git_remote_free(g_options.origin_remote);
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", "not_a_repo", GIT_REMOTE_DEFAULT_FETCH));
- cl_git_fail(git_clone(&g_repo, g_origin, "./foo", NULL, NULL, NULL));
+ cl_git_fail(git_clone(&g_options));
+ cl_assert(!git_path_exists("./foo"));
+ g_options.bare = true;
+ cl_git_fail(git_clone(&g_options));
cl_assert(!git_path_exists("./foo"));
- cl_git_fail(git_clone_bare(&g_repo, g_origin, "./foo.git", NULL, NULL));
- cl_assert(!git_path_exists("./foo.git"));
}
void test_clone_nonetwork__local(void)
{
- cl_set_cleanup(&cleanup_repository, "./local");
-
- cl_git_pass(git_clone(&g_repo, g_origin, "./local", NULL, NULL, NULL));
+ cl_set_cleanup(&cleanup_repository, "./foo");
+ cl_git_pass(git_clone(&g_options));
}
void test_clone_nonetwork__local_absolute_path(void)
{
const char *local_src = cl_fixture("testrepo.git");
- git_remote *local = NULL;
- cl_set_cleanup(&cleanup_repository, "./local");
+ git_remote_free(g_options.origin_remote);
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", local_src, GIT_REMOTE_DEFAULT_FETCH));
- cl_git_pass(git_remote_new(&local, NULL, "origin", local_src, GIT_REMOTE_DEFAULT_FETCH));
- cl_git_pass(git_clone(&g_repo, local, "./local", NULL, NULL, NULL));
- git_remote_free(local);
+ cl_set_cleanup(&cleanup_repository, "./foo");
+
+ cl_git_pass(git_clone(&g_options));
}
void test_clone_nonetwork__local_bare(void)
{
- cl_set_cleanup(&cleanup_repository, "./local.git");
-
- cl_git_pass(git_clone_bare(&g_repo, g_origin, "./local.git", NULL, NULL));
+ cl_set_cleanup(&cleanup_repository, "./foo");
+ g_options.bare = true;
+ cl_git_pass(git_clone(&g_options));
}
void test_clone_nonetwork__fail_when_the_target_is_a_file(void)
@@ -72,7 +76,7 @@ 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_fail(git_clone(&g_repo, g_origin, "./foo", NULL, NULL, NULL));
+ cl_git_fail(git_clone(&g_options));
}
void test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory(void)
@@ -81,5 +85,5 @@ void test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory(vo
p_mkdir("./foo", GIT_DIR_MODE);
cl_git_mkfile("./foo/bar", "Baz!");
- cl_git_fail(git_clone(&g_repo, g_origin, "./foo", NULL, NULL, NULL));
+ cl_git_fail(git_clone(&g_options));
}
diff --git a/tests-clar/fetchhead/network.c b/tests-clar/fetchhead/network.c
index aed5b5ad8..b0d31c51d 100644
--- a/tests-clar/fetchhead/network.c
+++ b/tests-clar/fetchhead/network.c
@@ -10,17 +10,22 @@ CL_IN_CATEGORY("network")
#define LIVE_REPO_URL "git://github.com/libgit2/TestGitRepository"
static git_repository *g_repo;
-static git_remote *g_origin;
+static git_clone_options g_options;
void test_fetchhead_network__initialize(void)
{
g_repo = NULL;
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
+
+ memset(&g_options, 0, sizeof(git_clone_options));
+ g_options.version = GIT_CLONE_OPTIONS_VERSION;
+ g_options.out = &g_repo;
+ g_options.local_path = "./foo";
+ cl_git_pass(git_remote_new(&g_options.origin_remote, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
}
void test_fetchhead_network__cleanup(void)
{
- g_origin = NULL;
+ git_remote_free(g_options.origin_remote);
}
static void cleanup_repository(void *path)
@@ -36,9 +41,9 @@ static void cleanup_repository(void *path)
static void fetchhead_test_clone(void)
{
- cl_set_cleanup(&cleanup_repository, "./test1");
+ cl_set_cleanup(&cleanup_repository, "./foo");
- cl_git_pass(git_clone(&g_repo, g_origin, "./test1", NULL, NULL, NULL));
+ cl_git_pass(git_clone(&g_options));
}
static void fetchhead_test_fetch(const char *fetchspec, const char *expected_fetchhead)
diff --git a/tests-clar/network/fetch.c b/tests-clar/network/fetch.c
index 246435b1b..83c880689 100644
--- a/tests-clar/network/fetch.c
+++ b/tests-clar/network/fetch.c
@@ -86,11 +86,16 @@ static void transferProgressCallback(const git_transfer_progress *stats, void *p
void test_network_fetch__doesnt_retrieve_a_pack_when_the_repository_is_up_to_date(void)
{
git_repository *_repository;
- git_remote *remote;
bool invoked = false;
+ git_remote *remote;
+ git_clone_options opts = GIT_CLONE_OPTIONS_INIT;
+
+ opts.out = &_repository;
+ opts.local_path = "./fetch/lg2";
+ opts.bare = true;
+ cl_git_pass(git_remote_new(&opts.origin_remote, NULL, "origin", "https://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DEFAULT_FETCH));
- cl_git_pass(git_remote_new(&remote, NULL, "origin", "https://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DEFAULT_FETCH));
- cl_git_pass(git_clone_bare(&_repository, remote, "./fetch/lg2", NULL, NULL));
+ cl_git_pass(git_clone(&opts));
git_repository_free(_repository);
cl_git_pass(git_repository_open(&_repository, "./fetch/lg2"));
@@ -108,5 +113,6 @@ void test_network_fetch__doesnt_retrieve_a_pack_when_the_repository_is_up_to_dat
git_remote_disconnect(remote);
git_remote_free(remote);
+ git_remote_free(opts.origin_remote);
git_repository_free(_repository);
}