4dba635113a751ea9ded42b76f78ba46a3475def
[policy/models.git] / models-interactions / model-impl / so / src / test / java / org / onap / policy / so / SoRequestTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
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 import java.util.UUID;
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 }