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
e886ab46
Commit
e886ab46
authored
Oct 02, 2018
by
Sven Strickroth
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: Add some more tests for git_futils_rmdir_r
Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent
1621a37d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
tests/core/rmdir.c
+16
-0
No files found.
tests/core/rmdir.c
View file @
e886ab46
...
...
@@ -30,7 +30,15 @@ void test_core_rmdir__initialize(void)
/* make sure empty dir can be deleted recusively */
void
test_core_rmdir__delete_recursive
(
void
)
{
git_buf
path
=
GIT_BUF_INIT
;
cl_git_pass
(
git_buf_joinpath
(
&
path
,
empty_tmp_dir
,
"/one"
));
cl_assert
(
git_path_exists
(
git_buf_cstr
(
&
path
)));
cl_git_pass
(
git_futils_rmdir_r
(
empty_tmp_dir
,
NULL
,
GIT_RMDIR_EMPTY_HIERARCHY
));
cl_assert
(
!
git_path_exists
(
git_buf_cstr
(
&
path
)));
git_buf_dispose
(
&
path
);
}
/* make sure non-empty dir cannot be deleted recusively */
...
...
@@ -47,9 +55,17 @@ void test_core_rmdir__fail_to_delete_non_empty_dir(void)
cl_must_pass
(
p_unlink
(
file
.
ptr
));
cl_git_pass
(
git_futils_rmdir_r
(
empty_tmp_dir
,
NULL
,
GIT_RMDIR_EMPTY_HIERARCHY
));
cl_assert
(
!
git_path_exists
(
empty_tmp_dir
));
git_buf_dispose
(
&
file
);
}
void
test_core_rmdir__keep_base
(
void
)
{
cl_git_pass
(
git_futils_rmdir_r
(
empty_tmp_dir
,
NULL
,
GIT_RMDIR_SKIP_ROOT
));
cl_assert
(
git_path_exists
(
empty_tmp_dir
));
}
void
test_core_rmdir__can_skip_non_empty_dir
(
void
)
{
git_buf
file
=
GIT_BUF_INIT
;
...
...
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