aboutsummaryrefslogtreecommitdiffstats
path: root/cmso-robot/setup.sh
diff options
context:
space:
mode:
authorRamaPrasad Amaranarayana (ra5425) <ra5425@att.com>2018-09-19 17:40:40 -0400
committerRamaPrasad Amaranarayana (ra5425) <ra5425@att.com>2018-09-19 17:40:40 -0400
commitfbe4bb98345727d190cefcfb3ec54ad9075fba9d (patch)
treef2e0c091a4c132c89dafb061c81eeebfb0e9a773 /cmso-robot/setup.sh
parentb031d50f82f8ca5b7fd0609a92c719f43a9f518d (diff)
Change Management Schedule Optimization
Adding Robot Test Scripts for Change Management Schedule Optimization Change-Id: Id5edf9d3fb3c2390791362692c8b25f7607045c6 Issue-ID: OPTFRA-352 Signed-off-by: RamaPrasad Amaranarayana (ra5425) <ra5425@att.com>
Diffstat (limited to 'cmso-robot/setup.sh')
-rw-r--r--cmso-robot/setup.sh60
1 files changed, 60 insertions, 0 deletions
diff --git a/cmso-robot/setup.sh b/cmso-robot/setup.sh
new file mode 100644
index 0000000..1cbd3f9
--- /dev/null
+++ b/cmso-robot/setup.sh
@@ -0,0 +1,60 @@
+#!/bin/bash
+#
+# setup : script to setup required runtime environment. This script can be run again to update anything
+# this should stay in your project directory
+#
+
+# get the path
+path=$(pwd)
+pip install --upgrade pip
+pip install --no-cache-dir --target="$path/robot/library" 'selenium<=3.0.0'
+pip install --no-cache-dir --target="$path/robot/library" 'requests==2.11.1'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-selenium2library==1.8.0'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-databaselibrary==0.8.1'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-extendedselenium2library==0.9.1'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-requests==0.4.5'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-sshlibrary==2.1.2'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-sudslibrary==0.8'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-ftplibrary==1.3'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-rammbock==0.4.0.1'
+pip install --no-cache-dir --target="$path/robot/library" 'deepdiff==2.5.1'
+pip install --no-cache-dir --target="$path/robot/library" 'dnspython==1.15.0'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-httplibrary==0.4.2'
+pip install --no-cache-dir --target="$path/robot/library" 'robotframework-archivelibrary==0.3.2'
+pip install --no-cache-dir --target="$path/robot/library" 'PyYAML==3.12'
+
+# NOTE: Patch to incude explicit install of paramiko to 2.0.2 to work with sshlibrary 2.1.2
+# This should be removed on new release of paramiko (2.1.2) or sshlibrary
+# https://github.com/robotframework/SSHLibrary/issues/157
+pip install --no-cache-dir --target="$path/robot/library" -U 'paramiko==2.0.2'
+
+#
+# Get the appropriate chromedriver. Default to linux64
+#
+CHROMEDRIVER_URL=http://chromedriver.storage.googleapis.com/2.29
+CHROMEDRIVER_ZIP=chromedriver_linux64.zip
+
+# Handle mac and windows
+OS=`uname -s`
+case $OS in
+ MINGW*_NT*)
+ CHROMEDRIVER_ZIP=chromedriver_win32.zip
+ ;;
+ Darwin*)
+ CHROMEDRIVER_ZIP=chromedriver_mac64.zip
+ ;;
+ *) echo "Defaulting to Linux 64" ;;
+esac
+
+
+# Temporar remove until we figure out proxy blocking issue
+# wget -O chromedriver.zip $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP
+# unzip chromedriver.zip -d /usr/local/bin
+
+if [ $CHROMEDRIVER_ZIP == 'chromedriver_linux64.zip' ]
+then
+ echo Skipping
+else
+ curl $CHROMEDRIVER_URL/$CHROMEDRIVER_ZIP -o chromedriver.zip
+ unzip chromedriver.zip
+fi