Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
ebec603f
Commit
ebec603f
authored
11 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
added tests for io_rmdir
parent
4d47e8e3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
_test/tests/inc/io_rmdir.test.php
+159
-0
159 additions, 0 deletions
_test/tests/inc/io_rmdir.test.php
with
159 additions
and
0 deletions
_test/tests/inc/io_rmdir.test.php
0 → 100644
+
159
−
0
View file @
ebec603f
<?php
class
io_rmdir_test
extends
DokuWikiTest
{
function
test_empty_single
(){
// set up test dir
$dir
=
io_mktmpdir
();
$top
=
dirname
(
$dir
);
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
false
));
// check result
clearstatcache
();
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
// same again with deletefiles
// set up test dir
$dir
=
io_mktmpdir
();
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
true
));
// check result
clearstatcache
();
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
}
function
test_empty_hierarchy
(){
// setup hierachy and test it exists
$dir
=
io_mktmpdir
();
$top
=
dirname
(
$dir
);
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
false
));
// check result
clearstatcache
();
$this
->
assertFalse
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
// same again with deletefiles
// setup hierachy and test it exists
$dir
=
io_mktmpdir
();
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
true
));
// check result
clearstatcache
();
$this
->
assertFalse
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
}
function
test_full_single
(){
// set up test dir
$dir
=
io_mktmpdir
();
$top
=
dirname
(
$dir
);
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
// put file
$this
->
assertTrue
(
io_saveFile
(
"
$dir
/testfile.txt"
,
'foobar'
));
$this
->
assertFileExists
(
"
$dir
/testfile.txt"
);
// delete unsuccessfully
$this
->
assertFalse
(
io_rmdir
(
$dir
,
false
));
// check result
clearstatcache
();
$this
->
assertFileExists
(
"
$dir
/testfile.txt"
);
$this
->
assertTrue
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
// same again with deletefiles
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
true
));
// check result
clearstatcache
();
$this
->
assertFileNotExists
(
"
$dir
/testfile.txt"
);
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
}
function
test_full_hierarchy
(){
// setup hierachy and test it exists
$dir
=
io_mktmpdir
();
$top
=
dirname
(
$dir
);
$this
->
assertTrue
(
$dir
!==
false
);
$this
->
assertTrue
(
is_dir
(
$dir
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
io_mkdir_p
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
// put files
$this
->
assertTrue
(
io_saveFile
(
"
$dir
/testfile.txt"
,
'foobar'
));
$this
->
assertFileExists
(
"
$dir
/testfile.txt"
);
$this
->
assertTrue
(
io_saveFile
(
"
$dir
/foo/testfile.txt"
,
'foobar'
));
$this
->
assertFileExists
(
"
$dir
/foo/testfile.txt"
);
$this
->
assertTrue
(
io_saveFile
(
"
$dir
/foo/bar/baz/testfile.txt"
,
'foobar'
));
$this
->
assertFileExists
(
"
$dir
/foo/bar/baz/testfile.txt"
);
// delete unsuccessfully
$this
->
assertFalse
(
io_rmdir
(
$dir
,
false
));
// check result
clearstatcache
();
$this
->
assertFileExists
(
"
$dir
/testfile.txt"
);
$this
->
assertFileExists
(
"
$dir
/foo/testfile.txt"
);
$this
->
assertFileExists
(
"
$dir
/foo/bar/baz/testfile.txt"
);
$this
->
assertTrue
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertTrue
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
// delete successfully
$this
->
assertTrue
(
io_rmdir
(
$dir
,
true
));
// check result
clearstatcache
();
$this
->
assertFileNotExists
(
"
$dir
/testfile.txt"
);
$this
->
assertFileNotExists
(
"
$dir
/foo/testfile.txt"
);
$this
->
assertFileNotExists
(
"
$dir
/foo/bar/baz/testfile.txt"
);
$this
->
assertFalse
(
is_dir
(
"
$dir
/foo/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
"
$dir
/foobar/bar/baz"
));
$this
->
assertFalse
(
is_dir
(
$dir
));
$this
->
assertTrue
(
is_dir
(
$top
));
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment