summaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2018-03-04 14:53:33 +0200
committerMichael Lando <ml636r@att.com>2018-03-07 13:19:05 +0000
commita5445100050e49e83f73424198d73cd72d672a4d (patch)
treecacf4df817df31be23e4e790d1dda857bdae061e /asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh
parent51157f92c21976cba4914c378aaa3cba49826931 (diff)
Sync Integ to Master
Change-Id: I71e3acc26fa612127756ac04073a522b9cc6cd74 Issue-ID: SDC-977 Signed-off-by: Gitelman, Tal (tg851x) <tg851x@intl.att.com>
Diffstat (limited to 'asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh')
-rw-r--r--asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh85
1 files changed, 0 insertions, 85 deletions
diff --git a/asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh b/asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh
deleted file mode 100644
index 9e568dddc3..0000000000
--- a/asdc-tests/src/test/resources/CI/importResource-MMSC/importNormative.sh
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/bash
-
-function usage {
- echo "Usage: $0 <hostIp> <hostPort> <userId>"
-}
-
-function addResource() {
-
- ELEMENT_NAME=$1
- echo -e "###################### Adding Element ${ELEMENT_NAME} Start ######################"
- CURRENT_ZIP_FILE=./${ELEMENT_NAME}/${ELEMENT_NAME}.zip
- CURRENT_JSON_FILE=./${ELEMENT_NAME}/${ELEMENT_NAME}.json
- sed -i 's/"userId": ".*",/"userId": "'${ATT_UID}'",/' ${CURRENT_JSON_FILE}
- JSON_CONTENT=`paste -s ${CURRENT_JSON_FILE}`
- http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F resourceMetadata="${JSON_CONTENT}" -F resourceZip=@${CURRENT_ZIP_FILE} -H USER_ID:${ATT_UID} ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/upload/multipart)
- if [ ${http_code} -eq 201 ]; then
- echo -e "\n###################### Adding Element ${ELEMENT_NAME} End ########################\n\n\n"
- elif [ ${http_code} -eq 409 ]; then
- echo -e "\n###################### Already exists Element ${ELEMENT_NAME} status code:${http_code} End ########################\n\n\n"
- elif [ ${http_code} -eq 500 ]; then
- echo -e "\n###################### Failed to add Element ${ELEMENT_NAME} status code:${http_code} End ########################\n\n\n"
- exit 1
- fi
-}
-if [ $# -lt 3 ]
-then
- usage
- exit 2
-fi
-
-HOST_IP=$1
-HOST_PORT=$2
-ATT_UID=$3
-NO_CAPS=$4
-
-if [ "$NO_CAPS" = "nocaps" ]; then
- echo "Skipping Caps import..."
-else
- #Add The CapabilityTypes
- http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F capabilityTypeZip=@capabilityTypes.zip -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/uploadType/capability)
- if [ ${http_code} -eq 201 ]; then
- echo -e "\n###################### Adding The CapabilityTypes status code:${http_code} End ########################\n\n\n"
- elif [ ${http_code} -eq 500 ]; then
- echo -e "\n###################### Failed to add CapabilityTypes status code:${http_code} End ########################\n\n\n"
- exit 1
- else
- echo -e "\n###################### Failed to add CapabilityTypes status code:${http_code} End ########################\n\n\n"
- exit 1
- fi
- #Add The InterfaceLifecycleTypes
- #http_code=$(curl -s -o /dev/null -w "%{http_code}" -v -F interfaceLifecycleTypeZip=@interfaceLifecycleTypes.zip -H "USER_ID: jh0003" ${HOST_IP}:${HOST_PORT}/sdc2/rest/v1/catalog/uploadType/interfaceLifecycle)
- #if [ ${http_code} -eq 201 ]; then
- # echo -e "\n###################### Adding The InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
- #elif [ ${http_code} -eq 409 ]; then
- # echo -e "\n###################### Already exists InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
- #elif [ ${http_code} -eq 500 ]; then
- # echo -e "\n###################### Failed to add InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
- # exit 1
- #else
- # echo -e "\n###################### Failed to add InterfaceLifecycleTypes status code:${http_code} End ########################\n\n\n"
- # exit 1
- #fi
-fi
-
-addResource "asdc.nodes.Root"
-addResource "asdc.nodes.Network"
-addResource "asdc.nodes.network.Cinder"
-addResource "asdc.nodes.network.Core"
-addResource "asdc.nodes.network.DMZ"
-addResource "asdc.nodes.network.OAM"
-addResource "asdc.nodes.network.Traffic"
-addResource "asdc.nodes.network.Internal"
-addResource "asdc.nodes.Module"
-addResource "asdc.nodes.module.ECA_OAM"
-addResource "asdc.nodes.module.ECA_TRX"
-addResource "asdc.nodes.module.F5_LTM"
-addResource "asdc.nodes.module.MMSC"
-addResource "asdc.nodes.module.NEMS_BE"
-addResource "asdc.nodes.module.NEMS_FE"
-
-
-
-
-
-exit 0