blob: 7972a0be3dda11e811a3695ec64c9b96b1a7420c [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001#!/bin/bash
2#
3# setup : script to setup required runtime environment. This script can be run again to update anything
4# this should stay in your project directory
Dina Dodinfabd1e82017-08-01 10:53:04 +03005
6
7# save console output in setup_<timestamp>.log file in project directory
8timestamp=$(date +"%m%d%Y_%H%M%S")
9LOG_FILE=setup_$timestamp.log
10exec > >(tee -a ${LOG_FILE} )
11exec 2> >(tee -a ${LOG_FILE} >&2)
12
DR695Hccff30b2017-02-17 18:44:24 -050013
14# get the path
15path=$(pwd)
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010016pip install \
17--no-cache-dir \
18--exists-action s \
19--target="$path/robot/library" \
DR695H345c9922019-05-10 15:52:12 -040020--extra-index-url="https://nexus3.onap.org/repository/PyPi.staging/simple" \
DR695H910097e2019-05-08 13:55:32 -040021'robotframework-seleniumlibrary==3.3.1' \
DR695H345c9922019-05-10 15:52:12 -040022'robotframework-databaselibrary==1.2' \
DR695H910097e2019-05-08 13:55:32 -040023'robotframework-angularjs==0.0.9' \
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010024'robotframework-requests==0.5.0' \
DR695H910097e2019-05-08 13:55:32 -040025'robotframework-sshlibrary==3.3.0' \
DR695H345c9922019-05-10 15:52:12 -040026'robotframework-ftplibrary==1.6' \
DR695H345c9922019-05-10 15:52:12 -040027'robotframework-archivelibrary==0.4.0' \
DR695H27426332019-05-21 11:26:28 -040028'robotframework-onap==0.5'
DR695Hccff30b2017-02-17 18:44:24 -050029
30
jf98600d5b0bf2017-02-24 14:39:40 -050031if [ -d $path/testsuite/heatbridge ]
DR695Hccff30b2017-02-17 18:44:24 -050032then
jf98600d5b0bf2017-02-24 14:39:40 -050033 # Support LF build location
34 cd $path/testsuite/heatbridge
35else
DR695Hccff30b2017-02-17 18:44:24 -050036 cd ~
37 git config --global http.sslVerify false
38 if [ -d ~/heatbridge ]
39 then
40 cd heatbridge
41 git pull origin master
jf98600d5b0bf2017-02-24 14:39:40 -050042 else
Jerry Flooddb798792017-03-29 11:25:30 -040043 git clone https://gerrit.onap.org/r/testsuite/heatbridge.git
DR695Hccff30b2017-02-17 18:44:24 -050044 cd heatbridge
45 fi
46fi
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010047
48pip install \
49--no-cache-dir \
50--upgrade \
51--exists-action s \
52--target="$path/robot/library" \
53./heatbridge
DR695Hccff30b2017-02-17 18:44:24 -050054
Dina Dodinfabd1e82017-08-01 10:53:04 +030055# Go back to execution folder
56cd $path
57
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010058# if the script is running during the image build skip the rest of it
59# as required software is installed already.
60if $BUILDTIME
DR695Hccff30b2017-02-17 18:44:24 -050061then
Dmitry Puzikovb0e12b42019-03-04 11:06:16 +010062 # we need to update PATH with chromium-chromedriver
63 echo "Adding in-container chromedriver to PATH"
64 ln -s /usr/lib/chromium-browser/chromedriver /usr/local/bin/chromedriver
65
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010066 echo "Skipping desktop steps, building container image..."
67else
68 #
69 # Get the appropriate chromedriver. Default to linux64
70 #
71 CHROMEDRIVER_URL=http://chromedriver.storage.googleapis.com/2.43
72 CHROMEDRIVER_ZIP=chromedriver_linux64.zip
73 CHROMEDRIVER_TARGET=chromedriver.zip
marekpl503647c2018-10-24 14:33:25 +020074
Puzikov Dmitry38bcba62019-02-15 16:58:35 +010075 # Handle mac and windows
76 OS=`uname -s`
77 case $OS in
78 MINGW*_NT*)
79 CHROMEDRIVER_ZIP=chromedriver_win32.zip
80 ;;
81 Darwin*)
82 CHROMEDRIVER_ZIP=chromedriver_mac64.zip
83 ;;
84 *) echo "Defaulting to Linux 64" ;;
85 esac
86
87 if [ $CHROMEDRIVER_ZIP == 'chromedriver_linux64.zip' ]
88 then
89 curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o $CHROMEDRIVER_TARGET
90 unzip chromedriver.zip -d /usr/local/bin
91 else
92 curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o $CHROMEDRIVER_TARGET
93 unzip $CHROMEDRIVER_TARGET
94 fi
95 rm -rf $CHROMEDRIVER_TARGET
DR695H9d810d02019-06-18 17:16:25 -040096fi