summaryrefslogtreecommitdiffstats
path: root/common/src/test/java/org/openecomp/mso/client/ruby/RubyCheckClientTest.java
blob: 053f1f2533fec810a0ceac877cbc2839b930fb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. 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.mso.client.ruby;

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.openecomp.mso.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/openecomp/mso/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)));
	}
	
}