summaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/FeatureContext.php
diff options
context:
space:
mode:
authorSergio Bertolin <sbertolin@solidgear.es>2015-11-04 13:42:14 +0000
committerSergio Bertolin <sbertolin@solidgear.es>2015-11-04 13:42:14 +0000
commit3b7690f84204303de84db96da0bf6812f01bc612 (patch)
tree9e7ff52bce83f62e61c035e87bfa175a46f6d137 /build/integration/features/bootstrap/FeatureContext.php
parent05933815223043ddbe5bbcdaa7afb02801243739 (diff)
downloadnextcloud-server-3b7690f84204303de84db96da0bf6812f01bc612.tar.gz
nextcloud-server-3b7690f84204303de84db96da0bf6812f01bc612.zip
added test for deleting a share
Diffstat (limited to 'build/integration/features/bootstrap/FeatureContext.php')
-rw-r--r--build/integration/features/bootstrap/FeatureContext.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/FeatureContext.php b/build/integration/features/bootstrap/FeatureContext.php
index a8ab5dc04e8..d3a04ee782e 100644
--- a/build/integration/features/bootstrap/FeatureContext.php
+++ b/build/integration/features/bootstrap/FeatureContext.php
@@ -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){