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