Fix vLBCL AAI API call parameters
[testsuite.git] / setup.sh
1 #!/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
5
6
7 # save console output in setup_<timestamp>.log file in project directory
8 timestamp=$(date +"%m%d%Y_%H%M%S")
9 LOG_FILE=setup_$timestamp.log
10 exec > >(tee -a ${LOG_FILE} )
11 exec 2> >(tee -a ${LOG_FILE} >&2)
12
13
14 # get the path
15 path=$(pwd)
16
17 pip install --no-cache-dir --target="$path/robot/library" 'selenium<=3.0.0' 'requests==2.11.1' 'robotframework-selenium2library==1.8.0' \
18 'robotframework-databaselibrary==0.8.1' 'robotframework-extendedselenium2library==0.9.1' 'robotframework-requests==0.4.5' \
19 'robotframework-sshlibrary==2.1.2' \
20 'robotframework-sudslibrary==0.8' 'robotframework-ftplibrary==1.3' 'robotframework-rammbock==0.4.0.1' \
21 'deepdiff==2.5.1' 'dnspython==1.15.0' 'robotframework-httplibrary==0.4.2' 'robotframework-archivelibrary==0.3.2' 'PyYAML==3.12'
22
23
24 # get the git for the eteutils you will need to add a private key to your ssh before this
25 if [ -d $path/testsuite/eteutils ]
26 then
27     # Support LF build location
28         cd $path/testsuite/eteutils
29 else
30         cd ~
31         git config --global http.sslVerify false
32         if [ -d ~/python-testing-utils ]
33         then
34                 cd python-testing-utils
35                 git pull origin master
36         else
37                 git clone https://gerrit.onap.org/r/testsuite/python-testing-utils.git
38                 cd python-testing-utils
39         fi
40 fi
41 pip install --no-cache-dir --upgrade --target="$path/robot/library" .
42
43
44 if [ -d $path/testsuite/heatbridge ]
45 then
46     # Support LF build location
47         cd $path/testsuite/heatbridge
48 else
49         cd ~
50         git config --global http.sslVerify false
51         if [ -d ~/heatbridge ]
52         then
53                 cd heatbridge
54                 git pull origin master
55         else
56                 git clone https://gerrit.onap.org/r/testsuite/heatbridge.git
57                 cd heatbridge
58         fi
59 fi
60 pip install --no-cache-dir --upgrade --target="$path/robot/library" ./heatbridge
61
62
63 # NOTE: Patch to incude explicit install of paramiko to 2.0.2 to work with sshlibrary 2.1.2
64 # This should be removed on new release of paramiko (2.1.2) or sshlibrary
65 # https://github.com/robotframework/SSHLibrary/issues/157
66 pip install --no-cache-dir --target="$path/robot/library" -U 'paramiko==2.0.2'
67
68
69 # Go back to execution folder
70 cd $path
71
72
73 #
74 # Get the appropriate chromedriver. Default to linux64
75 #
76 CHROMEDRIVER_URL=http://chromedriver.storage.googleapis.com/2.37
77 CHROMEDRIVER_ZIP=chromedriver_linux64.zip
78
79 # Handle mac and windows
80 OS=`uname -s`
81 case $OS in
82   MINGW*_NT*)
83         CHROMEDRIVER_ZIP=chromedriver_win32.zip
84         ;;
85   Darwin*)
86         CHROMEDRIVER_ZIP=chromedriver_mac64.zip
87         ;;
88   *) echo "Defaulting to Linux 64" ;;
89 esac
90
91 if [ $CHROMEDRIVER_ZIP == 'chromedriver_linux64.zip' ]
92 then
93     wget -O chromedriver.zip $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP
94         unzip chromedriver.zip -d /usr/local/bin
95 else
96     curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o chromedriver.zip
97         unzip chromedriver.zip
98 fi