Add PfKey translation to ToscaConceptIdentifier
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicyConceptIdentifierTest.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) 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.tosca.authorative.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertNull;
29 import static org.junit.Assert.assertTrue;
30
31 import org.junit.Test;
32 import org.onap.policy.common.parameters.ValidationResult;
33 import org.onap.policy.models.base.PfConceptKey;
34
35 /**
36  * Test methods not tested by {@link PojosTest}.
37  */
38 public class ToscaPolicyConceptIdentifierTest extends ToscaIdentifierTestBase<ToscaConceptIdentifier> {
39
40     public ToscaPolicyConceptIdentifierTest() {
41         super(ToscaConceptIdentifier.class, "name", "version");
42     }
43
44     @Test
45     public void testAllArgsConstructor() {
46         assertThatThrownBy(() -> new ToscaConceptIdentifier(null, VERSION)).isInstanceOf(NullPointerException.class);
47         assertThatThrownBy(() -> new ToscaConceptIdentifier(NAME, null)).isInstanceOf(NullPointerException.class);
48
49         ToscaConceptIdentifier orig = new ToscaConceptIdentifier(NAME, VERSION);
50         assertEquals(NAME, orig.getName());
51         assertEquals(VERSION, orig.getVersion());
52     }
53
54     @Test
55     public void testCopyConstructor() {
56         assertThatThrownBy(() -> new ToscaConceptIdentifier((ToscaConceptIdentifier) null))
57                 .isInstanceOf(NullPointerException.class);
58
59         ToscaConceptIdentifier orig = new ToscaConceptIdentifier();
60
61         // verify with null values
62         assertEquals(orig.toString(), new ToscaConceptIdentifier(orig).toString());
63
64         // verify with all values
65         orig = new ToscaConceptIdentifier(NAME, VERSION);
66         assertEquals(orig.toString(), new ToscaConceptIdentifier(orig).toString());
67     }
68
69
70     @Test
71     public void testPfKey() {
72         assertThatThrownBy(() -> new ToscaConceptIdentifier((PfConceptKey) null))
73                 .isInstanceOf(NullPointerException.class);
74
75         PfConceptKey origKey = new PfConceptKey("Hello", "0.0.1");
76
77         assertEquals(origKey.getName(), new ToscaConceptIdentifier(origKey).getName());
78
79         assertEquals(origKey, new ToscaConceptIdentifier(origKey).asConceptKey());
80     }
81
82     @Test
83     public void testValidatePapRest() throws Exception {
84         ToscaConceptIdentifier ident = new ToscaConceptIdentifier(NAME, VERSION);
85         ValidationResult result = ident.validatePapRest();
86         assertNotNull(result);
87         assertTrue(result.isValid());
88         assertNull(result.getResult());
89
90         ident = makeIdent(NAME, null);
91         result = ident.validatePapRest();
92         assertNotNull(result);
93         assertFalse(result.isValid());
94         assertNotNull(result.getResult());
95
96         ident = makeIdent(null, VERSION);
97         result = ident.validatePapRest();
98         assertNotNull(result);
99         assertFalse(result.isValid());
100         assertNotNull(result.getResult());
101     }
102
103     @Test
104     @Override
105     public void testCompareTo() throws Exception {
106         super.testCompareTo();
107     }
108 }