Revert "[Issue-Id:RICAPP-155]Code changes to support for JJB and Unit testing for...
[ric-app/ad.git] / tests / testad.py
1 # ==================================================================================
2 #       Copyright (c) 2020 HCL Technologies Limited.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #          http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 # ==================================================================================
16 from ricxappframe.xapp_frame import Xapp
17 #from ad import main
18
19 def test_init_adxapp(monkeypatch):
20
21     # start ad
22     #main.predict()
23
24     # rmr send 30003(TS_ANOMALY_UPDATE), should trigger registered callback
25     
26     val = '[{"UEID": 12419, "MeasTimestampRF": "2020-11-11 13:28:25.135743"}]'
27     self.rmr_send(val, 30003)
28
29     # rmr receive to get the acknowledgement message from the traffic steering.
30     for (summary, sbuf) in self.rmr_get_messages():
31         print("TS_ANOMALY_ACK: {}".format(summary))
32         self.rmr_free(sbuf)
33     
34