Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
die_coolen_jungs
our_own_cloud_project
Commits
3b7690f8
Commit
3b7690f8
authored
Nov 04, 2015
by
Sergio Bertolin
Browse files
added test for deleting a share
parent
05933815
Changes
2
Hide whitespace changes
Inline
Side-by-side
build/integration/features/bootstrap/FeatureContext.php
View file @
3b7690f8
...
...
@@ -659,6 +659,7 @@ class FeatureContext implements Context, SnippetAcceptingContext {
try
{
$this
->
response
=
$client
->
send
(
$client
->
createRequest
(
"POST"
,
$fullUrl
,
$options
));
$this
->
lastShareData
=
$this
->
response
->
xml
();
}
catch
(
\
GuzzleHttp\Exception\ClientException
$ex
)
{
$this
->
response
=
$ex
->
getResponse
();
}
...
...
@@ -695,7 +696,15 @@ class FeatureContext implements Context, SnippetAcceptingContext {
}
$this
->
response
=
$client
->
get
(
$fullUrl
,
$options
);
PHPUnit_Framework_Assert
::
assertEquals
(
True
,
$this
->
isUserInSharedData
(
$user2
));
}
/**
* @When /^Deleting last share$/
*/
public
function
deletingLastShare
(){
$share_id
=
$this
->
lastShareData
->
data
[
0
]
->
id
;
$url
=
"/apps/files_sharing/api/v
{
$this
->
apiVersion
}
/shares/
$share_id
"
;
$this
->
sendingToWith
(
"DELETE"
,
$url
,
null
);
}
public
static
function
removeFile
(
$path
,
$filename
){
...
...
build/integration/features/sharing-v1.feature
View file @
3b7690f8
...
...
@@ -67,6 +67,15 @@ Feature: sharing
Then
the OCS status code should be
"100"
And
the HTTP status code should be
"200"
Scenario
:
delete a share
Given
user
"user0"
exists
And
user
"user1"
exists
And
file
"textfile0.txt"
from user
"user0"
is shared with user
"user1"
And
As an
"user0"
When
Deleting last share
Then
the OCS status code should be
"100"
And
the HTTP status code should be
"200"
...
...
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