Rename ocis-phoenix to ocis-web

This commit is contained in:
Lukas Hirt
2020-12-13 17:37:32 +01:00
parent 8ff6a8eac0
commit 25b51fc368
78 changed files with 319 additions and 326 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
const path = require('path')
const PHOENIX_PATH = process.env.PHOENIX_PATH
const WEB_PATH = process.env.WEB_PATH
const TEST_INFRA_DIRECTORY = process.env.TEST_INFRA_DIRECTORY
const OCIS_SETTINGS_STORE = process.env.OCIS_SETTINGS_STORE || './ocis-settings-store'
const config = require(path.join(PHOENIX_PATH, 'nightwatch.conf.js'))
const config = require(path.join(WEB_PATH, 'nightwatch.conf.js'))
config.page_objects_path = [TEST_INFRA_DIRECTORY + '/acceptance/pageObjects', 'ui/tests/acceptance/pageobjects']
config.custom_commands_path = TEST_INFRA_DIRECTORY + '/acceptance/customCommands'
@@ -2,7 +2,7 @@
# OpenID Connect client registry.
clients:
- id: phoenix
- id: web
name: OCIS
application_type: web
insecure: yes
@@ -5,7 +5,7 @@
"openIdConnect": {
"metadata_url": "https://ocis-server:9200/.well-known/openid-configuration",
"authority": "https://ocis-server:9200",
"client_id": "phoenix",
"client_id": "web",
"response_type": "code",
"scope": "openid profile email"
},
+5 -5
View File
@@ -1,8 +1,8 @@
#!/bin/bash
if [ -z "$PHOENIX_PATH" ]
if [ -z "$WEB_PATH" ]
then
echo "PHOENIX_PATH env variable is not set, cannot find files for tests infrastructure"
echo "WEB_PATH env variable is not set, cannot find files for tests infrastructure"
exit 1
fi
@@ -12,9 +12,9 @@ then
exit 1
fi
if [ -z "$PHOENIX_CONFIG" ]
if [ -z "$WEB_CONFIG" ]
then
echo "PHOENIX_CONFIG env variable is not set, cannot find phoenix config file"
echo "WEB_CONFIG env variable is not set, cannot find ownCloud Web config file"
exit 1
fi
@@ -46,7 +46,7 @@ clean_up() {
trap clean_up SIGHUP SIGINT SIGTERM EXIT
cp -r "$PHOENIX_PATH/tests" "./$testFolder"
cp -r "$WEB_PATH/tests" "./$testFolder"
export NODE_TLS_REJECT_UNAUTHORIZED='0'
export SERVER_HOST=${SERVER_HOST:-https://localhost:9200}