Merge "update release note"
[clamp.git] / src / test / java / org / onap / clamp / policy / pdpgroup / PolicyModelKeyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights
6  *                             reserved.
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  */
23
24 package org.onap.clamp.policy.pdpgroup;
25
26 import static org.assertj.core.api.Assertions.assertThat;
27
28 import java.io.IOException;
29 import org.junit.Test;
30
31 public class PolicyModelKeyTest {
32
33     @Test
34     public void testEqualsMethod() throws IOException {
35         PolicyModelKey key1 = new PolicyModelKey("name1","1.0.0");
36         PolicyModelKey key2 = new PolicyModelKey(null,"1.0.0");
37         PolicyModelKey key3 = new PolicyModelKey("name1",null);
38
39         assertThat(key1.equals(null)).isFalse();
40         assertThat(key1.equals("key2")).isFalse();
41
42         assertThat(key2.equals(key1)).isFalse();
43         assertThat(key3.equals(key1)).isFalse();
44
45         PolicyModelKey key4 = new PolicyModelKey("name2","1.0.0");
46         PolicyModelKey key5 = new PolicyModelKey("name1","2.0.0");
47         assertThat(key1.equals(key4)).isFalse();
48         assertThat(key1.equals(key5)).isFalse();
49
50         PolicyModelKey key6 = new PolicyModelKey("name(.*)","1.0.0");
51         PolicyModelKey key7 = new PolicyModelKey("name1","1.0.0");
52         assertThat(key1.equals(key6)).isTrue();
53         assertThat(key1.equals(key7)).isTrue();
54     }
55 }