Unit tests for LicenseManagerImpl 93/55193/2
authorJoanna Jeremicz <joanna.jeremicz@nokia.com>
Thu, 21 Jun 2018 12:13:06 +0000 (14:13 +0200)
committerTakamune Cho <tc012c@att.com>
Thu, 21 Jun 2018 15:25:49 +0000 (15:25 +0000)
Add assertj test dependency for assertions.

Change-Id: I7980a273eb0b24480d376cdb6acdd18ca1814702
Issue-ID: APPC-1024
Signed-off-by: Joanna Jeremicz <joanna.jeremicz@nokia.com>
appc-dispatcher/appc-license-manager/appc-license-manager-core/pom.xml
appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/LicenseManagerImplTest.java [deleted file]
appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/impl/LicenseManagerImplTest.java [new file with mode: 0644]

index bc90e26..09b699f 100644 (file)
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.assertj</groupId>
+            <artifactId>assertj-core</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.onap.ccsdk.sli.core</groupId>
             <artifactId>sli-provider</artifactId>
diff --git a/appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/LicenseManagerImplTest.java b/appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/LicenseManagerImplTest.java
deleted file mode 100644 (file)
index 0ed41f1..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP : APPC
- * ================================================================================
- * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * Copyright (C) 2017 Amdocs
- * =============================================================================
- * 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.appc.licmgr;
diff --git a/appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/impl/LicenseManagerImplTest.java b/appc-dispatcher/appc-license-manager/appc-license-manager-core/src/test/java/org/onap/appc/licmgr/impl/LicenseManagerImplTest.java
new file mode 100644 (file)
index 0000000..6fd9cb1
--- /dev/null
@@ -0,0 +1,60 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 Nokia.
+ * ================================================================================
+ * 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.appc.licmgr.impl;
+
+
+import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
+import static org.mockito.BDDMockito.given;
+
+import java.util.Collections;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mock;
+import org.mockito.runners.MockitoJUnitRunner;
+import org.onap.appc.licmgr.LicenseDataAccessService;
+import org.onap.appc.licmgr.exception.DataAccessException;
+
+@RunWith(MockitoJUnitRunner.class)
+public class LicenseManagerImplTest {
+
+    @Mock
+    private LicenseDataAccessService licenseDataAccessService;
+
+    @Test
+    public void retrieveLicenseModel_shouldThrowException_whenRetrieveLicenseModelDataIsEmpty() {
+
+        // GIVEN
+        String vnfType = "dummy1";
+        String vnfVersion = "dummy2";
+        String expectedMessage = String
+            .format("License model not found for vnfType='%s' and vnfVersion='%s'", vnfType, vnfVersion);
+        given(licenseDataAccessService.retrieveLicenseModelData(vnfType, vnfVersion)).willReturn(Collections.emptyMap());
+
+        // WHEN THEN
+        LicenseManagerImpl licenseManager = new LicenseManagerImpl();
+        licenseManager.setDAService(licenseDataAccessService);
+
+        assertThatExceptionOfType(DataAccessException.class)
+            .isThrownBy(() -> licenseManager.retrieveLicenseModel(vnfType, vnfVersion))
+            .withMessage(expectedMessage);
+    }
+}
\ No newline at end of file