001c80b7f71b6020e2547081651680051019b64b
[policy/models.git] / models-pdp / src / test / java / org / onap / policy / models / pdp / concepts / PdpStatisticsTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Models
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2020-2021 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.models.pdp.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26
27 import java.time.Instant;
28 import java.util.ArrayList;
29 import org.junit.Test;
30
31 public class PdpStatisticsTest {
32
33     @Test
34     public void testCopyConstructor() {
35         assertThatThrownBy(() -> new PdpStatistics(null)).hasMessageContaining("source");
36
37         PdpStatistics orig = createPdpStatistics();
38         PdpStatistics copied = new PdpStatistics(orig);
39         assertEquals(orig, copied);
40     }
41
42     private PdpStatistics createPdpStatistics() {
43         PdpStatistics pdpStat = new PdpStatistics();
44         pdpStat.setPdpInstanceId("PDP0");
45         pdpStat.setPdpGroupName("PDPGroup0");
46         pdpStat.setPdpSubGroupName("PDPSubGroup0");
47         pdpStat.setTimeStamp(Instant.EPOCH);
48         pdpStat.setPolicyExecutedCount(9);
49         pdpStat.setPolicyExecutedSuccessCount(4);
50         pdpStat.setPolicyExecutedFailCount(5);
51         pdpStat.setPolicyDeployCount(3);
52         pdpStat.setPolicyDeploySuccessCount(1);
53         pdpStat.setPolicyDeployFailCount(2);
54         pdpStat.setPolicyUndeployCount(4);
55         pdpStat.setPolicyUndeploySuccessCount(3);
56         pdpStat.setPolicyUndeployFailCount(1);
57         pdpStat.setEngineStats(new ArrayList<>());
58         return pdpStat;
59     }
60 }