Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2017-03-20 14:41:56 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-03-24 21:40:14 +0300
commitc54091d43bc94728970479ea745c993f99f9b056 (patch)
treea250b59f4b0cb54c857271d024d3692cff3a2bcd /build
parent2cd79a8d3d6c160b9458327b1429eed9ec1a25a2 (diff)
Use authType BASIC for Sabre client in integration tests
This helps massively reduce the numerous useless 401 exceptions that appears in the test log. These appear only because Sabre first connects without any auth type to receive the challenge and then sends the authentication data. With this change it will directly use basic auth. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/bootstrap/WebDav.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php
index 0a75ff96732..3a018a2d0fa 100644
--- a/build/integration/features/bootstrap/WebDav.php
+++ b/build/integration/features/bootstrap/WebDav.php
@@ -170,7 +170,6 @@ trait WebDav {
public function downloadPublicFileWithRange($range){
$token = $this->lastShareData->data->token;
$fullUrl = substr($this->baseUrl, 0, -4) . "public.php/webdav";
- $headers['Range'] = $range;
$client = new GClient();
$options = [];
@@ -189,7 +188,6 @@ trait WebDav {
public function downloadPublicFileInsideAFolderWithRange($path, $range){
$token = $this->lastShareData->data->token;
$fullUrl = substr($this->baseUrl, 0, -4) . "public.php/webdav" . "$path";
- $headers['Range'] = $range;
$client = new GClient();
$options = [];
@@ -437,16 +435,17 @@ trait WebDav {
public function getSabreClient($user) {
$fullUrl = substr($this->baseUrl, 0, -4);
- $settings = array(
+ $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);
}
@@ -634,15 +633,17 @@ trait WebDav {
/*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 = array(
+ $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 = [