Add .readthedocs.yaml
[ric-app/ad.git] / tests / test_ad.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 ad import main
17 from ricxappframe.xapp_frame import Xapp
18 from contextlib import suppress
19 import os
20 from ad.ad_train import train
21 import json
22
23
24 def test_RFtrainmodel(monkeypatch):
25     if not os.path.isfile('ad/RF'):
26         train()
27
28
29 def test_predict_anomaly(monkeypatch):
30     main.predict_anomaly('test')
31
32
33 def test_msg_to_ts(monkeypatch, ad_to_ts):
34
35     def mock_ad_entry(self):
36         val = json.dumps(ad_to_ts).encode()
37         self.rmr_send(val, 30003)
38     global mock_ad_xapp
39     mock_ad_xapp = Xapp(entrypoint=mock_ad_entry, rmr_port=4564, use_fake_sdl=True)
40     mock_ad_xapp.run()  # this will return since mock_ad_entry isn't a loop  # this will return since mock_ad_entry isn't a loop
41
42
43 def teardown_module():
44     """
45     this is like a "finally"; the name of this function is pytest magic
46     safer to put down here since certain failures above can lead to pytest never returning
47     for example if an exception gets raised before stop is called in any test function above,
48     pytest will hang forever
49     """
50     with suppress(Exception):
51         mock_ad_xapp.stop()