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
61ee5b0e
Commit
61ee5b0e
authored
May 08, 2014
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce test for checkout case-changing rename
parent
0bb237ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
tests/checkout/tree.c
+77
-0
No files found.
tests/checkout/tree.c
View file @
61ee5b0e
...
...
@@ -1034,3 +1034,80 @@ void test_checkout_tree__removes_conflicts_only_by_pathscope(void)
git_commit_free
(
commit
);
git_index_free
(
index
);
}
void
test_checkout_tree__case_changing_rename
(
void
)
{
git_index
*
index
;
git_checkout_options
opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
git_oid
master_id
,
dir_commit_id
,
tree_id
,
commit_id
;
git_commit
*
master_commit
,
*
dir_commit
;
git_tree
*
tree
;
git_signature
*
signature
;
const
git_index_entry
*
index_entry
;
bool
case_sensitive
;
assert_on_branch
(
g_repo
,
"master"
);
cl_git_pass
(
git_repository_index
(
&
index
,
g_repo
));
/* Switch branches and perform a case-changing rename */
opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
cl_git_pass
(
git_reference_name_to_id
(
&
dir_commit_id
,
g_repo
,
"refs/heads/dir"
));
cl_git_pass
(
git_commit_lookup
(
&
dir_commit
,
g_repo
,
&
dir_commit_id
));
cl_git_pass
(
git_checkout_tree
(
g_repo
,
(
git_object
*
)
dir_commit
,
&
opts
));
cl_git_pass
(
git_repository_set_head
(
g_repo
,
"refs/heads/dir"
,
NULL
,
NULL
));
cl_assert
(
git_path_isfile
(
"testrepo/README"
));
case_sensitive
=
!
git_path_isfile
(
"testrepo/readme"
);
cl_assert
(
index_entry
=
git_index_get_bypath
(
index
,
"README"
,
0
));
cl_assert_equal_s
(
"README"
,
index_entry
->
path
);
cl_git_pass
(
git_index_remove_bypath
(
index
,
"README"
));
cl_git_pass
(
p_rename
(
"testrepo/README"
,
"testrepo/__readme__"
));
cl_git_pass
(
p_rename
(
"testrepo/__readme__"
,
"testrepo/readme"
));
cl_git_append2file
(
"testrepo/readme"
,
"An addendum..."
);
cl_git_pass
(
git_index_add_bypath
(
index
,
"readme"
));
cl_git_pass
(
git_index_write
(
index
));
cl_git_pass
(
git_index_write_tree
(
&
tree_id
,
index
));
cl_git_pass
(
git_tree_lookup
(
&
tree
,
g_repo
,
&
tree_id
));
cl_git_pass
(
git_signature_new
(
&
signature
,
"Renamer"
,
"rename@contoso.com"
,
time
(
NULL
),
0
));
cl_git_pass
(
git_commit_create
(
&
commit_id
,
g_repo
,
"refs/heads/dir"
,
signature
,
signature
,
NULL
,
"case-changing rename"
,
tree
,
1
,
(
const
git_commit
**
)
&
dir_commit
));
cl_assert
(
git_path_isfile
(
"testrepo/readme"
));
if
(
case_sensitive
)
cl_assert
(
!
git_path_isfile
(
"testrepo/README"
));
cl_assert
(
index_entry
=
git_index_get_bypath
(
index
,
"readme"
,
0
));
cl_assert_equal_s
(
"readme"
,
index_entry
->
path
);
/* Switching back to master should rename readme -> README */
opts
.
checkout_strategy
=
GIT_CHECKOUT_SAFE
;
cl_git_pass
(
git_reference_name_to_id
(
&
master_id
,
g_repo
,
"refs/heads/master"
));
cl_git_pass
(
git_commit_lookup
(
&
master_commit
,
g_repo
,
&
master_id
));
cl_git_pass
(
git_checkout_tree
(
g_repo
,
(
git_object
*
)
master_commit
,
&
opts
));
cl_git_pass
(
git_repository_set_head
(
g_repo
,
"refs/heads/master"
,
NULL
,
NULL
));
assert_on_branch
(
g_repo
,
"master"
);
cl_assert
(
git_path_isfile
(
"testrepo/README"
));
if
(
case_sensitive
)
cl_assert
(
!
git_path_isfile
(
"testrepo/readme"
));
cl_assert
(
index_entry
=
git_index_get_bypath
(
index
,
"README"
,
0
));
cl_assert_equal_s
(
"README"
,
index_entry
->
path
);
git_signature_free
(
signature
);
git_tree_free
(
tree
);
git_commit_free
(
dir_commit
);
git_commit_free
(
master_commit
);
}
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