Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / test / java / org / onap / so / adapters / vnf / QueryTest.java
index 232f5b3..7e7c130 100644 (file)
@@ -25,11 +25,8 @@ import static org.hamcrest.Matchers.hasProperty;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 import static org.mockito.Mockito.when;
-
 import java.util.Map;
-
 import javax.xml.ws.Holder;
-
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.ExpectedException;
@@ -48,64 +45,66 @@ import org.onap.so.openstack.utils.MsoHeatUtils;
 
 @RunWith(MockitoJUnitRunner.class)
 public class QueryTest {
-       
-       @Mock
-       private MsoHeatUtils heat;
-       @InjectMocks
-       private MsoVnfAdapterImpl vnfAdapter = new MsoVnfAdapterImpl();
-       
-       @Rule
-       public ExpectedException thrown = ExpectedException.none();
-       @Test
-       public void testQueryCreatedVnf() throws VnfException, MsoException {
-               StackInfo info = new StackInfo("stackName", HeatStatus.CREATED);
-               when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(info);
-               String cloudId = "MT";
-               String cloudOwner = "CloudOwner";
-               String tenantId = "MSO_Test";
-               String vnfName = "VNF_TEST1";
-               Holder<Boolean> vnfExists = new Holder<>();
-               Holder<String> vnfId = new Holder<>();
-               Holder<VnfStatus> status = new Holder<>();
-               Holder<Map<String, String>> outputs = new Holder<>();
 
-               vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
+    @Mock
+    private MsoHeatUtils heat;
+    @InjectMocks
+    private MsoVnfAdapterImpl vnfAdapter = new MsoVnfAdapterImpl();
+
+    @Rule
+    public ExpectedException thrown = ExpectedException.none();
+
+    @Test
+    public void testQueryCreatedVnf() throws VnfException, MsoException {
+        StackInfo info = new StackInfo("stackName", HeatStatus.CREATED);
+        when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(info);
+        String cloudId = "MT";
+        String cloudOwner = "CloudOwner";
+        String tenantId = "MSO_Test";
+        String vnfName = "VNF_TEST1";
+        Holder<Boolean> vnfExists = new Holder<>();
+        Holder<String> vnfId = new Holder<>();
+        Holder<VnfStatus> status = new Holder<>();
+        Holder<Map<String, String>> outputs = new Holder<>();
+
+        vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
 
-               assertTrue(vnfExists.value);
-       }
+        assertTrue(vnfExists.value);
+    }
 
-       @Test
-       public void testQueryNotFoundVnf() throws VnfException, MsoException {
-               StackInfo info = new StackInfo("stackName", HeatStatus.NOTFOUND);
-               when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(info);
-               String cloudId = "MT";
-               String cloudOwner = "CloudOwner";
-               String tenantId = "MSO_Test";
-               String vnfName = "VNF_TEST1";
-               Holder<Boolean> vnfExists = new Holder<>();
-               Holder<String> vnfId = new Holder<>();
-               Holder<VnfStatus> status = new Holder<>();
-               Holder<Map<String, String>> outputs = new Holder<>();
+    @Test
+    public void testQueryNotFoundVnf() throws VnfException, MsoException {
+        StackInfo info = new StackInfo("stackName", HeatStatus.NOTFOUND);
+        when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(info);
+        String cloudId = "MT";
+        String cloudOwner = "CloudOwner";
+        String tenantId = "MSO_Test";
+        String vnfName = "VNF_TEST1";
+        Holder<Boolean> vnfExists = new Holder<>();
+        Holder<String> vnfId = new Holder<>();
+        Holder<VnfStatus> status = new Holder<>();
+        Holder<Map<String, String>> outputs = new Holder<>();
 
-               vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
+        vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
 
-               assertFalse(vnfExists.value);
-       }
+        assertFalse(vnfExists.value);
+    }
 
-       @Test()
-       // @Ignore // 1802 merge
-       public void testQueryVnfWithException() throws VnfException, MsoException {
-               String cloudId = "MT";
-               String cloudOwner = "CloudOwner";
-               String tenantId = "MSO_Test";
-               String vnfName = "VNF_TEST1";
-               Holder<Boolean> vnfExists = new Holder<>();
-               Holder<String> vnfId = new Holder<>();
-               Holder<VnfStatus> status = new Holder<>();
-               Holder<Map<String, String>> outputs = new Holder<>();
-               thrown.expect(VnfException.class);
-               thrown.expectCause(hasProperty("context", is("QueryVNF")));
-               when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenThrow(new MsoOpenstackException(1, "test messsage", "test detail"));
-               vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
-       }
+    @Test()
+    // @Ignore // 1802 merge
+    public void testQueryVnfWithException() throws VnfException, MsoException {
+        String cloudId = "MT";
+        String cloudOwner = "CloudOwner";
+        String tenantId = "MSO_Test";
+        String vnfName = "VNF_TEST1";
+        Holder<Boolean> vnfExists = new Holder<>();
+        Holder<String> vnfId = new Holder<>();
+        Holder<VnfStatus> status = new Holder<>();
+        Holder<Map<String, String>> outputs = new Holder<>();
+        thrown.expect(VnfException.class);
+        thrown.expectCause(hasProperty("context", is("QueryVNF")));
+        when(heat.queryStack(Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any()))
+                .thenThrow(new MsoOpenstackException(1, "test messsage", "test detail"));
+        vnfAdapter.queryVnf(cloudId, cloudOwner, tenantId, vnfName, null, vnfExists, vnfId, status, outputs);
+    }
 }