Add R5 content to master
[ric-plt/e2mgr.git] / Automation / Tests / Resource / resource.robot
1 ##############################################################################
2 #
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 ##############################################################################
18 #
19 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
20 #   platform project (RICP).
21 #
22
23 *** Settings ***
24 Documentation    Resource file
25
26
27 *** Variables ***
28 ${docker_number}    5
29 ${docker_number-1}    4
30 ${url}   http://localhost:3800
31 ${ranName}  gnb_208_092_303030
32 ${getNodeb}  /v1/nodeb/${ranName}
33 ${set_general_configuration}   /v1/nodeb/parameters
34 ${set_general_configuration_body}   {"enableRic":false}
35 ${update_gnb_url}   /v1/nodeb/${ranName}/update
36 ${update_gnb_body}  {"servedNrCells":[{"servedNrCellInformation":{"cellId":"abcd","choiceNrMode":{"fdd":{}},"nrMode":1,"nrPci":1,"servedPlmns":["whatever"]},"nrNeighbourInfos":[{"nrCgi":"one","choiceNrMode":{"fdd":{}},"nrMode":1,"nrPci":1}]}]}
37 ${update_gnb_body_notvalid}  {"servedNrCells":[{"servedNrCellInformation":{"choiceNrMode":{"fdd":{}},"nrMode":1,"nrPci":1,"servedPlmns":["whatever"]},"nrNeighbourInfos":[{"nrCgi":"whatever","choiceNrMode":{"fdd":{}},"nrMode":1,"nrPci":1}]}]}
38 ${E2tInstanceAddress}   10.0.2.15:38000
39 ${header}  {"Content-Type": "application/json"}
40 ${docker_command}  docker ps | grep Up | wc --lines
41 ${stop_simu}  docker stop gnbe2_oran_simu
42 ${run_simu_regular}  docker run -d --name gnbe2_oran_simu --net host --env gNBipv4=10.0.2.15 --env gNBport=5577 --env ricIpv4=10.0.2.15 --env ricPort=36422 --env nbue=0  snapshot.docker.ranco-dev-tools.eastus.cloudapp.azure.com:10001/gnbe2_oran_simu:3.2-32
43 ${docker_Remove}    docker rm gnbe2_oran_simu
44 ${docker_restart}   docker restart e2mgr
45 ${restart_simu}  docker restart gnbe2_oran_simu
46 ${start_e2}  docker start e2
47 ${stop_e2}      docker stop e2
48 ${dbass_start}   docker run -d --name dbass -p 6379:6379 --env DBAAS_SERVICE_HOST=10.0.2.15  snapshot.docker.ranco-dev-tools.eastus.cloudapp.azure.com:10001/dbass:1.0.0
49 ${dbass_remove}    docker rm dbass
50 ${dbass_stop}      docker stop dbass
51 ${restart_simu}  docker restart gnbe2_oran_simu
52 ${stop_docker_e2}      docker stop e2
53 ${stop_routingmanager_sim}  docker stop rm_sim
54 ${start_routingmanager_sim}  docker start rm_sim
55
56
57