123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752 |
- <?php
- /**
- *
- * @author David Toledo <dtoledo@solidgear.es>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Sergio Bertolin <sbertolin@solidgear.es>
- * @author Sergio Bertolín <sbertolin@solidgear.es>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @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/>.
- *
- */
- use GuzzleHttp\Client as GClient;
- use GuzzleHttp\Message\ResponseInterface;
- use Sabre\DAV\Client as SClient;
- use Sabre\DAV\Xml\Property\ResourceType;
- require __DIR__ . '/../../vendor/autoload.php';
- trait WebDav {
- use Sharing;
- /** @var string*/
- private $davPath = "remote.php/webdav";
- /** @var boolean*/
- private $usingOldDavPath = true;
- /** @var ResponseInterface */
- private $response;
- /** @var map with user as key and another map as value, which has path as key and etag as value */
- private $storedETAG = NULL;
- /**
- * @Given /^using dav path "([^"]*)"$/
- */
- public function usingDavPath($davPath) {
- $this->davPath = $davPath;
- }
- /**
- * @Given /^using old dav path$/
- */
- public function usingOldDavPath() {
- $this->davPath = "remote.php/webdav";
- $this->usingOldDavPath = true;
- }
- /**
- * @Given /^using new dav path$/
- */
- public function usingNewDavPath() {
- $this->davPath = "remote.php/dav";
- $this->usingOldDavPath = false;
- }
- public function getDavFilesPath($user){
- if ($this->usingOldDavPath === true){
- return $this->davPath;
- } else {
- return $this->davPath . '/files/' . $user;
- }
- }
- public function makeDavRequest($user, $method, $path, $headers, $body = null, $type = "files"){
- if ( $type === "files" ){
- $fullUrl = substr($this->baseUrl, 0, -4) . $this->getDavFilesPath($user) . "$path";
- } else if ( $type === "uploads" ){
- $fullUrl = substr($this->baseUrl, 0, -4) . $this->davPath . "$path";
- }
- $client = new GClient();
- $options = [];
- if ($user === 'admin') {
- $options['auth'] = $this->adminUser;
- } else {
- $options['auth'] = [$user, $this->regularUser];
- }
- $request = $client->createRequest($method, $fullUrl, $options);
- if (!is_null($headers)){
- foreach ($headers as $key => $value) {
- $request->addHeader($key, $value);
- }
- }
- if (!is_null($body)) {
- $request->setBody($body);
- }
- return $client->send($request);
- }
- /**
- * @Given /^User "([^"]*)" moved (file|folder|entry) "([^"]*)" to "([^"]*)"$/
- * @param string $user
- * @param string $fileSource
- * @param string $fileDestination
- */
- public function userMovedFile($user, $entry, $fileSource, $fileDestination){
- $fullUrl = substr($this->baseUrl, 0, -4) . $this->getDavFilesPath($user);
- $headers['Destination'] = $fullUrl . $fileDestination;
- $this->response = $this->makeDavRequest($user, "MOVE", $fileSource, $headers);
- PHPUnit_Framework_Assert::assertEquals(201, $this->response->getStatusCode());
- }
- /**
- * @When /^User "([^"]*)" moves (file|folder|entry) "([^"]*)" to "([^"]*)"$/
- * @param string $user
- * @param string $fileSource
- * @param string $fileDestination
- */
- public function userMovesFile($user, $entry, $fileSource, $fileDestination){
- $fullUrl = substr($this->baseUrl, 0, -4) . $this->getDavFilesPath($user);
- $headers['Destination'] = $fullUrl . $fileDestination;
- try {
- $this->response = $this->makeDavRequest($user, "MOVE", $fileSource, $headers);
- } catch (\GuzzleHttp\Exception\ClientException $e) {
- $this->response = $e->getResponse();
- }
- }
- /**
- * @When /^User "([^"]*)" copies file "([^"]*)" to "([^"]*)"$/
- * @param string $user
- * @param string $fileSource
- * @param string $fileDestination
- */
- public function userCopiesFileTo($user, $fileSource, $fileDestination) {
- $fullUrl = substr($this->baseUrl, 0, -4) . $this->getDavFilesPath($user);
- $headers['Destination'] = $fullUrl . $fileDestination;
- try {
- $this->response = $this->makeDavRequest($user, 'COPY', $fileSource, $headers);
- } catch (\GuzzleHttp\Exception\ClientException $e) {
- // 4xx and 5xx responses cause an exception
- $this->response = $e->getResponse();
- }
- }
- /**
- * @When /^Downloading file "([^"]*)" with range "([^"]*)"$/
- * @param string $fileSource
- * @param string $range
- */
- public function downloadFileWithRange($fileSource, $range){
- $headers['Range'] = $range;
- $this->response = $this->makeDavRequest($this->currentUser, "GET", $fileSource, $headers);
- }
- /**
- * @When /^Downloading last public shared file with range "([^"]*)"$/
- * @param string $range
- */
- public function downloadPublicFileWithRange($range){
- $token = $this->lastShareData->data->token;
- $fullUrl = substr($this->baseUrl, 0, -4) . "public.php/webdav";
- $client = new GClient();
- $options = [];
- $options['auth'] = [$token, ""];
- $request = $client->createRequest("GET", $fullUrl, $options);
- $request->addHeader('Range', $range);
- $this->response = $client->send($request);
- }
- /**
- * @When /^Downloading last public shared file inside a folder "([^"]*)" with range "([^"]*)"$/
- * @param string $range
- */
- public function downloadPublicFileInsideAFolderWithRange($path, $range){
- $token = $this->lastShareData->data->token;
- $fullUrl = substr($this->baseUrl, 0, -4) . "public.php/webdav" . "$path";
- $client = new GClient();
- $options = [];
- $options['auth'] = [$token, ""];
- $request = $client->createRequest("GET", $fullUrl, $options);
- $request->addHeader('Range', $range);
- $this->response = $client->send($request);
- }
- /**
- * @Then /^Downloaded content should be "([^"]*)"$/
- * @param string $content
- */
- public function downloadedContentShouldBe($content){
- PHPUnit_Framework_Assert::assertEquals($content, (string)$this->response->getBody());
- }
- /**
- * @Then /^Downloaded content when downloading file "([^"]*)" with range "([^"]*)" should be "([^"]*)"$/
- * @param string $fileSource
- * @param string $range
- * @param string $content
- */
- public function downloadedContentWhenDownloadindShouldBe($fileSource, $range, $content){
- $this->downloadFileWithRange($fileSource, $range);
- $this->downloadedContentShouldBe($content);
- }
- /**
- * @When Downloading file :fileName
- * @param string $fileName
- */
- public function downloadingFile($fileName) {
- try {
- $this->response = $this->makeDavRequest($this->currentUser, 'GET', $fileName, []);
- } catch (\GuzzleHttp\Exception\ClientException $e) {
- $this->response = $e->getResponse();
- }
- }
- /**
- * @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];
- $returnedHeader = $this->response->getHeader($headerName);
- if($returnedHeader !== $expectedHeaderValue) {
- throw new \Exception(
- sprintf(
- "Expected value '%s' for header '%s', got '%s'",
- $expectedHeaderValue,
- $headerName,
- $returnedHeader
- )
- );
- }
- }
- }
- /**
- * @Then Downloaded content should start with :start
- * @param int $start
- * @throws \Exception
- */
- public function downloadedContentShouldStartWith($start) {
- if(strpos($this->response->getBody()->getContents(), $start) !== 0) {
- throw new \Exception(
- sprintf(
- "Expected '%s', got '%s'",
- $start,
- $this->response->getBody()->getContents()
- )
- );
- }
- }
- /**
- * @Then /^as "([^"]*)" gets properties of (file|folder|entry) "([^"]*)" with$/
- * @param string $user
- * @param string $elementType
- * @param string $path
- * @param \Behat\Gherkin\Node\TableNode|null $propertiesTable
- */
- public function asGetsPropertiesOfFolderWith($user, $elementType, $path, $propertiesTable) {
- $properties = null;
- if ($propertiesTable instanceof \Behat\Gherkin\Node\TableNode) {
- foreach ($propertiesTable->getRows() as $row) {
- $properties[] = $row[0];
- }
- }
- $this->response = $this->listFolder($user, $path, 0, $properties);
- }
- /**
- * @Then /^as "([^"]*)" the (file|folder|entry) "([^"]*)" does not exist$/
- * @param string $user
- * @param string $entry
- * @param string $path
- * @param \Behat\Gherkin\Node\TableNode|null $propertiesTable
- */
- public function asTheFileOrFolderDoesNotExist($user, $entry, $path) {
- $client = $this->getSabreClient($user);
- $response = $client->request('HEAD', $this->makeSabrePath($user, $path));
- if ($response['statusCode'] !== 404) {
- throw new \Exception($entry . ' "' . $path . '" expected to not exist (status code ' . $response['statusCode'] . ', expected 404)');
- }
- return $response;
- }
- /**
- * @Then /^as "([^"]*)" the (file|folder|entry) "([^"]*)" exists$/
- * @param string $user
- * @param string $entry
- * @param string $path
- */
- public function asTheFileOrFolderExists($user, $entry, $path) {
- $this->response = $this->listFolder($user, $path, 0);
- }
- /**
- * @Then the single response should contain a property :key with value :value
- * @param string $key
- * @param string $expectedValue
- * @throws \Exception
- */
- public function theSingleResponseShouldContainAPropertyWithValue($key, $expectedValue) {
- $keys = $this->response;
- if (!array_key_exists($key, $keys)) {
- throw new \Exception("Cannot find property \"$key\" with \"$expectedValue\"");
- }
- $value = $keys[$key];
- if ($value instanceof ResourceType) {
- $value = $value->getValue();
- if (empty($value)) {
- $value = '';
- } else {
- $value = $value[0];
- }
- }
- if ($value != $expectedValue) {
- throw new \Exception("Property \"$key\" found with value \"$value\", expected \"$expectedValue\"");
- }
- }
- /**
- * @Then the response should contain a share-types property with
- */
- public function theResponseShouldContainAShareTypesPropertyWith($table)
- {
- $keys = $this->response;
- if (!array_key_exists('{http://owncloud.org/ns}share-types', $keys)) {
- throw new \Exception("Cannot find property \"{http://owncloud.org/ns}share-types\"");
- }
- $foundTypes = [];
- $data = $keys['{http://owncloud.org/ns}share-types'];
- foreach ($data as $item) {
- if ($item['name'] !== '{http://owncloud.org/ns}share-type') {
- throw new \Exception('Invalid property found: "' . $item['name'] . '"');
- }
- $foundTypes[] = $item['value'];
- }
- foreach ($table->getRows() as $row) {
- $key = array_search($row[0], $foundTypes);
- if ($key === false) {
- throw new \Exception('Expected type ' . $row[0] . ' not found');
- }
- unset($foundTypes[$key]);
- }
- if ($foundTypes !== []) {
- throw new \Exception('Found more share types then specified: ' . $foundTypes);
- }
- }
- /**
- * @Then the response should contain an empty property :property
- * @param string $property
- * @throws \Exception
- */
- public function theResponseShouldContainAnEmptyProperty($property) {
- $properties = $this->response;
- if (!array_key_exists($property, $properties)) {
- throw new \Exception("Cannot find property \"$property\"");
- }
- if ($properties[$property] !== null) {
- throw new \Exception("Property \"$property\" is not empty");
- }
- }
- /*Returns the elements of a propfind, $folderDepth requires 1 to see elements without children*/
- public function listFolder($user, $path, $folderDepth, $properties = null){
- $client = $this->getSabreClient($user);
- if (!$properties) {
- $properties = [
- '{DAV:}getetag'
- ];
- }
- $response = $client->propfind($this->makeSabrePath($user, $path), $properties, $folderDepth);
- return $response;
- }
- /* Returns the elements of a report command
- * @param string $user
- * @param string $path
- * @param string $properties properties which needs to be included in the report
- * @param string $filterRules filter-rules to choose what needs to appear in the report
- */
- public function reportFolder($user, $path, $properties, $filterRules){
- $client = $this->getSabreClient($user);
- $body = '<?xml version="1.0" encoding="utf-8" ?>
- <oc:filter-files xmlns:a="DAV:" xmlns:oc="http://owncloud.org/ns" >
- <a:prop>
- ' . $properties . '
- </a:prop>
- <oc:filter-rules>
- ' . $filterRules . '
- </oc:filter-rules>
- </oc:filter-files>';
- $response = $client->request('REPORT', $this->makeSabrePath($user, $path), $body);
- $parsedResponse = $client->parseMultistatus($response['body']);
- return $parsedResponse;
- }
- public function makeSabrePath($user, $path) {
- return $this->encodePath($this->getDavFilesPath($user) . $path);
- }
- public function getSabreClient($user) {
- $fullUrl = substr($this->baseUrl, 0, -4);
- $settings = [
- 'baseUri' => $fullUrl,
- 'userName' => $user,
- ];
- if ($user === 'admin') {
- $settings['password'] = $this->adminUser[1];
- } else {
- $settings['password'] = $this->regularUser;
- }
- $settings['authType'] = SClient::AUTH_BASIC;
- return new SClient($settings);
- }
- /**
- * @Then /^user "([^"]*)" should see following elements$/
- * @param string $user
- * @param \Behat\Gherkin\Node\TableNode|null $expectedElements
- */
- public function checkElementList($user, $expectedElements){
- $elementList = $this->listFolder($user, '/', 3);
- if ($expectedElements instanceof \Behat\Gherkin\Node\TableNode) {
- $elementRows = $expectedElements->getRows();
- $elementsSimplified = $this->simplifyArray($elementRows);
- foreach($elementsSimplified as $expectedElement) {
- $webdavPath = "/" . $this->getDavFilesPath($user) . $expectedElement;
- if (!array_key_exists($webdavPath,$elementList)){
- PHPUnit_Framework_Assert::fail("$webdavPath" . " is not in propfind answer");
- }
- }
- }
- }
- /**
- * @When User :user uploads file :source to :destination
- * @param string $user
- * @param string $source
- * @param string $destination
- */
- public function userUploadsAFileTo($user, $source, $destination)
- {
- $file = \GuzzleHttp\Stream\Stream::factory(fopen($source, 'r'));
- try {
- $this->response = $this->makeDavRequest($user, "PUT", $destination, [], $file);
- } catch (\GuzzleHttp\Exception\ServerException $e) {
- // 4xx and 5xx responses cause an exception
- $this->response = $e->getResponse();
- }
- }
- /**
- * @When User :user adds a file of :bytes bytes to :destination
- * @param string $user
- * @param string $bytes
- * @param string $destination
- */
- public function userAddsAFileTo($user, $bytes, $destination){
- $filename = "filespecificSize.txt";
- $this->createFileSpecificSize($filename, $bytes);
- PHPUnit_Framework_Assert::assertEquals(1, file_exists("work/$filename"));
- $this->userUploadsAFileTo($user, "work/$filename", $destination);
- $this->removeFile("work/", $filename);
- $expectedElements = new \Behat\Gherkin\Node\TableNode([["$destination"]]);
- $this->checkElementList($user, $expectedElements);
- }
- /**
- * @When User :user uploads file with content :content to :destination
- */
- public function userUploadsAFileWithContentTo($user, $content, $destination)
- {
- $file = \GuzzleHttp\Stream\Stream::factory($content);
- try {
- $this->response = $this->makeDavRequest($user, "PUT", $destination, [], $file);
- } catch (\GuzzleHttp\Exception\ServerException $e) {
- // 4xx and 5xx responses cause an exception
- $this->response = $e->getResponse();
- }
- }
- /**
- * @When /^User "([^"]*)" deletes (file|folder) "([^"]*)"$/
- * @param string $user
- * @param string $type
- * @param string $file
- */
- public function userDeletesFile($user, $type, $file) {
- try {
- $this->response = $this->makeDavRequest($user, 'DELETE', $file, []);
- } catch (\GuzzleHttp\Exception\ServerException $e) {
- // 4xx and 5xx responses cause an exception
- $this->response = $e->getResponse();
- }
- }
- /**
- * @Given User :user created a folder :destination
- * @param string $user
- * @param string $destination
- */
- public function userCreatedAFolder($user, $destination) {
- try {
- $destination = '/' . ltrim($destination, '/');
- $this->response = $this->makeDavRequest($user, "MKCOL", $destination, []);
- } catch (\GuzzleHttp\Exception\ServerException $e) {
- // 4xx and 5xx responses cause an exception
- $this->response = $e->getResponse();
- }
- }
- /**
- * @Given user :user uploads chunk file :num of :total with :data to :destination
- * @param string $user
- * @param int $num
- * @param int $total
- * @param string $data
- * @param string $destination
- */
- public function userUploadsChunkFileOfWithToWithChecksum($user, $num, $total, $data, $destination)
- {
- $num -= 1;
- $data = \GuzzleHttp\Stream\Stream::factory($data);
- $file = $destination . '-chunking-42-' . $total . '-' . $num;
- $this->makeDavRequest($user, 'PUT', $file, ['OC-Chunked' => '1'], $data, "uploads");
- }
- /**
- * @Given user :user creates a new chunking upload with id :id
- */
- public function userCreatesANewChunkingUploadWithId($user, $id)
- {
- $destination = '/uploads/'.$user.'/'.$id;
- $this->makeDavRequest($user, 'MKCOL', $destination, [], null, "uploads");
- }
- /**
- * @Given user :user uploads new chunk file :num with :data to id :id
- */
- public function userUploadsNewChunkFileOfWithToId($user, $num, $data, $id)
- {
- $data = \GuzzleHttp\Stream\Stream::factory($data);
- $destination = '/uploads/'. $user .'/'. $id .'/' . $num;
- $this->makeDavRequest($user, 'PUT', $destination, [], $data, "uploads");
- }
- /**
- * @Given user :user moves new chunk file with id :id to :dest
- */
- public function userMovesNewChunkFileWithIdToMychunkedfile($user, $id, $dest)
- {
- $source = '/uploads/' . $user . '/' . $id . '/.file';
- $destination = substr($this->baseUrl, 0, -4) . $this->getDavFilesPath($user) . $dest;
- $this->makeDavRequest($user, 'MOVE', $source, [
- 'Destination' => $destination
- ], null, "uploads");
- }
- /**
- * @Given /^Downloading file "([^"]*)" as "([^"]*)"$/
- */
- public function downloadingFileAs($fileName, $user) {
- try {
- $this->response = $this->makeDavRequest($user, 'GET', $fileName, []);
- } catch (\GuzzleHttp\Exception\ServerException $ex) {
- $this->response = $ex->getResponse();
- }
- }
- /**
- * URL encodes the given path but keeps the slashes
- *
- * @param string $path to encode
- * @return string encoded path
- */
- private function encodePath($path) {
- // slashes need to stay
- return str_replace('%2F', '/', rawurlencode($path));
- }
- /**
- * @When user :user favorites element :path
- */
- public function userFavoritesElement($user, $path){
- $this->response = $this->changeFavStateOfAnElement($user, $path, 1, 0, null);
- }
- /**
- * @When user :user unfavorites element :path
- */
- public function userUnfavoritesElement($user, $path){
- $this->response = $this->changeFavStateOfAnElement($user, $path, 0, 0, null);
- }
- /*Set the elements of a proppatch, $folderDepth requires 1 to see elements without children*/
- public function changeFavStateOfAnElement($user, $path, $favOrUnfav, $folderDepth, $properties = null){
- $fullUrl = substr($this->baseUrl, 0, -4);
- $settings = [
- 'baseUri' => $fullUrl,
- 'userName' => $user,
- ];
- if ($user === 'admin') {
- $settings['password'] = $this->adminUser[1];
- } else {
- $settings['password'] = $this->regularUser;
- }
- $settings['authType'] = SClient::AUTH_BASIC;
- $client = new SClient($settings);
- if (!$properties) {
- $properties = [
- '{http://owncloud.org/ns}favorite' => $favOrUnfav
- ];
- }
- $response = $client->proppatch($this->getDavFilesPath($user) . $path, $properties, $folderDepth);
- return $response;
- }
- /**
- * @Given user :user stores etag of element :path
- */
- public function userStoresEtagOfElement($user, $path){
- $propertiesTable = new \Behat\Gherkin\Node\TableNode([['{DAV:}getetag']]);
- $this->asGetsPropertiesOfFolderWith($user, 'entry', $path, $propertiesTable);
- $pathETAG[$path] = $this->response['{DAV:}getetag'];
- $this->storedETAG[$user]= $pathETAG;
- }
- /**
- * @Then etag of element :path of user :user has not changed
- */
- public function checkIfETAGHasNotChanged($path, $user){
- $propertiesTable = new \Behat\Gherkin\Node\TableNode([['{DAV:}getetag']]);
- $this->asGetsPropertiesOfFolderWith($user, 'entry', $path, $propertiesTable);
- PHPUnit_Framework_Assert::assertEquals($this->response['{DAV:}getetag'], $this->storedETAG[$user][$path]);
- }
- /**
- * @Then etag of element :path of user :user has changed
- */
- public function checkIfETAGHasChanged($path, $user){
- $propertiesTable = new \Behat\Gherkin\Node\TableNode([['{DAV:}getetag']]);
- $this->asGetsPropertiesOfFolderWith($user, 'entry', $path, $propertiesTable);
- PHPUnit_Framework_Assert::assertNotEquals($this->response['{DAV:}getetag'], $this->storedETAG[$user][$path]);
- }
- /**
- * @When Connecting to dav endpoint
- */
- public function connectingToDavEndpoint() {
- try {
- $this->response = $this->makeDavRequest(null, 'PROPFIND', '', []);
- } catch (\GuzzleHttp\Exception\ClientException $e) {
- $this->response = $e->getResponse();
- }
- }
- /**
- * @Then there are no duplicate headers
- */
- public function thereAreNoDuplicateHeaders() {
- $headers = $this->response->getHeaders();
- foreach ($headers as $headerName => $headerValues) {
- // if a header has multiple values, they must be different
- if (count($headerValues) > 1 && count(array_unique($headerValues)) < count($headerValues)) {
- throw new \Exception('Duplicate header found: ' . $headerName);
- }
- }
- }
- /**
- * @Then /^user "([^"]*)" in folder "([^"]*)" should have favorited the following elements$/
- * @param string $user
- * @param string $folder
- * @param \Behat\Gherkin\Node\TableNode|null $expectedElements
- */
- public function checkFavoritedElements($user, $folder, $expectedElements){
- $elementList = $this->reportFolder($user,
- $folder,
- '<oc:favorite/>',
- '<oc:favorite>1</oc:favorite>');
- if ($expectedElements instanceof \Behat\Gherkin\Node\TableNode) {
- $elementRows = $expectedElements->getRows();
- $elementsSimplified = $this->simplifyArray($elementRows);
- foreach($elementsSimplified as $expectedElement) {
- $webdavPath = "/" . $this->getDavFilesPath($user) . $expectedElement;
- if (!array_key_exists($webdavPath,$elementList)){
- PHPUnit_Framework_Assert::fail("$webdavPath" . " is not in report answer");
- }
- }
- }
- }
- /**
- * @When /^User "([^"]*)" deletes everything from folder "([^"]*)"$/
- * @param string $user
- * @param string $folder
- */
- public function userDeletesEverythingInFolder($user, $folder) {
- $elementList = $this->listFolder($user, $folder, 1);
- $elementListKeys = array_keys($elementList);
- array_shift($elementListKeys);
- $davPrefix = "/" . $this->getDavFilesPath($user);
- foreach($elementListKeys as $element) {
- if (substr($element, 0, strlen($davPrefix)) == $davPrefix) {
- $element = substr($element, strlen($davPrefix));
- }
- $this->userDeletesFile($user, "element", $element);
- }
- }
- }
|