From 0700486a08b2bc08589f7e6b0be8338d6bbb4efa Mon Sep 17 00:00:00 2001 From: rameshiyer27 Date: Mon, 23 Jan 2023 11:50:01 +0000 Subject: Add robot framework helm chart for CSIT Steps to run policy csit in kubernetes is updated in the README.md Issue-ID: POLICY-4532 Signed-off-by: zrrmmua Change-Id: I116658dfafd4e70bd256173f046da72af6803eaa --- helm/run-test.sh | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 helm/run-test.sh (limited to 'helm/run-test.sh') diff --git a/helm/run-test.sh b/helm/run-test.sh new file mode 100755 index 00000000..7cd2c924 --- /dev/null +++ b/helm/run-test.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# +# ============LICENSE_START==================================================== +# Copyright (C) 2023 Nordix Foundation. +# ============================================================================= +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# ============LICENSE_END====================================================== + + +ROBOT_FILE=$1 +echo "Invoking the robot tests from: $1" + +export DATA=/opt/robotworkspace/models/models-examples/src/main/resources/policies +export NODETEMPLATES=/opt/robotworkspace/models/models-examples/src/main/resources/nodetemplates +export POLICY_RUNTIME_ACM_IP=policy-clamp-runtime-acm +export POLICY_API_IP=policy-api +export POLICY_PAP_IP=policy-pap +export POLICY_APEX_PDP_IP=policy-apex-pdp + + +export ROBOT_VARIABLES= +ROBOT_VARIABLES="-v DATA:$DATA -v NODETEMPLATES:$NODETEMPLATES -v POLICY_RUNTIME_ACM_IP:$POLICY_RUNTIME_ACM_IP -v POLICY_API_IP:$POLICY_API_IP +-v POLICY_PAP_IP:$POLICY_PAP_IP -v POLICY_APEX_PDP_IP:$POLICY_APEX_PDP_IP" + +echo "Run Robot test" +echo ROBOT_VARIABLES="${ROBOT_VARIABLES}" +echo "Starting Robot test suites ..." +python3 -m robot.run $ROBOT_VARIABLES $1 +RESULT=$? +echo "RESULT: ${RESULT}" -- cgit 1.2.3-korg