aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Kabaj <michal.kabaj@nokia.com>2019-03-27 14:33:14 +0100
committerMichal Kabaj <michal.kabaj@nokia.com>2019-04-08 09:16:33 +0200
commit1bc046c0b0001392260257a4fa18de9d7a146683 (patch)
tree1400f551f6ef58209c3fb919ca1ef1847393909e
parentd9bff4f29a1eec5984b7808b02b3185482d6d95f (diff)
Fix for PRH CSITs
Removed check of redundant fields. Change-Id: I8e4c6a4caa308bf45ddaf3fd6fd9b797d49e344f Signed-off-by: Michal Kabaj <michal.kabaj@nokia.com> Issue-ID: INT-972
-rw-r--r--tests/dcaegen2/prh-testcases/resources/PrhLibrary.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/dcaegen2/prh-testcases/resources/PrhLibrary.py b/tests/dcaegen2/prh-testcases/resources/PrhLibrary.py
index 0dd01dcb..597f8647 100644
--- a/tests/dcaegen2/prh-testcases/resources/PrhLibrary.py
+++ b/tests/dcaegen2/prh-testcases/resources/PrhLibrary.py
@@ -41,16 +41,10 @@ class PrhLibrary(object):
def create_pnf_ready_notification_as_pnf_ready(json_file):
json_to_python = json.loads(json_file)
correlation_id = PrhLibrary.extract_correlation_id_value(json_to_python, "correlationId")
- serial_number = PrhLibrary.extract_value_from_pnfRegistrationFields(json_to_python, "serial-number", "serialNumber")
- vendor_name = PrhLibrary.extract_value_from_pnfRegistrationFields(json_to_python, "equip-vendor", "vendorName")
- model_number = PrhLibrary.extract_value_from_pnfRegistrationFields(json_to_python, "equip-model", "modelNumber")
- unit_type = PrhLibrary.extract_value_from_pnfRegistrationFields(json_to_python, "equip-type", "unitType")
additional_fields = PrhLibrary.extract_additional_fields_value(json_to_python)
- nf_role = json_to_python.get("event").get("commonEventHeader").get("nfNamingCode") if "nfNamingCode" in json_to_python["event"]["commonEventHeader"] else ""
-
- str_json = '{' + correlation_id + serial_number + vendor_name + model_number + unit_type + '"nf-role":"' + nf_role + '","sw-version":"",' + additional_fields
+ str_json = '{' + correlation_id + additional_fields
return json.dumps(str_json.rstrip(',') + '}').replace("\\", "")[1:-1]