diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-12-29 09:03:20 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-12-29 12:47:48 +0100 |
commit | 3256a1c79235cde867dcb8f7c0606b7a0f4b10e8 (patch) | |
tree | e8c739c14c4be217ee9a087869fffa7002271dbb /apps/files_external/tests | |
parent | 4a2a41191b077e2384076cd18db42c2e1afd3c6f (diff) | |
download | nextcloud-server-3256a1c79235cde867dcb8f7c0606b7a0f4b10e8.tar.gz nextcloud-server-3256a1c79235cde867dcb8f7c0606b7a0f4b10e8.zip |
Add files_external webdav apache tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_external/tests')
-rwxr-xr-x | apps/files_external/tests/env/start-webdav-apachedrone.sh | 26 | ||||
-rwxr-xr-x | apps/files_external/tests/env/stop-webdav-apachedrone.sh | 14 |
2 files changed, 40 insertions, 0 deletions
diff --git a/apps/files_external/tests/env/start-webdav-apachedrone.sh b/apps/files_external/tests/env/start-webdav-apachedrone.sh new file mode 100755 index 00000000000..9887cea5eee --- /dev/null +++ b/apps/files_external/tests/env/start-webdav-apachedrone.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# +# Nextcloud +# + +# retrieve current folder to place the config in the parent folder +thisFolder=`echo $0 | sed 's#env/start-webdav-apachedrone\.sh##'` + +if [ -z "$thisFolder" ]; then + thisFolder="." +fi; + +cat > $thisFolder/config.webdav.php <<DELIM +<?php + +return array( + 'run'=>true, + 'host'=>'127.0.0.1:80/webdav/', + 'user'=>'test', + 'password'=>'pass', + 'root'=>'', + 'wait'=> 0 +); + +DELIM + diff --git a/apps/files_external/tests/env/stop-webdav-apachedrone.sh b/apps/files_external/tests/env/stop-webdav-apachedrone.sh new file mode 100755 index 00000000000..3c4b0492dd0 --- /dev/null +++ b/apps/files_external/tests/env/stop-webdav-apachedrone.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# +# Nextcloud + +# retrieve current folder to remove the config from the parent folder +thisFolder=`echo $0 | sed 's#env/stop-webdav-apachedrone\.sh##'` + +if [ -z "$thisFolder" ]; then + thisFolder="." +fi; + +# cleanup +rm $thisFolder/config.webdav.php + |