Improve test coverage in DcaeEvent 25/87525/3
authorm.kowalski3 <m.kowalski3@partner.samsung.com>
Mon, 13 May 2019 07:07:41 +0000 (09:07 +0200)
committerm.kowalski3 <m.kowalski3@partner.samsung.com>
Wed, 5 Jun 2019 06:58:48 +0000 (08:58 +0200)
Change-Id: Iead99d97d7ad2a803ef67cdf8a7eebaca76c60bd
Issue-ID: CLAMP-355
Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com>
src/test/java/org/onap/clamp/clds/model/DcaeEventTest.java [new file with mode: 0644]
src/test/java/org/onap/clamp/loop/CsarInstallerItCase.java

diff --git a/src/test/java/org/onap/clamp/clds/model/DcaeEventTest.java b/src/test/java/org/onap/clamp/clds/model/DcaeEventTest.java
new file mode 100644 (file)
index 0000000..315e656
--- /dev/null
@@ -0,0 +1,74 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP CLAMP
+ * ================================================================================
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ *
+ */
+
+package org.onap.clamp.clds.model;
+
+import static org.junit.Assert.assertEquals;
+import org.junit.Test;
+import javax.ws.rs.BadRequestException;
+import java.util.Arrays;
+
+public class DcaeEventTest {
+
+    @Test
+    public void testGetCldsActionId() {
+        //given
+        DcaeEvent dcaeEvent = new DcaeEvent();
+        dcaeEvent.setEvent(DcaeEvent.EVENT_CREATED);
+        dcaeEvent.setResourceUUID("1");
+        dcaeEvent.setServiceUUID("2");
+
+        //when
+        String cldsAction = dcaeEvent.getCldsActionCd();
+        dcaeEvent.setInstances(Arrays.asList(new CldsModelInstance()));
+        //then
+        assertEquals(CldsEvent.ACTION_CREATE, cldsAction);
+
+        //when
+        dcaeEvent.setEvent(DcaeEvent.EVENT_DEPLOYMENT);
+        //then
+        assertEquals(CldsEvent.ACTION_DEPLOY, dcaeEvent.getCldsActionCd());
+
+        //when
+        dcaeEvent.setInstances(null);
+        //then
+        assertEquals(CldsEvent.ACTION_DEPLOY, dcaeEvent.getCldsActionCd());
+
+        //when
+        dcaeEvent.setEvent(DcaeEvent.EVENT_UNDEPLOYMENT);
+        //then
+        assertEquals(CldsEvent.ACTION_UNDEPLOY, dcaeEvent.getCldsActionCd());
+
+    }
+
+    @Test(expected = BadRequestException.class)
+    public void shouldReturnBadRequestException() {
+        //given
+        DcaeEvent dcaeEvent = new DcaeEvent();
+        dcaeEvent.setResourceUUID("1");
+        dcaeEvent.setServiceUUID("2");
+        //when
+        dcaeEvent.setEvent("BadEvent");
+        //then
+        dcaeEvent.getCldsActionCd();
+    }
+}
index ed91283..d451b06 100644 (file)
@@ -27,7 +27,6 @@
 package org.onap.clamp.loop;
 
 import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.Matchers.any;
 
 import java.io.IOException;
 import java.util.ArrayList;
@@ -65,6 +64,7 @@ import org.skyscreamer.jsonassert.JSONAssert;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Qualifier;
 import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.annotation.Rollback;
 import org.springframework.test.context.ActiveProfiles;
 import org.springframework.test.context.junit4.SpringRunner;