2015-11-24 15:48:06 +03:00
|
|
|
<?php
|
2016-07-21 19:13:36 +03:00
|
|
|
/**
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
2016-07-21 19:13:36 +03:00
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Sergio Bertolin <sbertolin@solidgear.es>
|
|
|
|
* @author Sergio Bertolín <sbertolin@solidgear.es>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2015-11-24 15:48:06 +03:00
|
|
|
use GuzzleHttp\Client;
|
|
|
|
use GuzzleHttp\Message\ResponseInterface;
|
2018-06-13 08:15:42 +03:00
|
|
|
use PHPUnit\Framework\Assert;
|
2015-11-24 15:48:06 +03:00
|
|
|
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-15 16:24:51 +03:00
|
|
|
trait Sharing {
|
2016-03-11 12:23:11 +03:00
|
|
|
use Provisioning;
|
2015-11-24 15:48:06 +03:00
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
private $sharingApiVersion = 1;
|
|
|
|
|
|
|
|
/** @var SimpleXMLElement */
|
|
|
|
private $lastShareData = null;
|
|
|
|
|
2016-02-29 16:20:36 +03:00
|
|
|
/** @var int */
|
|
|
|
private $savedShareId = null;
|
|
|
|
|
2018-02-09 15:19:39 +03:00
|
|
|
/** @var \Psr\Http\Message\ResponseInterface */
|
|
|
|
private $response;
|
|
|
|
|
2015-11-24 15:48:06 +03:00
|
|
|
/**
|
2016-02-24 12:39:04 +03:00
|
|
|
* @Given /^as "([^"]*)" creating a share with$/
|
2016-03-11 12:04:06 +03:00
|
|
|
* @param string $user
|
|
|
|
* @param \Behat\Gherkin\Node\TableNode|null $body
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
2016-02-24 12:39:04 +03:00
|
|
|
public function asCreatingAShareWith($user, $body) {
|
2016-03-11 12:05:26 +03:00
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares";
|
2015-11-24 15:48:06 +03:00
|
|
|
$client = new Client();
|
2016-08-01 09:33:49 +03:00
|
|
|
$options = [
|
|
|
|
'headers' => [
|
|
|
|
'OCS-APIREQUEST' => 'true',
|
|
|
|
],
|
|
|
|
];
|
2016-02-24 12:39:04 +03:00
|
|
|
if ($user === 'admin') {
|
2015-11-24 15:48:06 +03:00
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
2016-02-24 12:39:04 +03:00
|
|
|
$options['auth'] = [$user, $this->regularUser];
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($body instanceof \Behat\Gherkin\Node\TableNode) {
|
|
|
|
$fd = $body->getRowsHash();
|
|
|
|
if (array_key_exists('expireDate', $fd)){
|
|
|
|
$dateModification = $fd['expireDate'];
|
|
|
|
$fd['expireDate'] = date('Y-m-d', strtotime($dateModification));
|
|
|
|
}
|
2018-02-09 15:19:39 +03:00
|
|
|
$options['form_params'] = $fd;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2018-02-09 15:19:39 +03:00
|
|
|
$this->response = $client->request("POST", $fullUrl, $options);
|
2015-11-24 15:48:06 +03:00
|
|
|
} catch (\GuzzleHttp\Exception\ClientException $ex) {
|
|
|
|
$this->response = $ex->getResponse();
|
|
|
|
}
|
|
|
|
|
2018-02-09 15:19:39 +03:00
|
|
|
$this->lastShareData = simplexml_load_string($this->response->getBody());
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
2016-02-24 12:39:04 +03:00
|
|
|
/**
|
|
|
|
* @When /^creating a share with$/
|
2016-03-11 12:04:06 +03:00
|
|
|
* @param \Behat\Gherkin\Node\TableNode|null $body
|
2016-02-24 12:39:04 +03:00
|
|
|
*/
|
|
|
|
public function creatingShare($body) {
|
2016-03-11 12:04:25 +03:00
|
|
|
$this->asCreatingAShareWith($this->currentUser, $body);
|
2016-02-24 12:39:04 +03:00
|
|
|
}
|
|
|
|
|
2015-11-24 15:48:06 +03:00
|
|
|
/**
|
|
|
|
* @Then /^Public shared file "([^"]*)" can be downloaded$/
|
|
|
|
*/
|
|
|
|
public function checkPublicSharedFile($filename) {
|
|
|
|
$client = new Client();
|
|
|
|
$options = [];
|
|
|
|
if (count($this->lastShareData->data->element) > 0){
|
|
|
|
$url = $this->lastShareData->data[0]->url;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$url = $this->lastShareData->data->url;
|
|
|
|
}
|
|
|
|
$fullUrl = $url . "/download";
|
2017-01-24 09:32:47 +03:00
|
|
|
$this->checkDownload($fullUrl, null, 'text/plain');
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^Public shared file "([^"]*)" with password "([^"]*)" can be downloaded$/
|
|
|
|
*/
|
|
|
|
public function checkPublicSharedFileWithPassword($filename, $password) {
|
|
|
|
$options = [];
|
|
|
|
if (count($this->lastShareData->data->element) > 0){
|
|
|
|
$token = $this->lastShareData->data[0]->token;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
$token = $this->lastShareData->data->token;
|
|
|
|
}
|
|
|
|
|
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4) . "public.php/webdav";
|
2017-01-24 09:32:47 +03:00
|
|
|
$this->checkDownload($fullUrl, [$token, $password], 'text/plain');
|
|
|
|
}
|
|
|
|
|
|
|
|
private function checkDownload($url, $auth = null, $mimeType = null) {
|
|
|
|
if ($auth !== null) {
|
|
|
|
$options['auth'] = $auth;
|
|
|
|
}
|
|
|
|
$options['stream'] = true;
|
|
|
|
|
|
|
|
$client = new Client();
|
|
|
|
$this->response = $client->get($url, $options);
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(200, $this->response->getStatusCode());
|
2017-01-24 09:32:47 +03:00
|
|
|
|
|
|
|
$buf = '';
|
|
|
|
$body = $this->response->getBody();
|
|
|
|
while (!$body->eof()) {
|
|
|
|
// read everything
|
|
|
|
$buf .= $body->read(8192);
|
|
|
|
}
|
|
|
|
$body->close();
|
|
|
|
|
|
|
|
if ($mimeType !== null) {
|
|
|
|
$finfo = new finfo;
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals($mimeType, $finfo->buffer($buf, FILEINFO_MIME_TYPE));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @When /^Adding expiration date to last share$/
|
|
|
|
*/
|
|
|
|
public function addingExpirationDate() {
|
2016-03-11 12:23:11 +03:00
|
|
|
$share_id = (string) $this->lastShareData->data[0]->id;
|
2015-11-24 15:48:06 +03:00
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares/$share_id";
|
|
|
|
$client = new Client();
|
|
|
|
$options = [];
|
|
|
|
if ($this->currentUser === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$this->currentUser, $this->regularUser];
|
|
|
|
}
|
|
|
|
$date = date('Y-m-d', strtotime("+3 days"));
|
2018-02-09 15:19:39 +03:00
|
|
|
$options['form_params'] = ['expireDate' => $date];
|
|
|
|
$this->response = $this->response = $client->request("PUT", $fullUrl, $options);
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(200, $this->response->getStatusCode());
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @When /^Updating last share with$/
|
|
|
|
* @param \Behat\Gherkin\Node\TableNode|null $body
|
|
|
|
*/
|
|
|
|
public function updatingLastShare($body) {
|
2016-03-11 12:23:11 +03:00
|
|
|
$share_id = (string) $this->lastShareData->data[0]->id;
|
2015-11-24 15:48:06 +03:00
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares/$share_id";
|
|
|
|
$client = new Client();
|
2016-08-01 09:33:49 +03:00
|
|
|
$options = [
|
|
|
|
'headers' => [
|
|
|
|
'OCS-APIREQUEST' => 'true',
|
|
|
|
],
|
|
|
|
];
|
2015-11-24 15:48:06 +03:00
|
|
|
if ($this->currentUser === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$this->currentUser, $this->regularUser];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($body instanceof \Behat\Gherkin\Node\TableNode) {
|
|
|
|
$fd = $body->getRowsHash();
|
|
|
|
if (array_key_exists('expireDate', $fd)){
|
|
|
|
$dateModification = $fd['expireDate'];
|
|
|
|
$fd['expireDate'] = date('Y-m-d', strtotime($dateModification));
|
|
|
|
}
|
2018-02-09 15:19:39 +03:00
|
|
|
$options['form_params'] = $fd;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2018-02-09 15:19:39 +03:00
|
|
|
$this->response = $client->request("PUT", $fullUrl, $options);
|
2015-11-24 15:48:06 +03:00
|
|
|
} catch (\GuzzleHttp\Exception\ClientException $ex) {
|
|
|
|
$this->response = $ex->getResponse();
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(200, $this->response->getStatusCode());
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function createShare($user,
|
|
|
|
$path = null,
|
|
|
|
$shareType = null,
|
|
|
|
$shareWith = null,
|
|
|
|
$publicUpload = null,
|
|
|
|
$password = null,
|
|
|
|
$permissions = null){
|
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares";
|
|
|
|
$client = new Client();
|
2016-08-01 09:33:49 +03:00
|
|
|
$options = [
|
|
|
|
'headers' => [
|
|
|
|
'OCS-APIREQUEST' => 'true',
|
|
|
|
],
|
|
|
|
];
|
2015-11-24 15:48:06 +03:00
|
|
|
|
|
|
|
if ($user === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$user, $this->regularUser];
|
|
|
|
}
|
2018-02-09 15:19:39 +03:00
|
|
|
$body = [];
|
2015-11-24 15:48:06 +03:00
|
|
|
if (!is_null($path)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['path'] = $path;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
if (!is_null($shareType)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['shareType'] = $shareType;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
if (!is_null($shareWith)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['shareWith'] = $shareWith;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
if (!is_null($publicUpload)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['publicUpload'] = $publicUpload;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
if (!is_null($password)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['password'] = $password;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
if (!is_null($permissions)){
|
2018-02-09 15:19:39 +03:00
|
|
|
$body['permissions'] = $permissions;
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
2018-02-09 15:19:39 +03:00
|
|
|
$options['form_params'] = $body;
|
2015-11-24 15:48:06 +03:00
|
|
|
|
|
|
|
try {
|
2018-02-09 15:19:39 +03:00
|
|
|
$this->response = $client->request("POST", $fullUrl, $options);
|
|
|
|
$this->lastShareData = simplexml_load_string($this->response->getBody());
|
2015-11-24 15:48:06 +03:00
|
|
|
} catch (\GuzzleHttp\Exception\ClientException $ex) {
|
|
|
|
$this->response = $ex->getResponse();
|
2018-02-09 15:19:39 +03:00
|
|
|
throw new \Exception($this->response->getBody());
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isFieldInResponse($field, $contentExpected){
|
2018-02-09 15:19:39 +03:00
|
|
|
$data = simplexml_load_string($this->response->getBody())->data[0];
|
2015-11-24 15:48:06 +03:00
|
|
|
if ((string)$field == 'expiration'){
|
|
|
|
$contentExpected = date('Y-m-d', strtotime($contentExpected)) . " 00:00:00";
|
|
|
|
}
|
|
|
|
if (count($data->element) > 0){
|
|
|
|
foreach($data as $element) {
|
|
|
|
if ($contentExpected == "A_TOKEN"){
|
|
|
|
return (strlen((string)$element->$field) == 15);
|
|
|
|
}
|
|
|
|
elseif ($contentExpected == "A_NUMBER"){
|
|
|
|
return is_numeric((string)$element->$field);
|
|
|
|
}
|
|
|
|
elseif($contentExpected == "AN_URL"){
|
|
|
|
return $this->isExpectedUrl((string)$element->$field, "index.php/s/");
|
|
|
|
}
|
|
|
|
elseif ((string)$element->$field == $contentExpected){
|
|
|
|
return True;
|
|
|
|
}
|
2016-02-19 17:13:19 +03:00
|
|
|
else{
|
|
|
|
print($element->$field);
|
|
|
|
}
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return False;
|
|
|
|
} else {
|
|
|
|
if ($contentExpected == "A_TOKEN"){
|
|
|
|
return (strlen((string)$data->$field) == 15);
|
|
|
|
}
|
|
|
|
elseif ($contentExpected == "A_NUMBER"){
|
|
|
|
return is_numeric((string)$data->$field);
|
|
|
|
}
|
|
|
|
elseif($contentExpected == "AN_URL"){
|
|
|
|
return $this->isExpectedUrl((string)$data->$field, "index.php/s/");
|
|
|
|
}
|
|
|
|
elseif ($data->$field == $contentExpected){
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^File "([^"]*)" should be included in the response$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $filename
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
|
|
|
public function checkSharedFileInResponse($filename){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(True, $this->isFieldInResponse('file_target', "/$filename"));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^File "([^"]*)" should not be included in the response$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $filename
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
|
|
|
public function checkSharedFileNotInResponse($filename){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(False, $this->isFieldInResponse('file_target', "/$filename"));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^User "([^"]*)" should be included in the response$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $user
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
|
|
|
public function checkSharedUserInResponse($user){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(True, $this->isFieldInResponse('share_with', "$user"));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^User "([^"]*)" should not be included in the response$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $user
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
|
|
|
public function checkSharedUserNotInResponse($user){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(False, $this->isFieldInResponse('share_with', "$user"));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
2016-07-11 18:33:24 +03:00
|
|
|
public function isUserOrGroupInSharedData($userOrGroup, $permissions = null){
|
2018-02-09 15:19:39 +03:00
|
|
|
$data = simplexml_load_string($this->response->getBody())->data[0];
|
2015-11-24 15:48:06 +03:00
|
|
|
foreach($data as $element) {
|
2016-07-11 18:33:24 +03:00
|
|
|
if ($element->share_with == $userOrGroup && ($permissions === null || $permissions == $element->permissions)){
|
2015-11-24 15:48:06 +03:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-11 18:33:24 +03:00
|
|
|
* @Given /^(file|folder|entry) "([^"]*)" of user "([^"]*)" is shared with user "([^"]*)"( with permissions ([\d]*))?$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $filepath
|
|
|
|
* @param string $user1
|
|
|
|
* @param string $user2
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
2016-07-11 18:33:24 +03:00
|
|
|
public function assureFileIsShared($entry, $filepath, $user1, $user2, $withPerms = null, $permissions = null){
|
2015-11-24 15:48:06 +03:00
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares" . "?path=$filepath";
|
|
|
|
$client = new Client();
|
|
|
|
$options = [];
|
|
|
|
if ($user1 === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$user1, $this->regularUser];
|
|
|
|
}
|
2016-08-01 09:33:49 +03:00
|
|
|
$options['headers'] = [
|
|
|
|
'OCS-APIREQUEST' => 'true',
|
|
|
|
];
|
2015-11-24 15:48:06 +03:00
|
|
|
$this->response = $client->get($fullUrl, $options);
|
2016-07-11 18:33:24 +03:00
|
|
|
if ($this->isUserOrGroupInSharedData($user2, $permissions)){
|
2015-11-24 15:48:06 +03:00
|
|
|
return;
|
|
|
|
} else {
|
2016-07-11 18:33:24 +03:00
|
|
|
$this->createShare($user1, $filepath, 0, $user2, null, null, $permissions);
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
$this->response = $client->get($fullUrl, $options);
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(True, $this->isUserOrGroupInSharedData($user2, $permissions));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-11 18:33:24 +03:00
|
|
|
* @Given /^(file|folder|entry) "([^"]*)" of user "([^"]*)" is shared with group "([^"]*)"( with permissions ([\d]*))?$/
|
2016-03-11 12:04:06 +03:00
|
|
|
*
|
|
|
|
* @param string $filepath
|
|
|
|
* @param string $user
|
|
|
|
* @param string $group
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
2016-07-11 18:33:24 +03:00
|
|
|
public function assureFileIsSharedWithGroup($entry, $filepath, $user, $group, $withPerms = null, $permissions = null){
|
2015-11-24 15:48:06 +03:00
|
|
|
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares" . "?path=$filepath";
|
|
|
|
$client = new Client();
|
|
|
|
$options = [];
|
|
|
|
if ($user === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$user, $this->regularUser];
|
|
|
|
}
|
2016-08-01 09:33:49 +03:00
|
|
|
$options['headers'] = [
|
|
|
|
'OCS-APIREQUEST' => 'true',
|
|
|
|
];
|
2015-11-24 15:48:06 +03:00
|
|
|
$this->response = $client->get($fullUrl, $options);
|
2016-07-11 18:33:24 +03:00
|
|
|
if ($this->isUserOrGroupInSharedData($group, $permissions)){
|
2015-11-24 15:48:06 +03:00
|
|
|
return;
|
|
|
|
} else {
|
2016-07-11 18:33:24 +03:00
|
|
|
$this->createShare($user, $filepath, 1, $group, null, null, $permissions);
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
$this->response = $client->get($fullUrl, $options);
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::assertEquals(True, $this->isUserOrGroupInSharedData($group, $permissions));
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @When /^Deleting last share$/
|
|
|
|
*/
|
|
|
|
public function deletingLastShare(){
|
|
|
|
$share_id = $this->lastShareData->data[0]->id;
|
|
|
|
$url = "/apps/files_sharing/api/v{$this->sharingApiVersion}/shares/$share_id";
|
|
|
|
$this->sendingToWith("DELETE", $url, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @When /^Getting info of last share$/
|
|
|
|
*/
|
|
|
|
public function gettingInfoOfLastShare(){
|
|
|
|
$share_id = $this->lastShareData->data[0]->id;
|
|
|
|
$url = "/apps/files_sharing/api/v{$this->sharingApiVersion}/shares/$share_id";
|
|
|
|
$this->sendingToWith("GET", $url, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^last share_id is included in the answer$/
|
|
|
|
*/
|
|
|
|
public function checkingLastShareIDIsIncluded(){
|
|
|
|
$share_id = $this->lastShareData->data[0]->id;
|
|
|
|
if (!$this->isFieldInResponse('id', $share_id)){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::fail("Share id $share_id not found in response");
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^last share_id is not included in the answer$/
|
|
|
|
*/
|
|
|
|
public function checkingLastShareIDIsNotIncluded(){
|
|
|
|
$share_id = $this->lastShareData->data[0]->id;
|
|
|
|
if ($this->isFieldInResponse('id', $share_id)){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::fail("Share id $share_id has been found in response");
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^Share fields of last share match with$/
|
2016-03-11 12:04:06 +03:00
|
|
|
* @param \Behat\Gherkin\Node\TableNode|null $body
|
2015-11-24 15:48:06 +03:00
|
|
|
*/
|
|
|
|
public function checkShareFields($body){
|
|
|
|
if ($body instanceof \Behat\Gherkin\Node\TableNode) {
|
|
|
|
$fd = $body->getRowsHash();
|
|
|
|
|
|
|
|
foreach($fd as $field => $value) {
|
2016-02-19 17:13:19 +03:00
|
|
|
if (substr($field, 0, 10 ) === "share_with"){
|
|
|
|
$value = str_replace("REMOTE", substr($this->remoteBaseUrl, 0, -5), $value);
|
|
|
|
$value = str_replace("LOCAL", substr($this->localBaseUrl, 0, -5), $value);
|
|
|
|
}
|
|
|
|
if (substr($field, 0, 6 ) === "remote"){
|
|
|
|
$value = str_replace("REMOTE", substr($this->remoteBaseUrl, 0, -4), $value);
|
|
|
|
$value = str_replace("LOCAL", substr($this->localBaseUrl, 0, -4), $value);
|
|
|
|
}
|
2015-11-24 15:48:06 +03:00
|
|
|
if (!$this->isFieldInResponse($field, $value)){
|
2018-06-13 08:15:42 +03:00
|
|
|
Assert::fail("$field" . " doesn't have value " . "$value");
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-19 01:07:41 +03:00
|
|
|
/**
|
|
|
|
* @Then As :user remove all shares from the file named :fileName
|
|
|
|
*/
|
|
|
|
public function asRemoveAllSharesFromTheFileNamed($user, $fileName) {
|
2016-03-11 12:05:26 +03:00
|
|
|
$url = $this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares?format=json";
|
2016-02-19 01:07:41 +03:00
|
|
|
$client = new \GuzzleHttp\Client();
|
|
|
|
$res = $client->get(
|
|
|
|
$url,
|
|
|
|
[
|
|
|
|
'auth' => [
|
|
|
|
$user,
|
|
|
|
'123456',
|
|
|
|
],
|
|
|
|
'headers' => [
|
|
|
|
'Content-Type' => 'application/json',
|
2016-08-01 09:33:49 +03:00
|
|
|
'OCS-APIREQUEST' => 'true',
|
2016-02-19 01:07:41 +03:00
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
$json = json_decode($res->getBody()->getContents(), true);
|
|
|
|
$deleted = false;
|
|
|
|
foreach($json['ocs']['data'] as $data) {
|
|
|
|
if (stripslashes($data['path']) === $fileName) {
|
|
|
|
$id = $data['id'];
|
|
|
|
$client->delete(
|
2016-03-11 12:05:26 +03:00
|
|
|
$this->baseUrl . "v{$this->apiVersion}.php/apps/files_sharing/api/v{$this->sharingApiVersion}/shares/{$id}",
|
2016-02-19 01:07:41 +03:00
|
|
|
[
|
|
|
|
'auth' => [
|
|
|
|
$user,
|
|
|
|
'123456',
|
|
|
|
],
|
|
|
|
'headers' => [
|
|
|
|
'Content-Type' => 'application/json',
|
2016-08-01 09:33:49 +03:00
|
|
|
'OCS-APIREQUEST' => 'true',
|
2016-02-19 01:07:41 +03:00
|
|
|
],
|
|
|
|
]
|
|
|
|
);
|
|
|
|
$deleted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($deleted === false) {
|
|
|
|
throw new \Exception("Could not delete file $fileName");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-29 16:20:36 +03:00
|
|
|
/**
|
|
|
|
* @When save last share id
|
|
|
|
*/
|
|
|
|
public function saveLastShareId()
|
|
|
|
{
|
|
|
|
$this->savedShareId = $this->lastShareData['data']['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then share ids should match
|
|
|
|
*/
|
|
|
|
public function shareIdsShouldMatch()
|
|
|
|
{
|
|
|
|
if ($this->savedShareId !== $this->lastShareData['data']['id']) {
|
2016-03-11 12:05:54 +03:00
|
|
|
throw new \Exception('Expected the same link share to be returned');
|
2016-02-29 16:20:36 +03:00
|
|
|
}
|
|
|
|
}
|
2016-09-15 13:41:39 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then The following headers should be set
|
|
|
|
* @param \Behat\Gherkin\Node\TableNode $table
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public function theFollowingHeadersShouldBeSet(\Behat\Gherkin\Node\TableNode $table) {
|
|
|
|
foreach($table->getTable() as $header) {
|
|
|
|
$headerName = $header[0];
|
|
|
|
$expectedHeaderValue = $header[1];
|
2018-02-09 15:19:39 +03:00
|
|
|
$returnedHeader = $this->response->getHeader($headerName)[0];
|
2016-09-15 13:41:39 +03:00
|
|
|
if($returnedHeader !== $expectedHeaderValue) {
|
|
|
|
throw new \Exception(
|
|
|
|
sprintf(
|
|
|
|
"Expected value '%s' for header '%s', got '%s'",
|
|
|
|
$expectedHeaderValue,
|
|
|
|
$headerName,
|
|
|
|
$returnedHeader
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|