From 327b17ab250b4c17cf3f91f5e4cd9bffd89f3d1e Mon Sep 17 00:00:00 2001 From: Marcus G K Williams Date: Wed, 7 Mar 2018 18:17:22 -0800 Subject: Reduce log noise/warnings format to conventions Reduce build log warnings by formatting tests to ONAP code conventions (removing tabs etc.) Issue-ID: SO-368 Change-Id: I48c6d359b83617aebeb79db4e30c1d72d31f7eec Signed-off-by: Marcus G K Williams --- .../appc/ApplicationControllerClientTest.java | 98 +++++++++++----------- 1 file changed, 49 insertions(+), 49 deletions(-) (limited to 'bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/client/appc/ApplicationControllerClientTest.java') diff --git a/bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/client/appc/ApplicationControllerClientTest.java b/bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/client/appc/ApplicationControllerClientTest.java index 2b082f1b8d..071b5845c8 100644 --- a/bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/client/appc/ApplicationControllerClientTest.java +++ b/bpmn/MSOCommonBPMN/src/test/java/org/openecomp/mso/client/appc/ApplicationControllerClientTest.java @@ -38,61 +38,61 @@ import org.openecomp.appc.client.lcm.model.Status; public class ApplicationControllerClientTest { - private static ApplicationControllerClient client; - private static ApplicationControllerSupport support; + private static ApplicationControllerClient client; + private static ApplicationControllerSupport support; - @BeforeClass - public static void beforeClass() { - client = new ApplicationControllerClient(); - support = new ApplicationControllerSupport(); - client.appCSupport = support; - System.setProperty("mso.config.path", "src/test/resources"); + @BeforeClass + public static void beforeClass() { + client = new ApplicationControllerClient(); + support = new ApplicationControllerSupport(); + client.appCSupport = support; + System.setProperty("mso.config.path", "src/test/resources"); - } + } - @AfterClass - public static void afterClass() throws Exception { - client.shutdownclient(); - } + @AfterClass + public static void afterClass() throws Exception { + client.shutdownclient(); + } - @Test - @Ignore // IGNORED FOR 1710 MERGE TO ONAP - public void createRequest_CheckLock_RequestBuilt() throws Exception { + @Test + @Ignore // IGNORED FOR 1710 MERGE TO ONAP + public void createRequest_CheckLock_RequestBuilt() throws Exception { - org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", - "org.openecomp.appc.client.lcm.model"); - Flags flags = new Flags(); - ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); - actionIdentifiers.setVnfId("vnfId"); - CheckLockInput checkLockInput = (CheckLockInput) client.createRequest(Action.CheckLock, actionIdentifiers, - flags, null, "requestId"); - assertEquals(checkLockInput.getAction().name(), "CheckLock"); - } + org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", + "org.openecomp.appc.client.lcm.model"); + Flags flags = new Flags(); + ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); + actionIdentifiers.setVnfId("vnfId"); + CheckLockInput checkLockInput = (CheckLockInput) client.createRequest(Action.CheckLock, actionIdentifiers, + flags, null, "requestId"); + assertEquals(checkLockInput.getAction().name(), "CheckLock"); + } - @Test - @Ignore // IGNORED FOR 1710 MERGE TO ONAP - public void runCommand_liveAppc() throws Exception { - org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", - "org.openecomp.appc.client.lcm.model"); - Flags flags = new Flags(); - ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); - actionIdentifiers.setVnfId("ca522254-2ba4-4fbd-b15b-0ef0d9cfda5f"); + @Test + @Ignore // IGNORED FOR 1710 MERGE TO ONAP + public void runCommand_liveAppc() throws Exception { + org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", + "org.openecomp.appc.client.lcm.model"); + Flags flags = new Flags(); + ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); + actionIdentifiers.setVnfId("ca522254-2ba4-4fbd-b15b-0ef0d9cfda5f"); - // CheckLockInput checkLockInput = (CheckLockInput) - // client.createRequest(Action.CheckLock,actionIdentifiers,flags,null,"requestId"); - Status status = client.runCommand(Action.Lock, actionIdentifiers, flags, null, UUID.randomUUID().toString()); - assertEquals("Status of run command is correct", status.getCode(), 306); - } + // CheckLockInput checkLockInput = (CheckLockInput) + // client.createRequest(Action.CheckLock,actionIdentifiers,flags,null,"requestId"); + Status status = client.runCommand(Action.Lock, actionIdentifiers, flags, null, UUID.randomUUID().toString()); + assertEquals("Status of run command is correct", status.getCode(), 306); + } - @Test - @Ignore // IGNORED FOR 1710 MERGE TO ONAP - public void runCommand_CheckLock_RequestBuilt() throws Exception { - org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", - "org.openecomp.appc.client.lcm.model"); - Flags flags = new Flags(); - ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); - actionIdentifiers.setVnfId("fusion-vpp-vnf-001"); - Status status = client.runCommand(Action.CheckLock, actionIdentifiers, flags, null, "requestId"); - assertEquals("Status of run command is correct", status.getCode(), 400); - } + @Test + @Ignore // IGNORED FOR 1710 MERGE TO ONAP + public void runCommand_CheckLock_RequestBuilt() throws Exception { + org.springframework.test.util.ReflectionTestUtils.setField(support, "lcmModelPackage", + "org.openecomp.appc.client.lcm.model"); + Flags flags = new Flags(); + ActionIdentifiers actionIdentifiers = new ActionIdentifiers(); + actionIdentifiers.setVnfId("fusion-vpp-vnf-001"); + Status status = client.runCommand(Action.CheckLock, actionIdentifiers, flags, null, "requestId"); + assertEquals("Status of run command is correct", status.getCode(), 400); + } } -- cgit 1.2.3-korg