changing restapi property values for xos user
Change-Id: I11003b308789d48e9a122bf16267c5869432f012
diff --git a/Jenkinsfile-ecord-local b/Jenkinsfile-ecord-local
index 28ab7cb..0066d8d 100644
--- a/Jenkinsfile-ecord-local
+++ b/Jenkinsfile-ecord-local
@@ -35,6 +35,10 @@
timeout(10) {
try {
runHeadNodeCmd("""
+ export SERVER_IP=localhost
+ export SERVER_PORT=9101
+ export XOS_USER=xosadmin@opencord.org
+ export XOS_PASSWD=\$(cat /opt/credentials/xosadmin@opencord.org)
rm -rf ~/diag-*
cd /opt/cord/build; make collect-diag
cd /opt/cord/test/cord-tester/src/test/diag/
@@ -51,6 +55,10 @@
timeout(10) {
try {
runHeadNodeCmd("""
+ export SERVER_IP=localhost
+ export SERVER_PORT=9101
+ export XOS_USER=xosadmin@opencord.org
+ export XOS_PASSWD=\$(cat /opt/credentials/xosadmin@opencord.org)
cd /opt/cord/test/cord-tester/src/test/robot/
rm -r Log/ || true
rm -r TestDoc/ || true
@@ -58,6 +66,10 @@
""")
if (deployment_config.fabric_switches != null) {
runHeadNodeCmd("""
+ export SERVER_IP=localhost
+ export SERVER_PORT=9101
+ export XOS_USER=xosadmin@opencord.org
+ export XOS_PASSWD=\$(cat /opt/credentials/xosadmin@opencord.org)
cd /opt/cord/test/cord-tester/src/test/robot/
pybot --exclude notready -v FABRIC:on -v PUBLIC_IFACE:${pod_config.external_iface} -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T SanityPhyPOD.robot
python -m robot.testdoc SanityPhyPOD.robot TestDoc/SanityPhyPOD.html
@@ -66,6 +78,10 @@
else {
// Exclude fabric related tests
runHeadNodeCmd("""
+ export SERVER_IP=localhost
+ export SERVER_PORT=9101
+ export XOS_USER=xosadmin@opencord.org
+ export XOS_PASSWD=\$(cat /opt/credentials/xosadmin@opencord.org)
cd /opt/cord/test/cord-tester/src/test/robot/
pybot --exclude notready --exclude fabric -v FABRIC:off -v PUBLIC_IFACE:${pod_config.external_iface} -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T SanityPhyPOD.robot
python -m robot.testdoc SanityPhyPOD.robot TestDoc/SanityPhyPOD.html
@@ -78,10 +94,10 @@
timeout(10) {
try {
runHeadNodeCmd("""
- cd /opt/cord/test/cord-tester/src/test/cord-api/Properties/
- sed -i s/^SERVER_IP\\ =\\ .*/SERVER_IP\\ =\\ \\'localhost\\'/ RestApiProperties.py
- sed -i s/^SERVER_PORT\\ =\\ .*/SERVER_PORT\\ =\\ \\'9101\\'/ RestApiProperties.py
- sed -i s/^PASSWD\\ =\\ .*/PASSWD\\ =\\ \\'\\\$(cat /opt/credentials/xosadmin@opencord.org)\\'/ RestApiProperties.py
+ export SERVER_IP=localhost
+ export SERVER_PORT=9101
+ export XOS_USER=xosadmin@opencord.org
+ export XOS_PASSWD=\$(cat /opt/credentials/xosadmin@opencord.org)
""")
} catch(error) { currentBuild.result = 'FAILURE' }
}