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