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
6ca4d3bf
Commit
6ca4d3bf
authored
11 years ago
by
Björn Schießle
Browse files
Options
Downloads
Patches
Plain Diff
fix usersPath and add unit tests
parent
fc209a59
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/files_sharing/lib/cache.php
+4
-8
4 additions, 8 deletions
apps/files_sharing/lib/cache.php
apps/files_sharing/tests/cache.php
+106
-2
106 additions, 2 deletions
apps/files_sharing/tests/cache.php
with
110 additions
and
10 deletions
apps/files_sharing/lib/cache.php
+
4
−
8
View file @
6ca4d3bf
...
...
@@ -131,19 +131,15 @@ class Shared_Cache extends Cache {
foreach
(
$files
as
&
$file
)
{
$file
[
'mimetype'
]
=
$this
->
getMimetype
(
$file
[
'mimetype'
]);
$file
[
'mimepart'
]
=
$this
->
getMimetype
(
$file
[
'mimepart'
]);
$file
[
'usersPath'
]
=
'files/Shared/'
.
ltrim
(
$file
[
'path'
],
'/'
);
}
return
$files
;
}
else
{
if
(
$cache
=
$this
->
getSourceCache
(
$folder
))
{
$cache
=
$this
->
getSourceCache
(
$folder
);
if
(
$cache
)
{
$sourceFolderContent
=
$cache
->
getFolderContents
(
$this
->
files
[
$folder
]);
foreach
(
$sourceFolderContent
as
$key
=>
$c
)
{
$ownerPathParts
=
explode
(
'/'
,
\OC_Filesystem
::
normalizePath
(
$c
[
'path'
]));
$userPathParts
=
explode
(
'/'
,
\OC_Filesystem
::
normalizePath
(
$folder
));
$usersPath
=
'files/Shared/'
.
$userPathParts
[
1
];
foreach
(
array_slice
(
$ownerPathParts
,
3
)
as
$part
)
{
$usersPath
.
=
'/'
.
$part
;
}
$sourceFolderContent
[
$key
][
'usersPath'
]
=
$usersPath
;
$sourceFolderContent
[
$key
][
'usersPath'
]
=
'files/Shared/'
.
$folder
.
'/'
.
$c
[
'name'
];
}
return
$sourceFolderContent
;
...
...
This diff is collapsed.
Click to expand it.
apps/files_sharing/tests/cache.php
+
106
−
2
View file @
6ca4d3bf
...
...
@@ -2,8 +2,9 @@
/**
* ownCloud
*
* @author Vincent Petry
* @author Vincent Petry
, Bjoern Schiessle
* @copyright 2014 Vincent Petry <pvince81@owncloud.com>
* 2014 Bjoern Schiessle <schiessle@owncloud.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
...
...
@@ -23,13 +24,19 @@ require_once __DIR__ . '/base.php';
class
Test_Files_Sharing_Cache
extends
Test_Files_Sharing_Base
{
/**
* @var OC_FilesystemView
*/
public
$user2View
;
function
setUp
()
{
parent
::
setUp
();
self
::
loginHelper
(
self
::
TEST_FILES_SHARING_API_USER1
);
$this
->
user2View
=
new
\OC\Files\View
(
'/'
.
self
::
TEST_FILES_SHARING_API_USER2
.
'/files'
);
// prepare user1's dir structure
$textData
=
"dummy file data
\n
"
;
$this
->
view
->
mkdir
(
'container'
);
$this
->
view
->
mkdir
(
'container/shareddir'
);
$this
->
view
->
mkdir
(
'container/shareddir/subdir'
);
...
...
@@ -115,6 +122,103 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base {
$this
->
verifyFiles
(
$check
,
$results
);
}
function
testGetFolderContentsInRoot
()
{
$results
=
$this
->
user2View
->
getDirectoryContent
(
'/Shared/'
);
$this
->
verifyFiles
(
array
(
array
(
'name'
=>
'shareddir'
,
'path'
=>
'/shareddir'
,
'mimetype'
=>
'httpd/unix-directory'
,
'usersPath'
=>
'files/Shared/shareddir'
),
array
(
'name'
=>
'shared single file.txt'
,
'path'
=>
'/shared single file.txt'
,
'mimetype'
=>
'text/plain'
,
'usersPath'
=>
'files/Shared/shared single file.txt'
),
),
$results
);
}
function
testGetFolderContentsInSubdir
()
{
//$results = $this->sharedStorage->getCache()->getFolderContents('shareddir');
$results
=
$this
->
user2View
->
getDirectoryContent
(
'/Shared/shareddir'
);
$this
->
verifyFiles
(
array
(
array
(
'name'
=>
'bar.txt'
,
'path'
=>
'files/container/shareddir/bar.txt'
,
'mimetype'
=>
'text/plain'
,
'usersPath'
=>
'files/Shared/shareddir/bar.txt'
),
array
(
'name'
=>
'emptydir'
,
'path'
=>
'files/container/shareddir/emptydir'
,
'mimetype'
=>
'httpd/unix-directory'
,
'usersPath'
=>
'files/Shared/shareddir/emptydir'
),
array
(
'name'
=>
'subdir'
,
'path'
=>
'files/container/shareddir/subdir'
,
'mimetype'
=>
'httpd/unix-directory'
,
'usersPath'
=>
'files/Shared/shareddir/subdir'
),
),
$results
);
}
function
testGetFolderContentsWhenSubSubdirShared
()
{
self
::
loginHelper
(
self
::
TEST_FILES_SHARING_API_USER1
);
$fileinfo
=
$this
->
view
->
getFileInfo
(
'container/shareddir/subdir'
);
\OCP\Share
::
shareItem
(
'folder'
,
$fileinfo
[
'fileid'
],
\OCP\Share
::
SHARE_TYPE_USER
,
self
::
TEST_FILES_SHARING_API_USER3
,
31
);
self
::
loginHelper
(
self
::
TEST_FILES_SHARING_API_USER3
);
$thirdView
=
new
\OC\Files\View
(
'/'
.
self
::
TEST_FILES_SHARING_API_USER3
.
'/files'
);
//list($this->sharedStorage, $internalPath) = $thirdView->resolvePath('files/Shared');
$results
=
$thirdView
->
getDirectoryContent
(
'/Shared/subdir'
);
$this
->
verifyFiles
(
array
(
array
(
'name'
=>
'another too.txt'
,
'path'
=>
'files/container/shareddir/subdir/another too.txt'
,
//'path' => '/subdir/another too.txt',
'mimetype'
=>
'text/plain'
,
'usersPath'
=>
'files/Shared/subdir/another too.txt'
),
array
(
'name'
=>
'another.txt'
,
'path'
=>
'files/container/shareddir/subdir/another.txt'
,
//'path' => '/subdir/another.txt',
'mimetype'
=>
'text/plain'
,
'usersPath'
=>
'files/Shared/subdir/another.txt'
),
array
(
'name'
=>
'not a text file.xml'
,
'path'
=>
'files/container/shareddir/subdir/not a text file.xml'
,
//'path' => '/subdir/not a text file.xml',
'mimetype'
=>
'application/xml'
,
'usersPath'
=>
'files/Shared/subdir/not a text file.xml'
),
),
$results
);
self
::
loginHelper
(
self
::
TEST_FILES_SHARING_API_USER1
);
\OCP\Share
::
unshare
(
'folder'
,
$fileinfo
[
'fileid'
],
\OCP\Share
::
SHARE_TYPE_USER
,
self
::
TEST_FILES_SHARING_API_USER3
);
}
/**
* Checks that all provided attributes exist in the files list,
* only the values provided in $examples will be used to check against
...
...
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