From 0af60de4fbb3a3e6c828e179c667b173b1539b62 Mon Sep 17 00:00:00 2001 From: JosephKeenan Date: Fri, 20 Aug 2021 10:33:54 +0100 Subject: CPS-505 Retrieving modules for new CM handle -Added some production code for getting missing modules for new CM handle -Groovy test template added by Toine for getting msissing modules -Added json example for test -Modified test to check map contents -Differentiated restTemplate calls based on URL -Fixed code review comment`s -Groovy test now passing -Modified behaviour for sending moduleReferences and added null to namespace (jira to follow) -Combined NetworkCmProxyDataServiceImpl tests into one class & addressed code review comments Issue-ID: CPS-505 Change-Id: I91ef65467496caea7834ba2e8af99cfe58d4f880 Signed-off-by: JosephKeenan --- cps-ncmp-service/src/test/resources/cmHandleModules.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cps-ncmp-service/src/test/resources/cmHandleModules.json (limited to 'cps-ncmp-service/src/test/resources/cmHandleModules.json') diff --git a/cps-ncmp-service/src/test/resources/cmHandleModules.json b/cps-ncmp-service/src/test/resources/cmHandleModules.json new file mode 100644 index 0000000000..d1665bee7d --- /dev/null +++ b/cps-ncmp-service/src/test/resources/cmHandleModules.json @@ -0,0 +1,12 @@ +{ "schemas": [ + { + "moduleName": "module1", + "revision": "1", + "namespace": "some namespace" + }, + { + "moduleName": "module2", + "revision": "1", + "namespace": "some namespace" + }] +} \ No newline at end of file -- cgit 1.2.3-korg