blob: 0bbd13505147bacac7baef3c343bec24f5ed7e19 [file] [log] [blame]
ecaiyanlinux845bc002020-08-12 12:57:09 +02001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2020 Nordix Foundation. All rights reserved.
5# ========================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=================================================
18#
19
20# The scripts in data/ will generate some dummy data in the running system.
21# It will create:
22# one policy type in a1-sim-OSC
23# one service in policy agent
24# one policy in a1-sim-OSC
25# one policy in a1-sim-STD
26
27# Run command:
28# ./dmaap-msg.sh [dmaap-mr port] [a1-sim-OSC port] [a1-sim-STD port] [http/https]
29
30dmaa_mr_port=${1:-3904}
31a1_sim_OSC_port=${2:-30001}
32a1_sim_STD_port=${3:-30003}
33httpx=${4:-"http"}
34
35echo "using dmaap-mr port: "$dmaa_mr_port
36echo "using a1-sim-OSC port: "$a1_sim_OSC_port
37echo "using a1-sim-STD port: "$a1_sim_STD_port
38echo "using protocol: "$httpx
39echo -e "\n"
40
41echo "dmaap-mr topics:"
42curl -skw " %{http_code}" $httpx://localhost:$dmaa_mr_port/topics/listAll
43echo -e "\n"
44
45echo "dmaap-mr create topic A1-POLICY-AGENT-READ:"
46curl -skw " %{http_code}" -X POST "$httpx://localhost:$dmaa_mr_port/topics/create" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"topicName\": \"A1-POLICY-AGENT-READ\", \"topicDescription\": \"test topic\", \"partitionCount\": 1, \"replicationCount\": 1, \"transactionEnabled\": \"false\"}"
47echo -e "\n"
48
49echo "dmaap-mr create topic A1-POLICY-AGENT-WRITE:"
50curl -skw " %{http_code}" -X POST "$httpx://localhost:$dmaa_mr_port/topics/create" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"topicName\": \"A1-POLICY-AGENT-WRITE\", \"topicDescription\": \"test topic\", \"partitionCount\": 1, \"replicationCount\": 1, \"transactionEnabled\": \"false\"}"
51echo -e "\n"
52
53echo "dmaap-mr topics:"
54curl -skw " %{http_code}" $httpx://localhost:$dmaa_mr_port/topics/listAll
55echo -e "\n"
56
57echo "ric1 version:"
58curl -skw " %{http_code}" $httpx://localhost:$a1_sim_OSC_port/counter/interface
59echo -e "\n"
60
61echo "ric2 version:"
62curl -skw " %{http_code}" $httpx://localhost:$a1_sim_STD_port/counter/interface
63echo -e "\n"
64
65echo "create policy type 1 to ric1:"
66curl -X PUT -skw " %{http_code}" $httpx://localhost:$a1_sim_OSC_port/policytype?id=1 -H Content-Type:application/json --data-binary @testdata/OSC/policy_type.json
67echo -e "\n"
68
69for i in {1..12}; do
70 echo "policy types from policy agent:"
71 curlString="curl -skw %{http_code} $httpx://localhost:8081/policy_types"
72 res=$($curlString)
73 echo "$res"
74 expect="[\"\",\"1\"]200"
75 if [ "$res" == "$expect" ]; then
76 echo -e "\n"
77 break;
78 else
79 sleep $i
80 fi
81done
82
83echo "create service 1 to policy agent via dmaap_mr:"
84curl -k -X POST -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$dmaa_mr_port/events/A1-POLICY-AGENT-READ/" --data-binary @testdata/dmaap-msg-service-create.json
85echo -e "\n"
86
87echo "create policies to ric1 & ric2 with type1 and service1 via dmaa_mr:"
88curl -k -X POST -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$dmaa_mr_port/events/A1-POLICY-AGENT-READ/" --data-binary @testdata/dmaap-msg-policy-create.json
89echo -e "\n"
90
91echo "policy numbers from ric1:"
92curl -skw " %{http_code}" $httpx://localhost:$a1_sim_OSC_port/counter/num_instances
93echo -e "\n"
94
95echo "policy numbers from ric2:"
96curl -skw " %{http_code}" $httpx://localhost:$a1_sim_STD_port/counter/num_instances
97echo -e "\n"
98
99echo "get policy from policy agent via dmaap_mr:"
100curl -k -X POST -sw " %{http_code}" -H accept:application/json -H Content-Type:application/json "$httpx://localhost:$dmaa_mr_port/events/A1-POLICY-AGENT-READ/" --data-binary @testdata/dmaap-msg-policy-get.json
101echo -e "\n"