X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fusecases%2Foruclosedlooprecovery%2Fscriptversion%2Fsimulators%2Fsdnr_simulator.py;fp=test%2Fusecases%2Foruclosedlooprecovery%2Fscriptversion%2Fsimulators%2Fsdnr_simulator.py;h=a44c0734f67fd0b7ae8e6ddfae0c9d96086ae87c;hb=5b26de71a0aae08360a38477150551651a7ef734;hp=535c3ee073414fb4d47529cfae720e2d1a89df51;hpb=2a6b1317357b5387f98e846c3b0387384cbadf4b;p=nonrtric.git diff --git a/test/usecases/oruclosedlooprecovery/scriptversion/simulators/sdnr_simulator.py b/test/usecases/oruclosedlooprecovery/scriptversion/simulators/sdnr_simulator.py index 535c3ee0..a44c0734 100644 --- a/test/usecases/oruclosedlooprecovery/scriptversion/simulators/sdnr_simulator.py +++ b/test/usecases/oruclosedlooprecovery/scriptversion/simulators/sdnr_simulator.py @@ -39,7 +39,7 @@ MR_PATH = "/events/unauthenticated.SEC_FAULT_OUTPUT" # Server info HOST_IP = "::" HOST_PORT = 9990 -APP_URL = "/rests/data/network-topology:network-topology/topology=topology-netconf/node=/yang-ext:mount/o-ran-sc-du-hello-world:network-function/du-to-ru-connection=" +APP_URL = "/rests/data/network-topology:network-topology/topology=topology-netconf/node=/yang-ext:mount/o-ran-sc-du-hello-world:network-function/distributed-unit-functions=/radio-resource-management-policy-ratio=rrm-pol-1" USERNAME = "admin" PASSWORD = "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" @@ -88,17 +88,17 @@ linkFailureMessage = { class AlarmClearThread (threading.Thread): - def __init__(self, sleep_time, o_ru_id): + def __init__(self, sleep_time, o_du_id): threading.Thread.__init__(self) self.sleep_time = sleep_time - self.o_ru_id = o_ru_id + self.o_du_id = o_du_id def run(self): - print(f'Sleeping: {self.sleep_time} before clearing O-DU: {self.o_ru_id}') + print(f'Sleeping: {self.sleep_time} before clearing O-DU: {self.o_du_id}') time.sleep(self.sleep_time) msg_as_json = json.loads(json.dumps(linkFailureMessage)) - msg_as_json["event"]["commonEventHeader"]["sourceName"] = self.o_ru_id - print("Sedning alarm clear for O-RU: " + self.o_ru_id) + msg_as_json["event"]["commonEventHeader"]["sourceName"] = self.o_du_id + print("Sedning alarm clear for O-DU: " + self.o_du_id) requests.post(mr_host + ":" + mr_port + MR_PATH, json=msg_as_json); @@ -118,10 +118,10 @@ def verify_password(username, password): @app.route(APP_URL, methods=['PUT']) @auth.login_required -def sendrequest(o_du_id, o_ru_id): - print("Got request with O-DU ID: " + o_du_id + " and O-RU ID: " + o_ru_id) +def sendrequest(o_du_id, o_du_id2): + print("Got request with O-DU ID: " + o_du_id) random_time = int(10 * random.random()) - alarm_clear_thread = AlarmClearThread(random_time, o_ru_id) + alarm_clear_thread = AlarmClearThread(random_time, o_du_id) alarm_clear_thread.start() return Response(status=200)