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
49ebc8a7
Commit
49ebc8a7
authored
Oct 22, 2021
by
Yoichi Nakayama
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a branch with a empty reflog into testrepo.git
parent
9b04a307
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
24 additions
and
21 deletions
+24
-21
tests/fetchhead/nonetwork.c
+1
-1
tests/network/fetchlocal.c
+12
-12
tests/network/remote/local.c
+3
-3
tests/refs/branches/iterator.c
+2
-2
tests/refs/foreachglob.c
+3
-3
tests/refs/iterator.c
+2
-0
tests/resources/testrepo.git/logs/refs/heads/with-empty-log
+0
-0
tests/resources/testrepo.git/refs/heads/with-empty-log
+1
-0
No files found.
tests/fetchhead/nonetwork.c
View file @
49ebc8a7
...
@@ -508,7 +508,7 @@ void test_fetchhead_nonetwork__create_with_multiple_refspecs(void)
...
@@ -508,7 +508,7 @@ void test_fetchhead_nonetwork__create_with_multiple_refspecs(void)
int
i
;
int
i
;
struct
prefix_count
prefix_counts
[]
=
{
struct
prefix_count
prefix_counts
[]
=
{
{
"refs/notes/"
,
0
,
1
},
{
"refs/notes/"
,
0
,
1
},
{
"refs/heads/"
,
0
,
1
2
},
{
"refs/heads/"
,
0
,
1
3
},
{
"refs/tags/"
,
0
,
7
},
{
"refs/tags/"
,
0
,
7
},
{
NULL
,
0
,
0
},
{
NULL
,
0
,
0
},
};
};
...
...
tests/network/fetchlocal.c
View file @
49ebc8a7
...
@@ -45,7 +45,7 @@ void test_network_fetchlocal__complete(void)
...
@@ -45,7 +45,7 @@ void test_network_fetchlocal__complete(void)
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
19
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
20
,
(
int
)
refnames
.
count
);
cl_assert
(
callcount
>
0
);
cl_assert
(
callcount
>
0
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
...
@@ -74,7 +74,7 @@ void test_network_fetchlocal__prune(void)
...
@@ -74,7 +74,7 @@ void test_network_fetchlocal__prune(void)
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
19
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
20
,
(
int
)
refnames
.
count
);
cl_assert
(
callcount
>
0
);
cl_assert
(
callcount
>
0
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -88,7 +88,7 @@ void test_network_fetchlocal__prune(void)
...
@@ -88,7 +88,7 @@ void test_network_fetchlocal__prune(void)
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
1
8
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
1
9
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -101,7 +101,7 @@ void test_network_fetchlocal__prune(void)
...
@@ -101,7 +101,7 @@ void test_network_fetchlocal__prune(void)
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
1
7
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
1
8
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -166,7 +166,7 @@ void test_network_fetchlocal__prune_overlapping(void)
...
@@ -166,7 +166,7 @@ void test_network_fetchlocal__prune_overlapping(void)
assert_ref_exists
(
repo
,
"refs/remotes/origin/master"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/master"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/pr/42"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/pr/42"
);
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
2
0
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
2
1
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
cl_git_pass
(
git_config_delete_multivar
(
config
,
"remote.origin.fetch"
,
"refs"
));
cl_git_pass
(
git_config_delete_multivar
(
config
,
"remote.origin.fetch"
,
"refs"
));
...
@@ -181,7 +181,7 @@ void test_network_fetchlocal__prune_overlapping(void)
...
@@ -181,7 +181,7 @@ void test_network_fetchlocal__prune_overlapping(void)
assert_ref_exists
(
repo
,
"refs/remotes/origin/master"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/master"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/pr/42"
);
assert_ref_exists
(
repo
,
"refs/remotes/origin/pr/42"
);
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
2
0
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
2
1
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
cl_git_pass
(
git_config_delete_multivar
(
config
,
"remote.origin.fetch"
,
"refs"
));
cl_git_pass
(
git_config_delete_multivar
(
config
,
"remote.origin.fetch"
,
"refs"
));
...
@@ -221,7 +221,7 @@ void test_network_fetchlocal__fetchprune(void)
...
@@ -221,7 +221,7 @@ void test_network_fetchlocal__fetchprune(void)
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
19
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
20
,
(
int
)
refnames
.
count
);
cl_assert
(
callcount
>
0
);
cl_assert
(
callcount
>
0
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -235,7 +235,7 @@ void test_network_fetchlocal__fetchprune(void)
...
@@ -235,7 +235,7 @@ void test_network_fetchlocal__fetchprune(void)
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_remote_prune
(
origin
,
&
options
.
callbacks
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
1
8
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
1
9
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -251,7 +251,7 @@ void test_network_fetchlocal__fetchprune(void)
...
@@ -251,7 +251,7 @@ void test_network_fetchlocal__fetchprune(void)
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
1
7
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
1
8
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
origin
);
git_remote_free
(
origin
);
...
@@ -335,7 +335,7 @@ void test_network_fetchlocal__partial(void)
...
@@ -335,7 +335,7 @@ void test_network_fetchlocal__partial(void)
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
2
0
,
(
int
)
refnames
.
count
);
/* 18 remote + 1 local */
cl_assert_equal_i
(
2
1
,
(
int
)
refnames
.
count
);
/* 18 remote + 1 local */
cl_assert
(
callcount
>
0
);
cl_assert
(
callcount
>
0
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
...
@@ -418,7 +418,7 @@ void test_network_fetchlocal__multi_remotes(void)
...
@@ -418,7 +418,7 @@ void test_network_fetchlocal__multi_remotes(void)
cl_git_pass
(
git_remote_fetch
(
test
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
test
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
3
3
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
3
5
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
cl_git_pass
(
git_remote_set_url
(
repo
,
"test_with_pushurl"
,
cl_git_fixture_url
(
"testrepo.git"
)));
cl_git_pass
(
git_remote_set_url
(
repo
,
"test_with_pushurl"
,
cl_git_fixture_url
(
"testrepo.git"
)));
...
@@ -426,7 +426,7 @@ void test_network_fetchlocal__multi_remotes(void)
...
@@ -426,7 +426,7 @@ void test_network_fetchlocal__multi_remotes(void)
cl_git_pass
(
git_remote_fetch
(
test2
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_remote_fetch
(
test2
,
NULL
,
&
options
,
NULL
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
4
5
,
(
int
)
refnames
.
count
);
cl_assert_equal_i
(
4
8
,
(
int
)
refnames
.
count
);
git_strarray_dispose
(
&
refnames
);
git_strarray_dispose
(
&
refnames
);
git_remote_free
(
test
);
git_remote_free
(
test
);
...
...
tests/network/remote/local.c
View file @
49ebc8a7
...
@@ -61,7 +61,7 @@ void test_network_remote_local__retrieve_advertised_references(void)
...
@@ -61,7 +61,7 @@ void test_network_remote_local__retrieve_advertised_references(void)
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_assert_equal_i
(
refs_len
,
29
);
cl_assert_equal_i
(
refs_len
,
30
);
}
}
void
test_network_remote_local__retrieve_advertised_before_connect
(
void
)
void
test_network_remote_local__retrieve_advertised_before_connect
(
void
)
...
@@ -85,7 +85,7 @@ void test_network_remote_local__retrieve_advertised_references_after_disconnect(
...
@@ -85,7 +85,7 @@ void test_network_remote_local__retrieve_advertised_references_after_disconnect(
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_assert_equal_i
(
refs_len
,
29
);
cl_assert_equal_i
(
refs_len
,
30
);
}
}
void
test_network_remote_local__retrieve_advertised_references_from_spaced_repository
(
void
)
void
test_network_remote_local__retrieve_advertised_references_from_spaced_repository
(
void
)
...
@@ -100,7 +100,7 @@ void test_network_remote_local__retrieve_advertised_references_from_spaced_repos
...
@@ -100,7 +100,7 @@ void test_network_remote_local__retrieve_advertised_references_from_spaced_repos
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_git_pass
(
git_remote_ls
(
&
refs
,
&
refs_len
,
remote
));
cl_assert_equal_i
(
refs_len
,
29
);
cl_assert_equal_i
(
refs_len
,
30
);
git_remote_free
(
remote
);
/* Disconnect from the "spaced repo" before the cleanup */
git_remote_free
(
remote
);
/* Disconnect from the "spaced repo" before the cleanup */
remote
=
NULL
;
remote
=
NULL
;
...
...
tests/refs/branches/iterator.c
View file @
49ebc8a7
...
@@ -48,7 +48,7 @@ static void assert_retrieval(unsigned int flags, unsigned int expected_count)
...
@@ -48,7 +48,7 @@ static void assert_retrieval(unsigned int flags, unsigned int expected_count)
void
test_refs_branches_iterator__retrieve_all_branches
(
void
)
void
test_refs_branches_iterator__retrieve_all_branches
(
void
)
{
{
assert_retrieval
(
GIT_BRANCH_ALL
,
1
4
);
assert_retrieval
(
GIT_BRANCH_ALL
,
1
5
);
}
}
void
test_refs_branches_iterator__retrieve_remote_branches
(
void
)
void
test_refs_branches_iterator__retrieve_remote_branches
(
void
)
...
@@ -58,7 +58,7 @@ void test_refs_branches_iterator__retrieve_remote_branches(void)
...
@@ -58,7 +58,7 @@ void test_refs_branches_iterator__retrieve_remote_branches(void)
void
test_refs_branches_iterator__retrieve_local_branches
(
void
)
void
test_refs_branches_iterator__retrieve_local_branches
(
void
)
{
{
assert_retrieval
(
GIT_BRANCH_LOCAL
,
1
2
);
assert_retrieval
(
GIT_BRANCH_LOCAL
,
1
3
);
}
}
struct
expectations
{
struct
expectations
{
...
...
tests/refs/foreachglob.c
View file @
49ebc8a7
...
@@ -48,8 +48,8 @@ static void assert_retrieval(const char *glob, int expected_count)
...
@@ -48,8 +48,8 @@ static void assert_retrieval(const char *glob, int expected_count)
void
test_refs_foreachglob__retrieve_all_refs
(
void
)
void
test_refs_foreachglob__retrieve_all_refs
(
void
)
{
{
/* 1
2
heads (including one packed head) + 1 note + 2 remotes + 7 tags + 1 blob */
/* 1
3
heads (including one packed head) + 1 note + 2 remotes + 7 tags + 1 blob */
assert_retrieval
(
"*"
,
2
3
);
assert_retrieval
(
"*"
,
2
4
);
}
}
void
test_refs_foreachglob__retrieve_remote_branches
(
void
)
void
test_refs_foreachglob__retrieve_remote_branches
(
void
)
...
@@ -59,7 +59,7 @@ void test_refs_foreachglob__retrieve_remote_branches(void)
...
@@ -59,7 +59,7 @@ void test_refs_foreachglob__retrieve_remote_branches(void)
void
test_refs_foreachglob__retrieve_local_branches
(
void
)
void
test_refs_foreachglob__retrieve_local_branches
(
void
)
{
{
assert_retrieval
(
"refs/heads/*"
,
1
2
);
assert_retrieval
(
"refs/heads/*"
,
1
3
);
}
}
void
test_refs_foreachglob__retrieve_nonexistant
(
void
)
void
test_refs_foreachglob__retrieve_nonexistant
(
void
)
...
...
tests/refs/iterator.c
View file @
49ebc8a7
...
@@ -28,6 +28,7 @@ static const char *refnames[] = {
...
@@ -28,6 +28,7 @@ static const char *refnames[] = {
"refs/heads/test"
,
"refs/heads/test"
,
"refs/heads/track-local"
,
"refs/heads/track-local"
,
"refs/heads/trailing"
,
"refs/heads/trailing"
,
"refs/heads/with-empty-log"
,
"refs/notes/fanout"
,
"refs/notes/fanout"
,
"refs/remotes/test/master"
,
"refs/remotes/test/master"
,
"refs/tags/annotated_tag_to_blob"
,
"refs/tags/annotated_tag_to_blob"
,
...
@@ -58,6 +59,7 @@ static const char *refnames_with_symlink[] = {
...
@@ -58,6 +59,7 @@ static const char *refnames_with_symlink[] = {
"refs/heads/test"
,
"refs/heads/test"
,
"refs/heads/track-local"
,
"refs/heads/track-local"
,
"refs/heads/trailing"
,
"refs/heads/trailing"
,
"refs/heads/with-empty-log"
,
"refs/notes/fanout"
,
"refs/notes/fanout"
,
"refs/remotes/test/master"
,
"refs/remotes/test/master"
,
"refs/tags/annotated_tag_to_blob"
,
"refs/tags/annotated_tag_to_blob"
,
...
...
tests/resources/testrepo.git/logs/refs/heads/with-empty-log
0 → 100644
View file @
49ebc8a7
tests/resources/testrepo.git/refs/heads/with-empty-log
0 → 100644
View file @
49ebc8a7
8496071c1b46c854b31185ea97743be6a8774479
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