Restore Apex tests
[it/dep.git] / smo-install / test / pythonsdk / unit-tests / test_sdnc.py
index 9a6c6d2..80e672e 100644 (file)
@@ -25,12 +25,10 @@ def test_get_status(mock_send_message):
 @mock.patch.object(OranSdnc, 'send_message_json')
 def test_get_odu_oru_status(mock_send_message_json):
     """Test Sdnc's class method."""
-    OranSdnc.get_odu_oru_status("o-du", "o-ru", BASIC_AUTH)
+    OranSdnc.get_odu_oru_status("o-du", "radio21", BASIC_AUTH)
     mock_send_message_json.assert_called_once_with('GET',
-                                                   'Get status of Odu Oru connectivity',
-                                                   (f"{BASE_URL}/rests/data/network-topology:network-topology/"\
-                                                   + "topology=topology-netconf/node=o-du/yang-ext:mount/"\
-                                                   + "o-ran-sc-du-hello-world:network-function/du-to-ru-connection=o-ru"),
+                                                   'Get status of Odu connectivity',
+                                                   (f"{BASE_URL}/rests/data/network-topology:network-topology/topology=topology-netconf/node=o-du/yang-ext:mount/o-ran-sc-du-hello-world:network-function/distributed-unit-functions=o-du/radio-resource-management-policy-ratio=radio21"),
                                                    basic_auth=BASIC_AUTH)
 @mock.patch.object(OranSdnc, 'send_message')
 def test_get_devices(mock_send_message):
@@ -42,6 +40,6 @@ def test_get_devices(mock_send_message):
 def test_get_events(mock_send_message):
     """Test Sdnc's class method."""
     OranSdnc.get_events(BASIC_AUTH, "device")
-    data = '{"input": {"filter": [ {"property": "node-id", "filtervalue": " device "}],"sortorder":[{"property": "timestamp","sortorder": "descending"}],"pagination": {"size": 10,"page": 1}}}'
+    data = '{"input": {"filter": [ {"property": "node-id", "filtervalue": "device"}],"sortorder":[{"property": "timestamp","sortorder": "descending"}],"pagination": {"size": 10,"page": 1}}}'
     mock_send_message.assert_called_with('POST', 'Get SDNC events',
                                          (f"{BASE_URL}/rests/operations/data-provider:read-faultlog-list"), data=data, headers=HEADER, basic_auth=BASIC_AUTH)