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
07714d9a
Commit
07714d9a
authored
11 years ago
by
Andreas Fischer
Browse files
Options
Downloads
Patches
Plain Diff
Tests whether expired/valid link share is still accessible.
parent
9d18e16c
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/lib/share/share.php
+48
-0
48 additions, 0 deletions
tests/lib/share/share.php
with
48 additions
and
0 deletions
tests/lib/share/share.php
+
48
−
0
View file @
07714d9a
...
...
@@ -535,4 +535,52 @@ class Test_Share extends PHPUnit_Framework_TestCase {
'Failed asserting that user 3 still has access to test.txt after expiration date has been set.'
);
}
protected
function
getShareByValidToken
(
$token
)
{
$row
=
OCP\Share
::
getShareByToken
(
$token
);
$this
->
assertInternalType
(
'array'
,
$row
,
"Failed asserting that a share for token
$token
exists."
);
return
$row
;
}
public
function
testShareItemWithLink
()
{
OC_User
::
setUserId
(
$this
->
user1
);
$token
=
OCP\Share
::
shareItem
(
'test'
,
'test.txt'
,
OCP\Share
::
SHARE_TYPE_LINK
,
null
,
OCP\PERMISSION_READ
);
$this
->
assertInternalType
(
'string'
,
$token
,
'Failed asserting that user 1 successfully shared text.txt as link with token.'
);
// testGetShareByTokenNoExpiration
$row
=
$this
->
getShareByValidToken
(
$token
);
$this
->
assertEmpty
(
$row
[
'expiration'
],
'Failed asserting that the returned row does not have an expiration date.'
);
// testGetShareByTokenExpirationValid
$this
->
assertTrue
(
OCP\Share
::
setExpirationDate
(
'test'
,
'test.txt'
,
$this
->
dateInFuture
),
'Failed asserting that user 1 successfully set a future expiration date for the test.txt share.'
);
$row
=
$this
->
getShareByValidToken
(
$token
);
$this
->
assertNotEmpty
(
$row
[
'expiration'
],
'Failed asserting that the returned row has an expiration date.'
);
// testGetShareByTokenExpirationExpired
$this
->
assertTrue
(
OCP\Share
::
setExpirationDate
(
'test'
,
'test.txt'
,
$this
->
dateInPast
),
'Failed asserting that user 1 successfully set a past expiration date for the test.txt share.'
);
$this
->
assertFalse
(
OCP\Share
::
getShareByToken
(
$token
),
'Failed asserting that an expired share could not be found.'
);
}
}
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