aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/tests/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/tests/config.php')
-rw-r--r--apps/files_external/tests/config.php153
1 files changed, 59 insertions, 94 deletions
diff --git a/apps/files_external/tests/config.php b/apps/files_external/tests/config.php
index 9784de7db15..ec860cf05a4 100644
--- a/apps/files_external/tests/config.php
+++ b/apps/files_external/tests/config.php
@@ -1,28 +1,9 @@
<?php
+
/**
- * @author Christian Berendt <berendt@b1-systems.de>
- * @author hkjolhede <hkjolhede@gmail.com>
- * @author Michael Gapczynski <GapczynskiM@gmail.com>
- * @author Robin Appelman <icewind@owncloud.com>
- * @author Ross Nicoll <jrn@jrn.me.uk>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
+ * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
*/
// in case there are private configurations in the users home -> use them
$privateConfigFile = $_SERVER['HOME'] . '/owncloud-extfs-test-config.php';
@@ -32,40 +13,33 @@ if (file_exists($privateConfigFile)) {
}
// this is now more a template now for your private configurations
-return array(
- 'ftp'=>array(
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'/test',
- ),
- 'webdav'=>array(
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'',
+return [
+ 'ftp' => [
+ 'run' => false,
+ 'host' => 'localhost',
+ 'user' => 'test',
+ 'password' => 'test',
+ 'root' => '/test',
+ ],
+ 'webdav' => [
+ 'run' => false,
+ 'host' => 'localhost',
+ 'user' => 'test',
+ 'password' => 'test',
+ 'root' => '',
// wait delay in seconds after write operations
// (only in tests)
// set to higher value for lighttpd webdav
- 'wait'=> 0
- ),
- 'owncloud'=>array(
- 'run'=>false,
- 'host'=>'localhost/owncloud',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'',
- ),
- 'google'=>array(
- 'run'=> false,
- 'configured' => 'true',
- 'client_id' => '',
- 'client_secret' => '',
- 'token' => '',
- ),
- 'swift' => array(
+ 'wait' => 0
+ ],
+ 'owncloud' => [
+ 'run' => false,
+ 'host' => 'localhost/owncloud',
+ 'user' => 'test',
+ 'password' => 'test',
+ 'root' => '',
+ ],
+ 'swift' => [
'run' => false,
'user' => 'test',
'bucket' => 'test',
@@ -76,49 +50,40 @@ return array(
//'service_name' => 'swift', //should be 'swift' for OpenStack Object Storage and 'cloudFiles' for Rackspace Cloud Files (default value)
//'url' => 'https://identity.api.rackspacecloud.com/v2.0/', //to be used with Rackspace Cloud Files and OpenStack Object Storage
//'timeout' => 5 // timeout of HTTP requests in seconds
- ),
- 'smb'=>array(
- 'run'=>false,
- 'user'=>'test',
- 'password'=>'test',
- 'host'=>'localhost',
- 'share'=>'/test',
- 'root'=>'/test/',
- ),
- 'amazons3'=>array(
- 'run'=>false,
- 'key'=>'test',
- 'secret'=>'test',
- 'bucket'=>'bucket'
+ ],
+ 'smb' => [
+ 'run' => false,
+ 'user' => 'test',
+ 'password' => 'test',
+ 'host' => 'localhost',
+ 'share' => '/test',
+ 'root' => '/test/',
+ ],
+ 'amazons3' => [
+ 'run' => false,
+ 'key' => 'test',
+ 'secret' => 'test',
+ 'bucket' => 'bucket'
//'hostname' => 'your.host.name',
//'port' => '443',
//'use_ssl' => 'true',
//'region' => 'eu-west-1',
//'test'=>'true',
//'timeout'=>20
- ),
- 'dropbox' => array (
- 'run'=>false,
- 'root'=>'owncloud',
- 'configured' => 'true',
- 'app_key' => '',
- 'app_secret' => '',
- 'token' => '',
- 'token_secret' => ''
- ),
- 'sftp' => array (
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'password'=>'test',
- 'root'=>'/test'
- ),
- 'sftp_key' => array (
- 'run'=>false,
- 'host'=>'localhost',
- 'user'=>'test',
- 'public_key'=>'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJPTvz3OLonF2KSGEKP/nd4CPmRYvemG2T4rIiNYjDj0U5y+2sKEWbjiUlQl2bsqYuVoJ+/UNJlGQbbZ08kQirFeo1GoWBzqioaTjUJfbLN6TzVVKXxR9YIVmH7Ajg2iEeGCndGgbmnPfj+kF9TR9IH8vMVvtubQwf7uEwB0ALhw== phpseclib-generated-key',
- 'private_key'=>'test',
- 'root'=>'/test'
- ),
-);
+ ],
+ 'sftp' => [
+ 'run' => false,
+ 'host' => 'localhost',
+ 'user' => 'test',
+ 'password' => 'test',
+ 'root' => '/test'
+ ],
+ 'sftp_key' => [
+ 'run' => false,
+ 'host' => 'localhost',
+ 'user' => 'test',
+ 'public_key' => 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJPTvz3OLonF2KSGEKP/nd4CPmRYvemG2T4rIiNYjDj0U5y+2sKEWbjiUlQl2bsqYuVoJ+/UNJlGQbbZ08kQirFeo1GoWBzqioaTjUJfbLN6TzVVKXxR9YIVmH7Ajg2iEeGCndGgbmnPfj+kF9TR9IH8vMVvtubQwf7uEwB0ALhw== phpseclib-generated-key',
+ 'private_key' => 'test',
+ 'root' => '/test'
+ ],
+];