Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
183d8bdd
Commit
183d8bdd
authored
Oct 16, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove checkout_stats from git_clone
parent
80642656
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
16 deletions
+22
-16
include/git2/clone.h
+0
-1
src/clone.c
+0
-4
tests-clar/clone/network.c
+18
-7
tests-clar/clone/nonetwork.c
+4
-4
No files found.
include/git2/clone.h
View file @
183d8bdd
...
...
@@ -41,7 +41,6 @@ GIT_EXTERN(int) git_clone(
const
char
*
origin_url
,
const
char
*
workdir_path
,
git_indexer_stats
*
fetch_stats
,
git_indexer_stats
*
checkout_stats
,
git_checkout_opts
*
checkout_opts
);
/**
...
...
src/clone.c
View file @
183d8bdd
...
...
@@ -307,7 +307,6 @@ static int clone_internal(
const
char
*
origin_url
,
const
char
*
path
,
git_indexer_stats
*
fetch_stats
,
git_indexer_stats
*
checkout_stats
,
git_checkout_opts
*
checkout_opts
,
bool
is_bare
)
{
...
...
@@ -351,7 +350,6 @@ int git_clone_bare(git_repository **out,
dest_path
,
fetch_stats
,
NULL
,
NULL
,
1
);
}
...
...
@@ -360,7 +358,6 @@ int git_clone(git_repository **out,
const
char
*
origin_url
,
const
char
*
workdir_path
,
git_indexer_stats
*
fetch_stats
,
git_indexer_stats
*
checkout_stats
,
git_checkout_opts
*
checkout_opts
)
{
assert
(
out
&&
origin_url
&&
workdir_path
);
...
...
@@ -370,7 +367,6 @@ int git_clone(git_repository **out,
origin_url
,
workdir_path
,
fetch_stats
,
checkout_stats
,
checkout_opts
,
0
);
}
tests-clar/clone/network.c
View file @
183d8bdd
...
...
@@ -29,7 +29,7 @@ void test_clone_network__network_full(void)
cl_set_cleanup
(
&
cleanup_repository
,
"./test2"
);
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./test2"
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./test2"
,
NULL
,
NULL
));
cl_assert
(
!
git_repository_is_bare
(
g_repo
));
cl_git_pass
(
git_remote_load
(
&
origin
,
g_repo
,
"origin"
));
...
...
@@ -55,7 +55,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
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
));
git_repository_free
(
g_repo
);
g_repo
=
NULL
;
}
...
...
@@ -65,7 +65,7 @@ void test_clone_network__empty_repository(void)
cl_set_cleanup
(
&
cleanup_repository
,
"./empty"
);
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_EMPTYREPO_URL
,
"./empty"
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_EMPTYREPO_URL
,
"./empty"
,
NULL
,
NULL
));
cl_assert_equal_i
(
true
,
git_repository_is_empty
(
g_repo
));
cl_assert_equal_i
(
true
,
git_repository_head_orphan
(
g_repo
));
...
...
@@ -83,7 +83,7 @@ void test_clone_network__can_prevent_the_checkout_of_a_standard_repo(void)
cl_set_cleanup
(
&
cleanup_repository
,
"./no-checkout"
);
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./no-checkout"
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./no-checkout"
,
NULL
,
NULL
));
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
)));
...
...
@@ -91,18 +91,27 @@ void test_clone_network__can_prevent_the_checkout_of_a_standard_repo(void)
git_buf_free
(
&
path
);
}
static
void
progress
(
const
char
*
path
,
float
progress
,
void
*
payload
)
{
GIT_UNUSED
(
path
);
GIT_UNUSED
(
progress
);
bool
*
was_called
=
(
bool
*
)
payload
;
(
*
was_called
)
=
true
;
}
void
test_clone_network__can_checkout_a_cloned_repo
(
void
)
{
git_checkout_opts
opts
;
git_checkout_opts
opts
=
{
0
}
;
git_buf
path
=
GIT_BUF_INIT
;
git_reference
*
head
;
bool
progress_cb_was_called
=
false
;
memset
(
&
opts
,
0
,
sizeof
(
opts
));
opts
.
checkout_strategy
=
GIT_CHECKOUT_CREATE_MISSING
;
opts
.
progress_cb
=
&
progress
;
opts
.
progress_payload
=
&
progress_cb_was_called
;
cl_set_cleanup
(
&
cleanup_repository
,
"./default-checkout"
);
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./default-checkout"
,
NULL
,
NULL
,
&
opts
));
cl_git_pass
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./default-checkout"
,
NULL
,
&
opts
));
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
)));
...
...
@@ -111,6 +120,8 @@ void test_clone_network__can_checkout_a_cloned_repo(void)
cl_assert_equal_i
(
GIT_REF_SYMBOLIC
,
git_reference_type
(
head
));
cl_assert_equal_s
(
"refs/heads/master"
,
git_reference_target
(
head
));
cl_assert_equal_i
(
true
,
progress_cb_was_called
);
git_reference_free
(
head
);
git_buf_free
(
&
path
);
}
tests-clar/clone/nonetwork.c
View file @
183d8bdd
...
...
@@ -63,7 +63,7 @@ static void build_local_file_url(git_buf *out, const char *fixture)
void
test_clone_nonetwork__bad_url
(
void
)
{
/* Clone should clean up the mess if the URL isn't a git repository */
cl_git_fail
(
git_clone
(
&
g_repo
,
"not_a_repo"
,
"./foo"
,
NULL
,
NULL
,
NULL
));
cl_git_fail
(
git_clone
(
&
g_repo
,
"not_a_repo"
,
"./foo"
,
NULL
,
NULL
));
cl_assert
(
!
git_path_exists
(
"./foo"
));
cl_git_fail
(
git_clone_bare
(
&
g_repo
,
"not_a_repo"
,
"./foo.git"
,
NULL
));
cl_assert
(
!
git_path_exists
(
"./foo.git"
));
...
...
@@ -77,7 +77,7 @@ void test_clone_nonetwork__local(void)
#if DO_LOCAL_TEST
cl_set_cleanup
(
&
cleanup_repository
,
"./local"
);
cl_git_pass
(
git_clone
(
&
g_repo
,
git_buf_cstr
(
&
src
),
"./local"
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_clone
(
&
g_repo
,
git_buf_cstr
(
&
src
),
"./local"
,
NULL
,
NULL
));
#endif
git_buf_free
(
&
src
);
...
...
@@ -102,7 +102,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
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
,
NULL
));
cl_git_fail
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
));
}
void
test_clone_nonetwork__fail_with_already_existing_but_non_empty_directory
(
void
)
...
...
@@ -111,5 +111,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
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
,
NULL
));
cl_git_fail
(
git_clone
(
&
g_repo
,
LIVE_REPO_URL
,
"./foo"
,
NULL
,
NULL
));
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment