123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?php
- /**
- *
- * @author Christoph Wurst <christoph@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;
- use GuzzleHttp\Exception\ClientException;
- require __DIR__ . '/../../vendor/autoload.php';
- trait Auth {
- private $clientToken;
- /** @BeforeScenario */
- public function setUpScenario() {
- $this->client = new Client();
- $this->responseXml = '';
- }
- /**
- * @When requesting :url with :method
- */
- public function requestingWith($url, $method) {
- $this->sendRequest($url, $method);
- }
- private function sendRequest($url, $method, $authHeader = null, $useCookies = false) {
- $fullUrl = substr($this->baseUrl, 0, -5) . $url;
- try {
- if ($useCookies) {
- $request = $this->client->createRequest($method, $fullUrl, [
- 'cookies' => $this->cookieJar,
- ]);
- } else {
- $request = $this->client->createRequest($method, $fullUrl);
- }
- if ($authHeader) {
- $request->setHeader('Authorization', $authHeader);
- }
- $request->setHeader('OCS_APIREQUEST', 'true');
- $request->setHeader('requesttoken', $this->requestToken);
- $this->response = $this->client->send($request);
- } catch (ClientException $ex) {
- $this->response = $ex->getResponse();
- }
- }
- /**
- * @Given a new client token is used
- */
- public function aNewClientTokenIsUsed() {
- $this->loggingInUsingWebAs('user0');
- $fullUrl = substr($this->baseUrl, 0, -5) . '/index.php/settings/personal/authtokens';
- $client = new Client();
- $options = [
- 'auth' => ['user0', '123456'],
- 'body' => [
- 'requesttoken' => $this->requestToken,
- 'name' => md5(microtime()),
- ],
- 'cookies' => $this->cookieJar,
- ];
- $resp = $client->send($client->createRequest('POST', $fullUrl, $options));
- $this->clientToken = json_decode($resp->getBody()->getContents())->token;
- }
- /**
- * @When requesting :url with :method using basic auth
- */
- public function requestingWithBasicAuth($url, $method) {
- $this->sendRequest($url, $method, 'basic ' . base64_encode('user0:123456'));
- }
- /**
- * @When requesting :url with :method using basic token auth
- */
- public function requestingWithBasicTokenAuth($url, $method) {
- $this->sendRequest($url, $method, 'basic ' . base64_encode('user0:' . $this->clientToken));
- }
- /**
- * @When requesting :url with :method using a client token
- */
- public function requestingWithUsingAClientToken($url, $method) {
- $this->sendRequest($url, $method, 'token ' . $this->clientToken);
- }
- /**
- * @When requesting :url with :method using browser session
- */
- public function requestingWithBrowserSession($url, $method) {
- $this->sendRequest($url, $method, null, true);
- }
- /**
- * @Given a new browser session is started
- */
- public function aNewBrowserSessionIsStarted($remember = false) {
- $loginUrl = substr($this->baseUrl, 0, -5) . '/login';
- // Request a new session and extract CSRF token
- $client = new Client();
- $response = $client->get($loginUrl, [
- 'cookies' => $this->cookieJar,
- ]);
- $this->extracRequestTokenFromResponse($response);
- // Login and extract new token
- $client = new Client();
- $response = $client->post(
- $loginUrl, [
- 'body' => [
- 'user' => 'user0',
- 'password' => '123456',
- 'remember_login' => $remember ? '1' : '0',
- 'requesttoken' => $this->requestToken,
- ],
- 'cookies' => $this->cookieJar,
- ]
- );
- $this->extracRequestTokenFromResponse($response);
- }
- /**
- * @Given a new remembered browser session is started
- */
- public function aNewRememberedBrowserSessionIsStarted() {
- $this->aNewBrowserSessionIsStarted(true);
- }
- /**
- * @When the session cookie expires
- */
- public function whenTheSessionCookieExpires() {
- $this->cookieJar->clearSessionCookies();
- }
- }
|