Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
die_coolen_jungs
our_own_cloud_project
Commits
a1cc9eea
Commit
a1cc9eea
authored
10 years ago
by
Vincent Petry
Browse files
Options
Downloads
Patches
Plain Diff
Add trashbin storage wrapper unit test for versions
parent
1f39a7aa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/files_trashbin/tests/storage.php
+76
-6
76 additions, 6 deletions
apps/files_trashbin/tests/storage.php
with
76 additions
and
6 deletions
apps/files_trashbin/tests/storage.php
+
76
−
6
View file @
a1cc9eea
...
...
@@ -14,11 +14,6 @@ use OC\Files\Mount\MountPoint;
use
OC\Files\Filesystem
;
class
Storage
extends
\Test\TestCase
{
/**
* @var \OCA\Files_trashbin\Storage
*/
private
$wrapper
;
/**
* @var string
*/
...
...
@@ -43,7 +38,7 @@ class Storage extends \Test\TestCase {
parent
::
setUp
();
$this
->
user
=
$this
->
getUniqueId
(
'user'
);
\OC
_User
::
createUser
(
$this
->
user
,
$this
->
user
);
\OC
::
$server
->
getUserManager
()
->
createUser
(
$this
->
user
,
$this
->
user
);
// this will setup the FS
$this
->
loginAsUser
(
$this
->
user
);
...
...
@@ -66,6 +61,9 @@ class Storage extends \Test\TestCase {
parent
::
tearDown
();
}
/**
* Test that deleting a file puts it into the trashbin.
*/
public
function
testSingleStorageDelete
()
{
$this
->
assertTrue
(
$this
->
userView
->
file_exists
(
'test.txt'
));
$this
->
userView
->
unlink
(
'test.txt'
);
...
...
@@ -80,6 +78,12 @@ class Storage extends \Test\TestCase {
$this
->
assertEquals
(
'test.txt'
,
substr
(
$name
,
0
,
strrpos
(
$name
,
'.'
)));
}
/**
* Test that deleting a file from another mounted storage properly
* lands in the trashbin. This is a cross-storage situation because
* the trashbin folder is in the root storage while the mounted one
* isn't.
*/
public
function
testCrossStorageDelete
()
{
$storage2
=
new
Temporary
(
array
());
\OC\Files\Filesystem
::
mount
(
$storage2
,
array
(),
$this
->
user
.
'/files/substorage'
);
...
...
@@ -99,4 +103,70 @@ class Storage extends \Test\TestCase {
$name
=
$results
[
0
]
->
getName
();
$this
->
assertEquals
(
'subfile.txt'
,
substr
(
$name
,
0
,
strrpos
(
$name
,
'.'
)));
}
/**
* Test that deleted versions properly land in the trashbin.
*/
public
function
testDeleteVersions
()
{
\OCA\Files_Versions\Hooks
::
connectHooks
();
// trigger a version (multiple would not work because of the expire logic)
$this
->
userView
->
file_put_contents
(
'test.txt'
,
'v1'
);
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_versions/'
);
$this
->
assertEquals
(
1
,
count
(
$results
));
$this
->
userView
->
unlink
(
'test.txt'
);
// rescan trash storage
list
(
$rootStorage
,
)
=
$this
->
rootView
->
resolvePath
(
$this
->
user
.
'/files_trashbin'
);
$rootStorage
->
getScanner
()
->
scan
(
''
);
// check if versions are in trashbin
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_trashbin/versions'
);
$this
->
assertEquals
(
1
,
count
(
$results
));
$name
=
$results
[
0
]
->
getName
();
$this
->
assertEquals
(
'test.txt'
,
substr
(
$name
,
0
,
strlen
(
'test.txt'
)));
}
/**
* Test that versions are not auto-trashed when moving a file between
* storages. This is because rename() between storages would call
* unlink() which should NOT trigger the version deletion logic.
*/
public
function
testKeepFileAndVersionsWhenMovingBetweenStorages
()
{
\OCA\Files_Versions\Hooks
::
connectHooks
();
$storage2
=
new
Temporary
(
array
());
\OC\Files\Filesystem
::
mount
(
$storage2
,
array
(),
$this
->
user
.
'/files/substorage'
);
// trigger a version (multiple would not work because of the expire logic)
$this
->
userView
->
file_put_contents
(
'test.txt'
,
'v1'
);
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_trashbin/files'
);
$this
->
assertEquals
(
0
,
count
(
$results
));
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_versions/'
);
$this
->
assertEquals
(
1
,
count
(
$results
));
// move to another storage
$this
->
userView
->
rename
(
'test.txt'
,
'substorage/test.txt'
);
$this
->
userView
->
file_exists
(
'substorage/test.txt'
);
// rescan trash storage
list
(
$rootStorage
,
)
=
$this
->
rootView
->
resolvePath
(
$this
->
user
.
'/files_trashbin'
);
$rootStorage
->
getScanner
()
->
scan
(
''
);
// versions were moved too
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_versions/substorage'
);
$this
->
assertEquals
(
1
,
count
(
$results
));
// check that nothing got trashed by the rename's unlink() call
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_trashbin/files'
);
$this
->
assertEquals
(
0
,
count
(
$results
));
// check that versions were moved and not trashed
$results
=
$this
->
rootView
->
getDirectoryContent
(
$this
->
user
.
'/files_trashbin/versions/'
);
$this
->
assertEquals
(
0
,
count
(
$results
));
}
}
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