Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / test / java / org / onap / policy / so / SoAsyncRequestStatusTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * 
6  * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.so;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import java.time.LocalDateTime;
28
29 import org.junit.Test;
30
31 public class SoAsyncRequestStatusTest {
32
33     @Test
34     public void testConstructor() {
35         SoAsyncRequestStatus obj = new SoAsyncRequestStatus();
36
37         assertTrue(obj.getCorrelator() == null);
38         assertTrue(obj.getFinishTime() == null);
39         assertTrue(obj.getInstanceReferences() == null);
40         assertTrue(obj.getRequestId() == null);
41         assertTrue(obj.getRequestScope() == null);
42         assertTrue(obj.getRequestStatus() == null);
43         assertTrue(obj.getStartTime() == null);
44     }
45
46     @Test
47     public void testSetGet() {
48         SoAsyncRequestStatus obj = new SoAsyncRequestStatus();
49
50         obj.setCorrelator("correlator");
51         assertEquals("correlator", obj.getCorrelator());
52
53         LocalDateTime finishTime = LocalDateTime.now();
54         obj.setFinishTime(finishTime);
55         assertEquals(finishTime, obj.getFinishTime());
56
57         SoInstanceReferences instanceReferences = new SoInstanceReferences();
58         obj.setInstanceReferences(instanceReferences);
59         assertEquals(instanceReferences, obj.getInstanceReferences());
60
61         obj.setRequestId("requestId");
62         assertEquals("requestId", obj.getRequestId());
63
64         obj.setRequestScope("requestScope");
65         assertEquals("requestScope", obj.getRequestScope());
66
67         SoRequestStatus requestStatus = new SoRequestStatus();
68         obj.setRequestStatus(requestStatus);
69         assertEquals(requestStatus, obj.getRequestStatus());
70
71         obj.setRequestType("requestType");
72         assertEquals("requestType", obj.getRequestType());
73
74         LocalDateTime startTime = LocalDateTime.now();
75         obj.setStartTime(startTime);
76         assertEquals(startTime, obj.getStartTime());
77
78     }
79 }