Browse Source

added test for deleting a share

remotes/origin/exclude_directories_III
Sergio Bertolin 11 years ago
parent
commit
3b7690f842
  1. 11
      build/integration/features/bootstrap/FeatureContext.php
  2. 9
      build/integration/features/sharing-v1.feature

11
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){

9
build/integration/features/sharing-v1.feature

@ -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"

Loading…
Cancel
Save