nextcloud/build/integration/features/bootstrap/FeatureContext.php

221 lines
4.9 KiB
PHP
Raw Normal View History

2015-08-06 16:47:21 +03:00
<?php
use Behat\Behat\Context\BehatContext;
use GuzzleHttp\Client;
use GuzzleHttp\Message\ResponseInterface;
2015-08-06 17:46:06 +03:00
require __DIR__ . '/../../vendor/autoload.php';
2015-08-06 16:47:21 +03:00
/**
* Features context.
*/
class FeatureContext extends BehatContext {
2015-08-06 18:16:24 +03:00
/** @var string */
private $baseUrl = '';
2015-08-06 16:47:21 +03:00
2015-08-06 18:16:24 +03:00
/** @var ResponseInterface */
private $response = null;
2015-08-06 16:47:21 +03:00
/** @var string */
private $currentUser = '';
/** @var int */
private $apiVersion = 1;
2015-08-06 18:16:24 +03:00
/**
* Initializes context.
* Every scenario gets it's own context object.
*
* @param array $parameters context parameters (set them up through behat.yml)
*/
public function __construct(array $parameters) {
2015-08-06 16:47:21 +03:00
2015-08-06 18:16:24 +03:00
// Initialize your context here
2015-08-06 16:47:21 +03:00
$this->baseUrl = $parameters['baseUrl'];
$this->adminUser = $parameters['admin'];
// in case of ci deployment we take the server url from the environment
$testServerUrl = getenv('TEST_SERVER_URL');
if ($testServerUrl !== false) {
$this->baseUrl = $testServerUrl;
}
2015-08-06 18:16:24 +03:00
}
2015-08-06 16:47:21 +03:00
2015-08-06 18:16:24 +03:00
/**
* @When /^sending "([^"]*)" to "([^"]*)"$/
*/
2015-08-06 18:16:24 +03:00
public function sendingTo($verb, $url) {
$this->sendingToWith($verb, $url, null);
}
/**
* Parses the xml answer to get ocs response which doesn't match with
* http one in v1 of the api.
*/
public function getOCSResponse($response){
return $response->xml()->meta[0]->statuscode;
}
/**
* @Then /^the OCS status code should be "([^"]*)"$/
2015-08-06 18:16:24 +03:00
*/
public function theOCSStatusCodeShouldBe($statusCode) {
PHPUnit_Framework_Assert::assertEquals($statusCode, $this->getOCSResponse($this->response));
2015-08-06 18:16:24 +03:00
}
/**
* @Then /^the HTTP status code should be "([^"]*)"$/
*/
public function theHTTPStatusCodeShouldBe($statusCode) {
PHPUnit_Framework_Assert::assertEquals($statusCode, $this->response->getStatusCode());
}
2015-08-06 18:16:24 +03:00
/**
* @Given /^As an "([^"]*)"$/
*/
public function asAn($user) {
2015-08-06 16:47:21 +03:00
$this->currentUser = $user;
2015-08-06 18:16:24 +03:00
}
2015-08-06 16:47:21 +03:00
/**
* @Given /^using api version "([^"]*)"$/
*/
public function usingApiVersion($version) {
$this->apiVersion = $version;
}
/**
* @Given /^user "([^"]*)" exists$/
*/
public function userExists($user) {
$fullUrl = $this->baseUrl . "v2.php/cloud/users/$user";
2015-08-06 18:16:24 +03:00
$client = new Client();
$options = [];
if ($this->currentUser === 'admin') {
$options['auth'] = $this->adminUser;
}
$this->response = $client->get($fullUrl, $options);
PHPUnit_Framework_Assert::assertEquals(200, $this->response->getStatusCode());
2015-08-06 18:16:24 +03:00
}
/**
* @Given /^user "([^"]*)" does not exist$/
*/
public function userDoesNotExist($user) {
try {
$this->userExists($user);
} catch (\GuzzleHttp\Exception\ClientException $ex) {
$this->response = $ex->getResponse();
PHPUnit_Framework_Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
2015-08-06 18:16:24 +03:00
}
}
2015-08-06 18:16:24 +03:00
/**
* @When /^creating the user "([^"]*)r"$/
*/
public function creatingTheUser($user) {
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user" ;
2015-08-06 18:16:24 +03:00
$client = new Client();
$options = [];
if ($this->currentUser === 'admin') {
$options['auth'] = $this->adminUser;
}
$this->response = $client->post($fullUrl, [
'form_params' => [
'userid' => $user,
'password' => '123456'
]
]);
2015-08-06 18:16:24 +03:00
}
2015-09-29 17:52:19 +03:00
/**
2015-09-29 17:52:19 +03:00
* @When /^creating the group "([^"]*)r"$/
*/
public function creatingTheGroup($group) {
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/groups/addgroup" ;
$client = new Client();
$options = [];
if ($this->currentUser === 'admin') {
$options['auth'] = $this->adminUser;
}
$this->response = $client->post($fullUrl, [
'form_params' => [
'groupid' => $user
]
]);
}
/**
* @Given /^group "([^"]*)" exists$/
*/
public function groupExists($group) {
$fullUrl = $this->baseUrl . "v2.php/cloud/groups/$group";
2015-09-29 17:52:19 +03:00
$client = new Client();
$options = [];
if ($this->currentUser === 'admin') {
$options['auth'] = $this->adminUser;
}
$this->response = $client->get($fullUrl, $options);
PHPUnit_Framework_Assert::assertEquals(200, $this->response->getStatusCode());
2015-09-29 17:52:19 +03:00
}
/**
* @Given /^group "([^"]*)" does not exist$/
*/
public function groupDoesNotExist($group) {
try {
$this->groupExists($group);
} catch (\GuzzleHttp\Exception\ClientException $ex) {
$this->response = $ex->getResponse();
PHPUnit_Framework_Assert::assertEquals(404, $ex->getResponse()->getStatusCode());
2015-09-29 17:52:19 +03:00
}
}
2015-08-06 18:16:24 +03:00
/**
* @When /^sending "([^"]*)" to "([^"]*)" with$/
* @param \Behat\Gherkin\Node\TableNode|null $formData
*/
public function sendingToWith($verb, $url, $body) {
$fullUrl = $this->baseUrl . "v{$this->apiVersion}.php" . $url;
$client = new Client();
$options = [];
if ($this->currentUser === 'admin') {
$options['auth'] = $this->adminUser;
}
if ($body instanceof \Behat\Gherkin\Node\TableNode) {
$fd = $body->getRowsHash();
$options['body'] = $fd;
}
try {
$this->response = $client->send($client->createRequest($verb, $fullUrl, $options));
} catch (\GuzzleHttp\Exception\ClientException $ex) {
$this->response = $ex->getResponse();
}
2015-08-06 16:47:21 +03:00
}
2015-08-06 16:47:21 +03:00
}