From 630ba2fd0948b01db16b258a064bf3ca02302d1d Mon Sep 17 00:00:00 2001 From: Sergio Bertolin Date: Thu, 19 Nov 2015 09:36:56 +0000 Subject: [PATCH] Added test for shared_with_me parameter --- .../features/bootstrap/FeatureContext.php | 13 ++++++++++++- build/integration/features/sharing-v1.feature | 10 ++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/build/integration/features/bootstrap/FeatureContext.php b/build/integration/features/bootstrap/FeatureContext.php index 7176a19064..56b81d631a 100644 --- a/build/integration/features/bootstrap/FeatureContext.php +++ b/build/integration/features/bootstrap/FeatureContext.php @@ -800,7 +800,7 @@ class FeatureContext implements Context, SnippetAcceptingContext { elseif($contentExpected == "AN_URL"){ return $this->isExpectedUrl((string)$element->$field, "index.php/s/"); } - elseif ($element->$field == $contentExpected){ + elseif ((string)$element->$field == $contentExpected){ return True; } } @@ -958,6 +958,17 @@ class FeatureContext implements Context, SnippetAcceptingContext { $this->sendingToWith("GET", $url, null); } + /** + * @Then /^last share_id is included in the answer$/ + */ + public function findingLastShareID(){ + print_r($this->response->xml()); + $share_id = $this->lastShareData->data[0]->id; + if (!$this->isFieldInResponse('id', $share_id)){ + PHPUnit_Framework_Assert::fail("Share id $share_id not found in response"); + } + } + /** * @Then /^Share fields of last share match with$/ * @param \Behat\Gherkin\Node\TableNode|null $formData diff --git a/build/integration/features/sharing-v1.feature b/build/integration/features/sharing-v1.feature index aceff1de1a..0100ab3eda 100644 --- a/build/integration/features/sharing-v1.feature +++ b/build/integration/features/sharing-v1.feature @@ -302,6 +302,16 @@ Feature: sharing | file_parent | A_NUMBER | | displayname_owner | user0 | + Scenario: Sharee can see the share + Given user "user0" exists + And user "user1" exists + And file "textfile0.txt" from user "user0" is shared with user "user1" + And As an "user1" + When sending "GET" to "/apps/files_sharing/api/v1/shares?shared_with_me=true" + Then the OCS status code should be "100" + And the HTTP status code should be "200" + And last share_id is included in the answer + Scenario: delete a share Given user "user0" exists And user "user1" exists