diff options
author | krishnaa96 <krishna.moorthy6@wipro.com> | 2020-08-26 14:59:04 +0530 |
---|---|---|
committer | krishnaa96 <krishna.moorthy6@wipro.com> | 2020-09-01 19:00:35 +0530 |
commit | 0690ef13433cb30d3d6c475990a818a714f0538d (patch) | |
tree | bb0ec20c49777f224057b2bb929b64aa79c6b456 /models-interactions/model-simulators/src/test | |
parent | b13f57c283bf7e90db88e159d0e3e8bd6ba6f698 (diff) |
Add Modify NSSI operation in SO actor
Issue-ID: POLICY-2586
Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com>
Change-Id: I6ac184a6e731767f06401a0ac984c6b448c5d82f
Diffstat (limited to 'models-interactions/model-simulators/src/test')
-rw-r--r-- | models-interactions/model-simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/models-interactions/model-simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java b/models-interactions/model-simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java index 6dac1b042..7654e0053 100644 --- a/models-interactions/model-simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java +++ b/models-interactions/model-simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java @@ -4,6 +4,7 @@ * ================================================================================ * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. * Modifications Copyright (C) 2019-2020 Nordix Foundation. + * Modifications Copyright (C) 2020 Wipro Limited. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +23,7 @@ package org.onap.policy.simulators; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; @@ -39,6 +41,7 @@ import org.onap.policy.so.SoModelInfo; import org.onap.policy.so.SoRelatedInstance; import org.onap.policy.so.SoRelatedInstanceListElement; import org.onap.policy.so.SoRequest; +import org.onap.policy.so.SoRequest3gpp; import org.onap.policy.so.SoRequestDetails; import org.onap.policy.so.SoRequestInfo; import org.onap.policy.so.SoRequestParameters; @@ -219,6 +222,32 @@ public class SoSimulatorTest { assertThat(httpDetails.getRight()).contains("\"COMPLETE\"").doesNotContain("requestSelfLink"); } + @Test + public void testModifyNssi() { + SoSimulatorJaxRs.setRequirePolling(false); + String request = Serialization.gsonPretty.toJson(this.createNssiRequest()); + Pair<Integer, String> httpDetails = new RestManager().put( + "http://localhost:6667/3gppservices/v7/modify", + "username", + "password", new HashMap<>(), "application/json", request); + assertNotNull(httpDetails); + assertEquals(200, httpDetails.getLeft().intValue()); + assertThat(httpDetails.getRight()).contains("jobId").contains("status"); + } + + private SoRequest3gpp createNssiRequest() { + SoRequest3gpp request = new SoRequest3gpp(); + + request.setName("URLLC_core1"); + request.setServiceInstanceId("ff67a209-dc69-4a1a-b89a-c1f55c2a8842"); + request.setGlobalSubscriberId("5G Customer"); + request.setSubscriptionServiceType("5G"); + request.setNetworkType("an"); + request.setAdditionalProperties(new HashMap<String, Object>()); + + return request; + } + private String extractUri(String response) { final String prefix = "\"requestId\": \""; |