2015-11-24 15:48:06 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Behat\Behat\Context\Context;
|
|
|
|
use Behat\Behat\Context\SnippetAcceptingContext;
|
2015-11-27 15:55:48 +03:00
|
|
|
use GuzzleHttp\Client as GClient;
|
2015-11-24 15:48:06 +03:00
|
|
|
use GuzzleHttp\Message\ResponseInterface;
|
2015-11-27 15:55:48 +03:00
|
|
|
use Sabre\DAV\Client as SClient;
|
2015-11-24 15:48:06 +03:00
|
|
|
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
|
|
|
|
|
|
trait WebDav{
|
|
|
|
|
|
|
|
/** @var string*/
|
|
|
|
private $davPath = "remote.php/webdav";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Given /^using dav path "([^"]*)"$/
|
|
|
|
*/
|
|
|
|
public function usingDavPath($davPath) {
|
|
|
|
$this->davPath = $davPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function makeDavRequest($user, $method, $path, $headers){
|
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4) . $this->davPath . "$path";
|
2015-11-27 15:55:48 +03:00
|
|
|
$client = new GClient();
|
2015-11-24 15:48:06 +03:00
|
|
|
$options = [];
|
|
|
|
if ($user === 'admin') {
|
|
|
|
$options['auth'] = $this->adminUser;
|
|
|
|
} else {
|
|
|
|
$options['auth'] = [$user, $this->regularUser];
|
|
|
|
}
|
|
|
|
$request = $client->createRequest($method, $fullUrl, $options);
|
2015-11-27 15:55:48 +03:00
|
|
|
if (!is_null($headers)){
|
|
|
|
foreach ($headers as $key => $value) {
|
|
|
|
$request->addHeader($key, $value);
|
|
|
|
}
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
return $client->send($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Given /^User "([^"]*)" moved file "([^"]*)" to "([^"]*)"$/
|
|
|
|
*/
|
|
|
|
public function userMovedFile($user, $fileSource, $fileDestination){
|
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4) . $this->davPath;
|
|
|
|
$headers['Destination'] = $fullUrl . $fileDestination;
|
|
|
|
$this->response = $this->makeDavRequest($user, "MOVE", $fileSource, $headers);
|
|
|
|
PHPUnit_Framework_Assert::assertEquals(201, $this->response->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @When /^User "([^"]*)" moves file "([^"]*)" to "([^"]*)"$/
|
|
|
|
*/
|
|
|
|
public function userMovesFile($user, $fileSource, $fileDestination){
|
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4) . $this->davPath;
|
|
|
|
$headers['Destination'] = $fullUrl . $fileDestination;
|
|
|
|
$this->response = $this->makeDavRequest($user, "MOVE", $fileSource, $headers);
|
|
|
|
}
|
|
|
|
|
2015-11-30 17:07:02 +03:00
|
|
|
/**
|
|
|
|
* @When /^Downloading file "([^"]*)" with range "([^"]*)"$/
|
|
|
|
*/
|
|
|
|
public function downloadFileWithRange($fileSource, $range){
|
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4) . $this->davPath;
|
|
|
|
$headers['Range'] = $range;
|
|
|
|
$this->response = $this->makeDavRequest($this->currentUser, "GET", $fileSource, $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Then /^Downloaded content should be "([^"]*)"$/
|
|
|
|
*/
|
|
|
|
public function downloadedContentShouldBe($content){
|
|
|
|
PHPUnit_Framework_Assert::assertEquals($content, (string)$this->response->getBody());
|
|
|
|
}
|
|
|
|
|
2015-11-30 15:20:05 +03:00
|
|
|
/*Returns the elements of a propfind, $folderDepth requires 1 to see elements without children*/
|
|
|
|
public function listFolder($user, $path, $folderDepth){
|
2015-11-27 15:55:48 +03:00
|
|
|
$fullUrl = substr($this->baseUrl, 0, -4);
|
|
|
|
|
|
|
|
$settings = array(
|
|
|
|
'baseUri' => $fullUrl,
|
|
|
|
'userName' => $user,
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($user === 'admin') {
|
|
|
|
$settings['password'] = $this->adminUser[1];
|
|
|
|
} else {
|
|
|
|
$settings['password'] = $this->regularUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
$client = new SClient($settings);
|
|
|
|
|
|
|
|
$response = $client->propfind($this->davPath . "/", array(
|
2015-11-30 15:20:05 +03:00
|
|
|
'{DAV:}getetag'
|
|
|
|
), $folderDepth);
|
2015-11-27 15:55:48 +03:00
|
|
|
|
2015-11-30 15:20:05 +03:00
|
|
|
return $response;
|
2015-11-27 15:55:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-30 15:20:05 +03:00
|
|
|
* @Then /^user "([^"]*)" should see following elements$/
|
|
|
|
* @param \Behat\Gherkin\Node\TableNode|null $expectedElements
|
2015-11-27 15:55:48 +03:00
|
|
|
*/
|
2015-11-30 15:20:05 +03:00
|
|
|
public function checkElementList($user, $expectedElements){
|
|
|
|
$elementList = $this->listFolder($user, '/', 2);
|
|
|
|
if ($expectedElements instanceof \Behat\Gherkin\Node\TableNode) {
|
|
|
|
$elementRows = $expectedElements->getRows();
|
|
|
|
$elementsSimplified = $this->simplifyArray($elementRows);
|
|
|
|
foreach($elementsSimplified as $expectedElement) {
|
|
|
|
$webdavPath = "/" . $this->davPath . $expectedElement;
|
|
|
|
if (!array_key_exists($webdavPath,$elementList)){
|
|
|
|
PHPUnit_Framework_Assert::fail("$webdavPath" . " is not in propfind answer");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 15:55:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-24 15:48:06 +03:00
|
|
|
}
|
|
|
|
|