diff options
author | PatrikBuhr <patrik.buhr@est.tech> | 2021-03-26 12:19:42 +0100 |
---|---|---|
committer | PatrikBuhr <patrik.buhr@est.tech> | 2021-03-26 12:21:13 +0100 |
commit | ac6773591fcfc1e0d5f23038b3c37e9612ca9a9e (patch) | |
tree | d091811b4d31502b0c29376c3f85d6ca388d6b51 /a1-policy-management/src/test | |
parent | 7a052f6652ffc9965f3c0d2cdc8b7385d1029f3f (diff) |
Ingnoring RIC faulty configuration entries
Ignoring RIC figuration entries where the baseUrl is empty.
Change-Id: I50e63c964375d009a927290ab1ba0895a7f8888c
Issue-ID: CCSDK-3227
Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
Diffstat (limited to 'a1-policy-management/src/test')
2 files changed, 11 insertions, 1 deletions
diff --git a/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParserTest.java b/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParserTest.java index 0a75fd30..5e218582 100644 --- a/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParserTest.java +++ b/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/configuration/ApplicationConfigParserTest.java @@ -69,6 +69,8 @@ class ApplicationConfigParserTest { .password("password") // .build(); // assertEquals(expectedControllerConfig, controllers.get("controller1"), "controller contents"); + + assertEquals(2, result.ricConfigs().size()); } private JsonObject getJsonRootObject() throws JsonIOException, JsonSyntaxException, IOException { diff --git a/a1-policy-management/src/test/resources/test_application_configuration_with_dmaap_config.json b/a1-policy-management/src/test/resources/test_application_configuration_with_dmaap_config.json index 61ab31e8..ed1501dd 100644 --- a/a1-policy-management/src/test/resources/test_application_configuration_with_dmaap_config.json +++ b/a1-policy-management/src/test/resources/test_application_configuration_with_dmaap_config.json @@ -25,6 +25,14 @@ "kista_3", "kista_4" ] + }, + { + "name": "ric3_noBaseURL", + "baseUrl": "", + "managedElementIds": [ + "kista_3", + "kista_4" + ] } ], "streams_publishes": { @@ -44,4 +52,4 @@ } } } -}
\ No newline at end of file +} |