Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / test / java / org / onap / so / client / ruby / RubyCheckClientTest.java
index ba8772b..1ca8942 100644 (file)
@@ -24,83 +24,78 @@ import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.fail;
 import static org.mockito.Mockito.spy;
 import static org.mockito.Mockito.when;
-
 import java.io.IOException;
 import java.nio.file.Files;
 import java.nio.file.Paths;
 import java.text.ParseException;
 import java.time.format.DateTimeFormatter;
-
 import org.junit.Test;
 import org.onap.so.client.ruby.beans.Ruby;
-
 import static org.apache.commons.lang3.StringUtils.*;
 import com.fasterxml.jackson.databind.ObjectMapper;
 
 public class RubyCheckClientTest {
-       private final String fileLocation = "src/test/resources/org/onap/so/client/ruby/create-ticket/";
-       private static final String REQUEST_ID = "abc123";
-       private static final String SOURCE_NAME = "source-name";
-       private static final String TIME = "test-time";
-       private static final String REASON = "reason";
-       private static final String WORK_FLOW_ID = "work-flow-Id";
-       private static final String NOTIFICATION = "notification";
-       
+    private final String fileLocation = "src/test/resources/org/onap/so/client/ruby/create-ticket/";
+    private static final String REQUEST_ID = "abc123";
+    private static final String SOURCE_NAME = "source-name";
+    private static final String TIME = "test-time";
+    private static final String REASON = "reason";
+    private static final String WORK_FLOW_ID = "work-flow-Id";
+    private static final String NOTIFICATION = "notification";
+
+
+
+    @Test
+    public void verifyRubyCreateTicketRequest() throws IOException, ParseException {
+        String content = this.getJson("create-ticket-request.json");
+        ObjectMapper mapper = new ObjectMapper();
+        Ruby expected = mapper.readValue(content, Ruby.class);
+        RubyClient client = new RubyClient();
+        RubyClient spy = spy(client);
+        when(spy.getTime()).thenReturn(TIME);
+        String actual = spy.buildRequest(REQUEST_ID, SOURCE_NAME, REASON, WORK_FLOW_ID, NOTIFICATION);
+        assertEquals("payloads are equal", mapper.writeValueAsString(expected), actual);
+    }
+
+
+    @Test
+    public void verifyTimeFormat() {
+        RubyClient client = new RubyClient();
+        String time = client.getTime();
+        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE, dd MMM yyyy HH:mm:ss Z");
+        formatter.parse(time);
+    }
+
+
+    @Test
+    public void verifyReasonCharLimit() throws IOException {
+        final String reasonLong = repeat("*", 256);
+        RubyClient client = new RubyClient();
+        try {
+            client.buildRequest(REQUEST_ID, SOURCE_NAME, reasonLong, WORK_FLOW_ID, NOTIFICATION);
+            fail("Should have thrown IllegalArgumentException but did not!");
+        } catch (final IllegalArgumentException e) {
+            final String msg = "reason exceeds 255 characters";
+            assertEquals(msg, e.getMessage());
+        }
+    }
+
+    @Test
+    public void verifyNotificationCharLimit() throws IOException {
+        final String notificationLong = repeat("*", 1025);
+        RubyClient client = new RubyClient();
+        try {
+            client.buildRequest(REQUEST_ID, SOURCE_NAME, REASON, WORK_FLOW_ID, notificationLong);
+            fail("Should have thrown IllegalArgumentException but did not!");
+        } catch (final IllegalArgumentException e) {
+            final String msg = "notification exceeds 1024 characters";
+            assertEquals(msg, e.getMessage());
+        }
+    }
+
+    private String getJson(String filename) throws IOException {
+        return new String(Files.readAllBytes(Paths.get(fileLocation + filename)));
+    }
 
-       
-       @Test
-       public void verifyRubyCreateTicketRequest() throws IOException, ParseException{
-               String content = this.getJson("create-ticket-request.json");
-               ObjectMapper mapper = new ObjectMapper();
-               Ruby expected = mapper.readValue(content, Ruby.class);
-               RubyClient client = new RubyClient();
-               RubyClient spy = spy(client);
-               when(spy.getTime()).thenReturn(TIME);
-               String actual = spy.buildRequest(REQUEST_ID, SOURCE_NAME, REASON, WORK_FLOW_ID, NOTIFICATION);
-               assertEquals("payloads are equal", mapper.writeValueAsString(expected), actual);
-       }
-       
-       
-       @Test
-       public void verifyTimeFormat() {
-               RubyClient client = new RubyClient();
-               String time = client.getTime();
-               DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE, dd MMM yyyy HH:mm:ss Z");
-               formatter.parse(time);
-       }
-       
-       
-       @Test
-       public void verifyReasonCharLimit() throws IOException{
-               final String reasonLong = repeat("*", 256);
-               RubyClient client = new RubyClient();
-               try{
-                       client.buildRequest(REQUEST_ID, SOURCE_NAME, reasonLong, WORK_FLOW_ID, NOTIFICATION);
-                       fail("Should have thrown IllegalArgumentException but did not!");
-               }
-               catch(final IllegalArgumentException e){
-                       final String msg = "reason exceeds 255 characters";
-                       assertEquals(msg, e.getMessage());
-               }
-       }
-       
-       @Test
-       public void verifyNotificationCharLimit() throws IOException{
-               final String notificationLong = repeat("*", 1025);
-               RubyClient client = new RubyClient();
-               try{
-                       client.buildRequest(REQUEST_ID, SOURCE_NAME, REASON, WORK_FLOW_ID, notificationLong);
-                       fail("Should have thrown IllegalArgumentException but did not!");
-               }
-               catch(final IllegalArgumentException e){
-                       final String msg = "notification exceeds 1024 characters";
-                       assertEquals(msg, e.getMessage());
-               }
-       }
-       
-       private String getJson(String filename) throws IOException {
-               return new String(Files.readAllBytes(Paths.get(fileLocation + filename)));
-       }
-       
 }
-       
+