Merge "Convert models to JUnit 5"
[policy/models.git] / models-interactions / model-impl / events / src / test / java / org / onap / policy / controlloop / AbatedTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2024 Nordix Foundation
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.controlloop;
23
24 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
25 import static org.junit.jupiter.api.Assertions.assertEquals;
26 import static org.junit.jupiter.api.Assertions.assertNotEquals;
27
28 import java.time.Instant;
29 import org.junit.jupiter.api.Test;
30
31 class AbatedTest {
32
33     @Test
34     void testConstructors() {
35         VirtualControlLoopEvent event = new VirtualControlLoopEvent();
36         event.setClosedLoopEventStatus(ControlLoopEventStatus.ABATED);
37         event.setClosedLoopAlarmStart(Instant.now());
38         event.setClosedLoopAlarmEnd(Instant.now());
39
40         Abated abated = new Abated(event);
41         assertEquals(abated, event);
42         assertEquals(event.getClosedLoopAlarmStart(), abated.getClosedLoopAlarmStart());
43         assertEquals(ControlLoopEventStatus.ABATED, abated.getClosedLoopEventStatus());
44
45         abated.setClosedLoopAlarmEnd(Instant.ofEpochSecond(Instant.now().getEpochSecond() + 1));
46         assertNotEquals(abated, event);
47
48         assertEquals(new Abated(abated), abated);
49     }
50
51     @Test
52     void testSetClosedLoopEventStatus() {
53         assertThatIllegalArgumentException()
54             .isThrownBy(() -> new Abated().setClosedLoopEventStatus(ControlLoopEventStatus.ONSET));
55     }
56 }