Complete unit test for models-pdp
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicyIdentifierTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Models
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.tosca.authorative.concepts;
22
23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Test;
27
28 /**
29  * Test the other constructors, as {@link PojosTest} tests the other methods.
30  */
31 public class ToscaPolicyIdentifierTest extends ToscaIdentifierTestBase<ToscaPolicyIdentifier> {
32     private static final String NAME = "my-name";
33     private static final String VERSION = "1.2.3";
34
35     public ToscaPolicyIdentifierTest() {
36         super(ToscaPolicyIdentifier.class);
37     }
38
39     @Test
40     public void testAllArgsConstructor() {
41         assertThatThrownBy(() -> new ToscaPolicyIdentifier(null, VERSION)).isInstanceOf(NullPointerException.class);
42         assertThatThrownBy(() -> new ToscaPolicyIdentifier(NAME, null)).isInstanceOf(NullPointerException.class);
43
44         ToscaPolicyIdentifier orig = new ToscaPolicyIdentifier(NAME, VERSION);
45         assertEquals(NAME, orig.getName());
46         assertEquals(VERSION, orig.getVersion());
47     }
48
49     @Test
50     public void testCopyConstructor() {
51         assertThatThrownBy(() -> new ToscaPolicyIdentifier(null)).isInstanceOf(NullPointerException.class);
52
53         ToscaPolicyIdentifier orig = new ToscaPolicyIdentifier();
54
55         // verify with null values
56         assertEquals(orig.toString(), new ToscaPolicyIdentifier(orig).toString());
57
58         // verify with all values
59         orig = new ToscaPolicyIdentifier(NAME, VERSION);
60         assertEquals(orig.toString(), new ToscaPolicyIdentifier(orig).toString());
61     }
62 }