94da48e97683026410b302b35d1493e4fef1ca09
[nonrtric.git] / sample-services / ics-producer-consumer / start.sh
1 #  ========================LICENSE_START=================================
2 #  O-RAN-SC
3 #
4 #  Copyright (C) 2024: OpenInfra Foundation Europe
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 #!/bin/bash
19 source utils.sh
20
21 PREFIX="nexus3.o-ran-sc.org:10004"
22 VERSION="0.0.1"
23
24 # Create a network for Kafka Containers
25 docker network create kafka-net
26
27 # Start Kafka
28 docker run -d \
29   --network kafka-net \
30   --name kafka-zkless \
31   -p 9092:9092 \
32   -e LOG_DIR="/tmp/logs" \
33   -e KAFKA_LISTENER_SECURITY_PROTOCOL_MAP="CONTROLLER:PLAINTEXT,PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT" \
34   -e KAFKA_LISTENERS="PLAINTEXT://:29092,PLAINTEXT_HOST://:9092,CONTROLLER://:9093" \
35   -e KAFKA_ADVERTISED_LISTENERS="PLAINTEXT://kafka-zkless:29092,PLAINTEXT_HOST://kafka-zkless:9092" \
36   quay.io/strimzi/kafka:latest-kafka-2.8.1-amd64 \
37   /bin/sh -c 'export CLUSTER_ID=$(bin/kafka-storage.sh random-uuid) && \
38   bin/kafka-storage.sh format -t $CLUSTER_ID -c config/kraft/server.properties && \
39   bin/kafka-server-start.sh config/kraft/server.properties --override advertised.listeners=$KAFKA_ADVERTISED_LISTENERS --override listener.security.protocol.map=$KAFKA_LISTENER_SECURITY_PROTOCOL_MAP --override listeners=$KAFKA_LISTENERS'
40
41 # Start ICS
42 docker run -d \
43   --network kafka-net \
44   --name informationcoordinatorservice \
45   -p 8083:8083 \
46   -v ./application.yaml:/opt/app/information-coordinator-service/config/application.yaml \
47   nexus3.o-ran-sc.org:10001/o-ran-sc/nonrtric-plt-informationcoordinatorservice:1.6.0
48
49 # Start Producer
50 docker run -d \
51   --network kafka-net \
52   --name kafka-producer \
53   -p 8080:8080 \
54   -e KAFKA_SERVERS=kafka-zkless:9092 \
55   $PREFIX/o-ran-sc/nonrtric-sample-icsproducer:$VERSION
56
57 #Start Consumer
58 docker run -d \
59   --network kafka-net \
60   --name kafka-consumer \
61   -p 8081:8081 \
62   -e KAFKA_SERVERS=kafka-zkless:9092 \
63   $PREFIX/o-ran-sc/nonrtric-sample-icsconsumer:$VERSION
64
65 # Wait for the Kafka container to be running
66 wait_for_container "kafka-zkless" "Kafka Server started"
67 wait_for_container "kafka-producer" "Started Application"
68 wait_for_container "kafka-consumer" "Started Application"
69
70 # Once Kafka container is running, start the producers and consumers
71 echo "Kafka container is up and running. Starting producer and consumer..."
72 space
73
74 #Using the autostart flag in the application.yaml
75 echo "Start 1 Producer on mytopic"
76 #curl -X GET http://localhost:8080/startProducer/mytopic
77 space
78
79 echo "Start 1 Consumer on mytopic"
80 #curl -X GET http://localhost:8081/startConsumer/mytopic
81 space
82
83 sleep 10
84
85 echo "Sending type1 to ICS"
86 curl -X 'PUT' \
87   'http://localhost:8083/data-producer/v1/info-types/type1' \
88   -H 'accept: application/json' \
89   -H 'Content-Type: application/json' \
90   -d '{
91   "info_job_data_schema": {
92     "$schema":"http://json-schema.org/draft-07/schema#",
93     "title":"STD_Type1_1.0.0",
94     "description":"Type 1",
95     "type":"object"
96   }
97 }'
98
99 echo "Getting types from ICS"
100 curl -X 'GET' 'http://localhost:8083/data-producer/v1/info-types/type1'
101 space
102
103 echo "Sending Producer infos to ICS"
104 curl -X 'PUT' \
105   'http://localhost:8083/data-producer/v1/info-producers/1' \
106   -H 'accept: application/json' \
107   -H 'Content-Type: application/json' \
108   -d '{
109   "info_producer_supervision_callback_url": "http://kafka-producer:8080/producer/supervision",
110   "supported_info_types": [
111     "type1"
112   ],
113   "info_job_callback_url": "http://kafka-producer:8080/producer/job"
114 }'
115
116 echo "Getting Producers Infos from ICS"
117 curl -H 'Content-Type: application/json' 'http://localhost:8083/data-producer/v1/info-producers/1'
118 space
119
120 echo "Sending Consumer Job infos to ICS"
121 curl -X 'PUT' \
122   'http://localhost:8083/data-consumer/v1/info-jobs/1' \
123   -H 'accept: application/json' \
124   -H 'Content-Type: application/json' \
125   -d '{
126   "info_type_id": "type1",
127   "job_owner": "demo",
128   "job_definition": {
129     "deliveryInfo": {
130       "topic": "mytopic",
131       "bootStrapServers": "http://kafka-zkless:9092",
132       "numberOfMessages": 0
133     }
134   },
135   "job_result_uri": "http://kafka-producer:8080/producer/job",
136   "status_notification_uri": "http://kafka-producer:8080/producer/supervision"
137 }'
138
139 echo "Getting Consumer Job Infos from ICS"
140 curl -H 'Content-Type: application/json' 'http://localhost:8083/data-consumer/v1/info-jobs/1'
141 space
142
143 echo "Sending Consumer Subscription Job infos to ICS"
144 curl -X 'PUT' \
145   'http://localhost:8083/data-consumer/v1/info-type-subscription/1' \
146   -H 'accept: application/json' \
147   -H 'Content-Type: application/json' \
148   -d '{
149   "status_result_uri": "http://kafka-consumer:8081/info-type-status",
150   "owner": "owner"
151 }'
152 echo "Getting Consumer Subscription Job infos from ICS"
153 curl -X 'GET' 'http://localhost:8083/data-consumer/v1/info-type-subscription/1' -H 'accept: application/json'
154 space
155
156 sleep 5
157 echo "ICS Producer Docker logs "
158 docker logs informationcoordinatorservice | grep -E 'o.o.i.c.r1producer.ProducerCallbacks|o.o.i.repository.InfoTypeSubscriptions'
159 space
160 echo "Demo Producer Docker logs "
161 docker logs kafka-producer | grep c.d.p.p.SimpleProducer
162 space
163 echo "Demo Consumer Docker logs "
164 docker logs kafka-consumer | grep c.d.c.c.SimpleConsumer
165 space
166
167 echo "Done."
168
169 containers=("kafka-producer" "kafka-consumer")
170
171 for container in "${containers[@]}"; do
172   if docker logs "$container" | grep -q ERROR; then
173     echo "Errors found in logs of $container"
174     docker logs "$container" | grep ERROR
175     echo "FAIL"
176     exit 1
177   else
178     echo "No errors found in logs of $container"
179   fi
180 done
181 echo "SUCCESS"
182 exit 0