Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ox-installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QA
ox-installer
Commits
237adb04
Commit
237adb04
authored
5 years ago
by
root
Browse files
Options
Downloads
Patches
Plain Diff
add first cc try. not working
parent
2ab05313
No related branches found
No related tags found
1 merge request
!7
Issue16 7102
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
features/.codecept.sh.swp
+0
-0
0 additions, 0 deletions
features/.codecept.sh.swp
features/codecept.sh
+134
-0
134 additions, 0 deletions
features/codecept.sh
with
134 additions
and
0 deletions
features/.codecept.sh.swp
0 → 100644
+
0
−
0
View file @
237adb04
File added
This diff is collapsed.
Click to expand it.
features/codecept.sh
0 → 100755
+
134
−
0
View file @
237adb04
#!/bin/bash
#
# Copyright (C) 2019 OX Software GmbH
#
# This file is part of OX Automation.
#
# OX Automation is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OX Automation 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OX Automation. If not, see <http://www.gnu.org/licenses/>.
#
#
# Authors:
# Daniel Pondruff <daniel.pondruffopen-xchange.com>
#
set
-e
SCRIPT_DIR
=
"
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
-P
)
"
# sourcing some commonly used functions and executing basic checks
source
${
SCRIPT_DIR
}
/../lib/common.bash
source
${
SCRIPT_DIR
}
/../lib/setup.bash
checkRootPrivileges
detectDistribution
## Help text
show_usage
()
{
echo
-n
"
$0
[OPTIONS]
--enable
--disable
--restart
-k | --key <value>
"
}
### reading config from command line; overriding defaults
POSITIONAL
=()
while
[[
$#
-gt
0
]]
do
key
=
"
$1
"
case
$key
in
-h
|
--help
)
show_usage
exit
0
shift
;;
--debug
)
echo
"WARNING: Debug flag set (--debug)"
set
-x
shift
;;
--enable
)
FEATURE_ENABLE
=
true
shift
;;
--disable
)
FEATURE_ENABLE
=
false
shift
;;
-k
|
--key
)
value
=
"
$2
"
shift
shift
;;
--restart
)
RESTART_OX
=
true
shift
;;
*
)
# unknown option
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
shift
;;
esac
done
set
--
"
${
POSITIONAL
[@]
}
"
# restore positional parameters
if
[[
"
${
FEATURE_ENABLE
}
"
=
true
]]
;
then
echo
"Install Docker !"
# TODO
curl
-fsSL
https://download.docker.com/linux/debian/gpg | apt-key add -
add-apt-repository
\
"deb [arch=amd64] https://download.docker.com/linux/debian
\
$(
lsb_release
-cs
)
\
stable"
apt-get update
&&
apt-get
install
docker-ce
echo
"Install dep"
# DEBIAN ONLY ! TODO
curl
-sS
https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
&&
\
echo
"deb https://dl.yarnpkg.com/debian/ stable main"
|
tee
/etc/apt/sources.list.d/yarn.list
&&
\
curl
-sL
https://deb.nodesource.com/setup_12.x | bash -
apt-get update
&&
\
apt-get
install
-y
git nodejs yarn nmap default-jre jq
echo
"Clone Repo"
rm
-rf
/opt/open-xchange/tests/frontend
git clone
--depth
1
-b
master https://gitlab.open-xchange.com/frontend/core /opt/open-xchange/tests/frontend
cd
/opt/open-xchange/tests/frontend/ui
npm
install
-g
allure-commandline
--save-dev
setOXProperty PROVISIONING_URL
"http://localhost/"
/opt/open-xchange/tests/frontend/ui/.env
setOXProperty CONTEXT_ID
"1337"
/opt/open-xchange/tests/frontend/ui/.env
setOXProperty SELENIUM_HOST
"localhost"
/opt/open-xchange/tests/frontend/ui/.env
setOXProperty LAUNCH_URL
"http://localhost/appsuite/"
/opt/open-xchange/tests/frontend/ui/.env
setOXProperty PROVISIONING_URL
"http://localhost/"
/opt/open-xchange/tests/frontend/ui/.env
yarn
[
!
"
$(
docker ps
-a
|
grep
"hA4uYS"
)
"
]
&&
docker run
--name
"hA4uYS"
-d
-p
4444:4444
-p
5900:5900
-v
/dev/shm:/dev/shm selenium/standalone-chrome-debug:latest
yarn e2e
--verbose
--debug
elif
[[
"
${
FEATURE_ENABLE
}
"
=
false
]]
;
then
echo
""
# do something to disable it
fi
if
[[
"
${
RESTART_OX
}
"
=
true
]]
;
then
restartService open-xchange
fi
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment