Changes for Checkstyle 8.32
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicyTest.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 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.tosca.authorative.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26
27 import java.util.LinkedHashMap;
28 import org.junit.Test;
29
30 /**
31  * Tests methods not tested by {@link PojosTest}.
32  */
33 public class ToscaPolicyTest {
34
35     @Test
36     public void testGetIdentifier_testGetTypeIdentifier() {
37         assertThatThrownBy(() -> {
38             new ToscaPolicy(null);
39         }).hasMessageMatching("copyObject is marked .*on.*ull but is null");
40
41         ToscaPolicy policy = new ToscaPolicy();
42
43         policy.setName("my_name");
44         policy.setVersion("1.2.3");
45         policy.setType("my_type");
46         policy.setTypeVersion("3.2.1");
47
48         assertEquals("ToscaEntityKey(name=my_name, version=1.2.3)", policy.getKey().toString());
49
50         ToscaPolicyIdentifier ident = policy.getIdentifier();
51         assertEquals("my_name", ident.getName());
52         assertEquals("1.2.3", ident.getVersion());
53
54         ToscaPolicyTypeIdentifier type = policy.getTypeIdentifier();
55         assertEquals("my_type", type.getName());
56         assertEquals("3.2.1", type.getVersion());
57
58         ToscaPolicy clonedPolicy0 = new ToscaPolicy(policy);
59         assertEquals(0, policy.compareTo(clonedPolicy0));
60
61         policy.setProperties(new LinkedHashMap<String, Object>());
62         policy.getProperties().put("PropertyKey", "PropertyValue");
63         ToscaPolicy clonedPolicy1 = new ToscaPolicy(policy);
64         assertEquals(0, policy.compareTo(clonedPolicy1));
65     }
66 }