Changed identifiers to concept identifiers
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicyTypeConceptIdentifierTest.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
34 /**
35  * Test methods not tested by {@link PojosTest}.
36  */
37 public class ToscaPolicyTypeConceptIdentifierTest extends ToscaIdentifierTestBase<ToscaConceptIdentifier> {
38
39     public ToscaPolicyTypeConceptIdentifierTest() {
40         super(ToscaConceptIdentifier.class, "name", "version");
41     }
42
43     @Test
44     public void testAllArgsConstructor() {
45         assertThatThrownBy(() -> new ToscaConceptIdentifier(null, VERSION)).isInstanceOf(NullPointerException.class);
46         assertThatThrownBy(() -> new ToscaConceptIdentifier(NAME, null)).isInstanceOf(NullPointerException.class);
47
48         ToscaConceptIdentifier orig = new ToscaConceptIdentifier(NAME, VERSION);
49         assertEquals(NAME, orig.getName());
50         assertEquals(VERSION, orig.getVersion());
51     }
52
53     @Test
54     public void testCopyConstructor() {
55         assertThatThrownBy(() -> new ToscaConceptIdentifier(null)).isInstanceOf(NullPointerException.class);
56
57         ToscaConceptIdentifier orig = new ToscaConceptIdentifier();
58
59         // verify with null values
60         assertEquals(orig.toString(), new ToscaConceptIdentifier(orig).toString());
61
62         // verify with all values
63         orig = new ToscaConceptIdentifier(NAME, VERSION);
64         assertEquals(orig.toString(), new ToscaConceptIdentifier(orig).toString());
65     }
66
67     @Test
68     public void testValidatePapRest() throws Exception {
69         ToscaConceptIdentifier ident = new ToscaConceptIdentifier(NAME, VERSION);
70         ValidationResult result = ident.validatePapRest();
71         assertNotNull(result);
72         assertTrue(result.isValid());
73         assertNull(result.getResult());
74
75         ident = makeIdent(NAME, null);
76         result = ident.validatePapRest();
77         assertNotNull(result);
78         assertFalse(result.isValid());
79         assertNotNull(result.getResult());
80
81         ident = makeIdent(null, VERSION);
82         result = ident.validatePapRest();
83         assertNotNull(result);
84         assertFalse(result.isValid());
85         assertNotNull(result.getResult());
86     }
87
88     @Test
89     @Override
90     public void testCompareTo() throws Exception {
91         super.testCompareTo();
92     }
93 }