aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src
diff options
context:
space:
mode:
authorReo Inoue <inoue.reo@jp.fujitsu.com>2020-04-10 09:32:45 +0900
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-04-16 07:55:18 +0000
commitecdbf0720d0e8085e53650a10eb594cbe74eb7ef (patch)
treeb0ea97f8ba651eb01b1b076802b18c29b09cd89a /catalog-be/src
parent550d742c66b6eb3813e4574a2583c9659bea0aa0 (diff)
Add some unit tests
This change adds unit tests for ComponentLogi to increase test coverage. Issue-ID: SDC-2885 Change-Id: I53e5da1a1022ef2a6e29119cc531b61dcc3020b1 Signed-off-by: Reo Inoue <inoue.reo@jp.fujitsu.com>
Diffstat (limited to 'catalog-be/src')
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ComponentLockerTest.java71
1 files changed, 71 insertions, 0 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ComponentLockerTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ComponentLockerTest.java
new file mode 100644
index 0000000000..d2c7c7a640
--- /dev/null
+++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/ComponentLockerTest.java
@@ -0,0 +1,71 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2020 Fujitsu Ltd. 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.openecomp.sdc.be.components.impl;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mock;
+import org.mockito.InjectMocks;
+import org.mockito.MockitoAnnotations;
+import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
+import org.openecomp.sdc.be.model.Component;
+import org.openecomp.sdc.be.model.operations.StorageException;
+import org.openecomp.sdc.be.model.operations.api.StorageOperationStatus;
+import org.openecomp.sdc.be.model.operations.impl.GraphLockOperation;
+import org.openecomp.sdc.be.model.Service;
+import static org.mockito.Mockito.when;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.times;
+
+public class ComponentLockerTest {
+
+ private static final String USER_ID = "userId";
+
+ @Mock
+ private GraphLockOperation graphLockOperation;
+
+ @InjectMocks
+ private ComponentLocker testInstance;
+
+ @Before
+ public void init() {
+ MockitoAnnotations.initMocks(this);
+ }
+
+ @Test
+ public void lock_Component() {
+ Component component= new Service();
+ component.setComponentType(ComponentTypeEnum.SERVICE);
+ component.setUniqueId(USER_ID);
+ when(graphLockOperation.lockComponent(USER_ID, component.getComponentType().getNodeType())).thenReturn(StorageOperationStatus.OK);
+ testInstance.lock(component);
+ verify(graphLockOperation, times(1)).lockComponent(USER_ID, component.getComponentType().getNodeType());
+ }
+
+ @Test(expected = StorageException.class)
+ public void lock_Component_Exception() {
+ Component component= new Service();
+ component.setComponentType(ComponentTypeEnum.SERVICE);
+ component.setUniqueId(USER_ID);
+ when(graphLockOperation.lockComponent(USER_ID, component.getComponentType().getNodeType())).thenReturn(StorageOperationStatus.INVALID_VALUE);
+ testInstance.lock(component);
+ }
+
+}