From e8c84108137d06ae3b7e4e1c1989d9ee9e33c980 Mon Sep 17 00:00:00 2001 From: "a.sreekumar" Date: Mon, 12 Oct 2020 17:22:32 +0100 Subject: Bug fixes and improvements in CDS Simulator 1) CDS Simulator was not able to run alone. It needed one of the RestServer simulators to start up to continue running. Providing the cds simulators parameters alone in the config file was resulting in termination of the Main process. This is fixed. 2) Response from the CDS Simuator when blueprint and action names are unknown (in real cases, when a corresponding CBA is not uploaded to CDS) is updated to mimic an actual CDS response instead of always returning a dummy success response. Change-Id: I79a6d158addaad31649809006d1e3c1dfdb47a1f Issue-ID: POLICY-2828 Signed-off-by: a.sreekumar --- .../simulators/cds/my_artifact-subscribe.json | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 models-interactions/model-actors/actor.cds/src/test/resources/org/onap/policy/simulators/cds/my_artifact-subscribe.json (limited to 'models-interactions/model-actors/actor.cds/src') diff --git a/models-interactions/model-actors/actor.cds/src/test/resources/org/onap/policy/simulators/cds/my_artifact-subscribe.json b/models-interactions/model-actors/actor.cds/src/test/resources/org/onap/policy/simulators/cds/my_artifact-subscribe.json new file mode 100644 index 000000000..307ee9316 --- /dev/null +++ b/models-interactions/model-actors/actor.cds/src/test/resources/org/onap/policy/simulators/cds/my_artifact-subscribe.json @@ -0,0 +1,27 @@ +{ + "commonHeader": { + "timestamp": "2020-03-20T14:00:25.217Z", + "requestId": "123456-1000", + "subRequestId": "sub-123456-1000", + "flag": { + }, + "originatorId": "sdnc" + }, + "actionIdentifiers": { + "blueprintName": "my_artifact", + "blueprintVersion": "1.0.0", + "actionName": "subscribe", + "mode": "sync" + }, + "status": { + "code": 200, + "message": "success", + "eventType": "EVENT_COMPONENT_EXECUTED", + "timestamp": "2020-07-02T14:56:25.608Z" + }, + "payload": { + "subscription-response": { + "status": "success" + } + } +} \ No newline at end of file -- cgit 1.2.3-korg