summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-27 10:01:32 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-27 10:01:32 +0200
commit2ab4b1ce0402cca1903d06fb7977809088355891 (patch)
tree47fec5732dc748a1bfcb6c0954056f7a65eee5b3 /build
parent44709276c0dd681e021e3a6bb689beb55586e07f (diff)
parent68a92d36ec108ce6f630bc1f20ef492aace47f5d (diff)
downloadnextcloud-server-2ab4b1ce0402cca1903d06fb7977809088355891.tar.gz
nextcloud-server-2ab4b1ce0402cca1903d06fb7977809088355891.zip
Merge pull request #23942 from owncloud/fix-behat
Use baseUrl as provided
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/bootstrap/BasicStructure.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php
index d2aed82055a..31be33165e6 100644
--- a/build/integration/features/bootstrap/BasicStructure.php
+++ b/build/integration/features/bootstrap/BasicStructure.php
@@ -25,7 +25,7 @@ trait BasicStructure {
private $cookieJar;
/** @var string */
- private $requesttoken;
+ private $requestToken;
public function __construct($baseUrl, $admin, $regular_user_password) {
@@ -33,8 +33,8 @@ trait BasicStructure {
$this->baseUrl = $baseUrl;
$this->adminUser = $admin;
$this->regularUser = $regular_user_password;
- $this->localBaseUrl = substr($this->baseUrl, 0, -4);
- $this->remoteBaseUrl = substr($this->baseUrl, 0, -4);
+ $this->localBaseUrl = $this->baseUrl;
+ $this->remoteBaseUrl = $this->baseUrl;
$this->currentServer = 'LOCAL';
$this->cookieJar = new \GuzzleHttp\Cookie\CookieJar();
@@ -168,7 +168,7 @@ trait BasicStructure {
* @param ResponseInterface $response
*/
private function extracRequestTokenFromResponse(ResponseInterface $response) {
- $this->requesttoken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $response->getBody()->getContents()), 0, 89);
+ $this->requestToken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $response->getBody()->getContents()), 0, 89);
}
/**
@@ -196,7 +196,7 @@ trait BasicStructure {
'body' => [
'user' => $user,
'password' => $password,
- 'requesttoken' => $this->requesttoken,
+ 'requesttoken' => $this->requestToken,
],
'cookies' => $this->cookieJar,
]
@@ -220,7 +220,7 @@ trait BasicStructure {
'cookies' => $this->cookieJar,
]
);
- $request->addHeader('requesttoken', $this->requesttoken);
+ $request->addHeader('requesttoken', $this->requestToken);
try {
$this->response = $client->send($request);
} catch (\GuzzleHttp\Exception\ClientException $e) {