Add Legacy Op Policy Persistence
[policy/models.git] / models-pdp / src / test / java / org / onap / policy / models / pdp / concepts / TestPdpGroup.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) 2019 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 import static org.junit.Assert.assertTrue;
27
28 import java.util.Arrays;
29 import java.util.Map;
30 import java.util.TreeMap;
31 import org.junit.Test;
32 import org.onap.policy.models.pdp.enums.PdpState;
33
34 /**
35  * Test the copy constructor, as {@link TestModels} tests the other methods.
36  */
37 public class TestPdpGroup {
38
39     @Test
40     public void testCopyConstructor() {
41         assertThatThrownBy(() -> new PdpGroup(null)).isInstanceOf(NullPointerException.class);
42
43         PdpGroup orig = new PdpGroup();
44
45         // verify with null values
46         assertEquals("PdpGroup(pdpGroupState=null, properties=null, pdpSubgroups=[])", new PdpGroup(orig).toString());
47
48         // verify with all values
49         orig.setDescription("my-descript");
50         orig.getKey().setName("my-name");
51         orig.setPdpGroupState(PdpState.SAFE);
52
53         PdpSubGroup sub1 = new PdpSubGroup();
54         sub1.setCurrentInstanceCount(10);
55         PdpSubGroup sub2 = new PdpSubGroup();
56         sub2.setCurrentInstanceCount(11);
57         orig.setPdpSubgroups(Arrays.asList(sub1, sub2));
58
59         Map<String, String> props = new TreeMap<>();
60         props.put("key-A", "value-A");
61         props.put("key-B", "value-B");
62         orig.setProperties(props);
63
64         assertEquals("PdpGroup(pdpGroupState=SAFE, properties={key-A=value-A, key-B=value-B}, "
65                 + "pdpSubgroups=[PdpSubGroup(pdpType=null, supportedPolicyTypes=[], policies=[], "
66                 + "currentInstanceCount=10, desiredInstanceCount=0, properties=null, pdpInstances=[]), "
67                 + "PdpSubGroup(pdpType=null, supportedPolicyTypes=[], policies=[], currentInstanceCount=11, "
68                 + "desiredInstanceCount=0, properties=null, pdpInstances=[])])", new PdpGroup(orig).toString());
69     }
70
71     @Test
72     public void testHashCode() {
73         PdpGroup group = new PdpGroup();
74         group.setDescription("A");
75         int hash = group.hashCode();
76
77         assertEquals(hash, group.hashCode());
78
79         group.setDescription("B");
80         assertTrue(hash != group.hashCode());
81     }
82 }