Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / test / java / org / onap / policy / so / SoRequestTest.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 import java.util.UUID;
29
30 import org.junit.Test;
31
32 public class SoRequestTest {
33
34     @Test
35     public void testConstructor() {
36         SoRequest obj = new SoRequest();
37
38         assertTrue(obj.getFinishTime() == null);
39         assertTrue(obj.getRequestDetails() == null);
40         assertTrue(obj.getRequestId() == null);
41         assertTrue(obj.getRequestScope() == null);
42         assertTrue(obj.getRequestStatus() == null);
43         assertTrue(obj.getRequestType() == null);
44         assertTrue(obj.getStartTime() == null);
45     }
46
47     @Test
48     public void testSetGet() {
49         SoRequest obj = new SoRequest();
50
51         LocalDateTime finishTime = LocalDateTime.now();
52         obj.setFinishTime(finishTime);
53         assertEquals(finishTime, obj.getFinishTime());
54
55         UUID uuid = UUID.randomUUID();
56         obj.setRequestId(uuid);
57         assertEquals(uuid, obj.getRequestId());
58
59         obj.setRequestScope("requestScope");
60         assertEquals("requestScope", obj.getRequestScope());
61
62         SoRequestStatus requestStatus = new SoRequestStatus();
63         obj.setRequestStatus(requestStatus);
64         assertEquals(requestStatus, obj.getRequestStatus());
65
66         obj.setRequestType("requestType");
67         assertEquals("requestType", obj.getRequestType());
68
69         obj.setOperationType(SoOperationType.DELETE_VF_MODULE);
70         assertEquals(SoOperationType.DELETE_VF_MODULE, obj.getOperationType());
71
72         LocalDateTime startTime = LocalDateTime.now();
73         obj.setStartTime(startTime.toString());
74         assertEquals(startTime.toString(), obj.getStartTime());
75     }
76 }