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
235dc9b2
Commit
235dc9b2
authored
Nov 04, 2018
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apply: test circular rename
Test a rename from A->B simultaneous with a rename from B->A.
parent
89b5a56e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
tests/apply/apply_helpers.h
+10
-0
tests/apply/both.c
+25
-0
No files found.
tests/apply/apply_helpers.h
View file @
235dc9b2
...
...
@@ -225,6 +225,16 @@
"rename from beef.txt\n" \
"rename to notbeef.txt\n"
#define DIFF_RENAME_CIRCULAR \
"diff --git a/asparagus.txt b/beef.txt\n" \
"similarity index 100%\n" \
"rename from asparagus.txt\n" \
"rename to beef.txt\n" \
"diff --git a/beef.txt b/notbeef.txt\n" \
"similarity index 100%\n" \
"rename from beef.txt\n" \
"rename to asparagus.txt\n"
struct
iterator_compare_data
{
struct
merge_index_entry
*
expected
;
size_t
cnt
;
...
...
tests/apply/both.c
View file @
235dc9b2
...
...
@@ -499,3 +499,28 @@ void test_apply_both__rename_a_to_b_to_c_exact(void)
git_diff_free
(
diff
);
}
void
test_apply_both__rename_circular
(
void
)
{
git_diff
*
diff
;
struct
merge_index_entry
both_expected
[]
=
{
{
0100644
,
"68f6182f4c85d39e1309d97c7e456156dc9c0096"
,
0
,
"asparagus.txt"
},
{
0100644
,
"f51658077d85f2264fa179b4d0848268cb3475c3"
,
0
,
"beef.txt"
},
{
0100644
,
"4b7c5650008b2e747fe1809eeb5a1dde0e80850a"
,
0
,
"bouilli.txt"
},
{
0100644
,
"c4e6cca3ec6ae0148ed231f97257df8c311e015f"
,
0
,
"gravy.txt"
},
{
0100644
,
"68af1fc7407fd9addf1701a87eb1c95c7494c598"
,
0
,
"oyster.txt"
},
{
0100644
,
"94d2c01087f48213bd157222d54edfefd77c9bba"
,
0
,
"veal.txt"
}
};
size_t
both_expected_cnt
=
sizeof
(
both_expected
)
/
sizeof
(
struct
merge_index_entry
);
cl_git_pass
(
git_diff_from_buffer
(
&
diff
,
DIFF_RENAME_CIRCULAR
,
strlen
(
DIFF_RENAME_CIRCULAR
)));
cl_git_pass
(
git_apply
(
repo
,
diff
,
GIT_APPLY_LOCATION_BOTH
,
NULL
));
validate_apply_index
(
repo
,
both_expected
,
both_expected_cnt
);
validate_apply_workdir
(
repo
,
both_expected
,
both_expected_cnt
);
git_diff_free
(
diff
);
}
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