Changes for Checkstyle 8.32
[policy/models.git] / models-base / src / test / java / org / onap / policy / models / base / PfTimestampKeyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.base;
22
23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertTrue;
27
28 import java.util.Date;
29 import org.junit.Test;
30
31 public class PfTimestampKeyTest {
32     private static final String VERSION001 = "0.0.1";
33     private static final String CONCEPT_IS_NULL = "^copyConcept is marked .*on.*ull but is null$";
34     private static final String NAME_IS_NULL = "^name is marked .*on.*ull but is null$";
35     private static final String VERSION_IS_NULL = "^version is marked .*on.*ull but is null$";
36     private static final String TIMESTAMP_IS_NULL = "^timeStamp is marked .*on.*ull but is null$";
37     private static final long timeStamp = 1574832537641L;
38
39     @Test
40     public void testTimestampKey() {
41         PfTimestampKey someKey0 = new PfTimestampKey();
42         assertEquals(PfTimestampKey.getNullKey(), someKey0);
43         assertTrue(someKey0.isNullKey());
44         assertEquals("PfTimestampKey(name=NULL, version=0.0.0, timestamp=0)", someKey0.toString());
45
46         PfTimestampKey someKey1 = new PfTimestampKey("my-name", VERSION001, new Date(timeStamp));
47         PfTimestampKey someKey2 = new PfTimestampKey(someKey1);
48         PfTimestampKey someKey3 = new PfTimestampKey(someKey1.getId());
49         assertEquals(someKey1, someKey2);
50         assertEquals(someKey1, someKey3);
51         assertFalse(someKey1.isNullVersion());
52         assertEquals("PfTimestampKey(name=my-name, version=0.0.1, timestamp=1574832537641)", someKey1.toString());
53
54         assertEquals("my-name", someKey1.getName());
55         assertEquals(VERSION001, someKey1.getVersion());
56
57         assertEquals(someKey2, someKey1.getKey());
58         assertEquals(1, someKey1.getKeys().size());
59
60         assertThatThrownBy(() -> new PfTimestampKey((PfTimestampKey) null)).isInstanceOf(NullPointerException.class)
61             .hasMessageMatching(CONCEPT_IS_NULL);
62         assertThatThrownBy(() -> new PfTimestampKey(null, null, null)).isInstanceOf(NullPointerException.class)
63             .hasMessageMatching(NAME_IS_NULL);
64         assertThatThrownBy(() -> new PfTimestampKey("my-name", null, null)).isInstanceOf(NullPointerException.class)
65             .hasMessageMatching(VERSION_IS_NULL);
66         assertThatThrownBy(() -> new PfTimestampKey("my-name", VERSION001, null))
67             .isInstanceOf(NullPointerException.class).hasMessageMatching(TIMESTAMP_IS_NULL);
68
69         assertThatThrownBy(() -> someKey0.setName(null)).isInstanceOf(NullPointerException.class)
70             .hasMessageMatching(NAME_IS_NULL);
71         assertThatThrownBy(() -> someKey0.setVersion(null)).isInstanceOf(NullPointerException.class)
72             .hasMessageMatching(VERSION_IS_NULL);
73         assertThatThrownBy(() -> someKey0.setTimeStamp(null)).isInstanceOf(NullPointerException.class)
74             .hasMessageMatching(TIMESTAMP_IS_NULL);
75
76         assertFalse(someKey1.isNewerThan(someKey2));
77         assertThatThrownBy(() -> someKey1.isNewerThan((PfKey) null)).isInstanceOf(NullPointerException.class)
78             .hasMessageMatching("^otherKey is marked .*on.*ull but is null$");
79         someKey2.setTimeStamp(new Date(timeStamp + 1));
80         assertTrue(someKey2.isNewerThan(someKey1));
81         someKey3.setName("my-name3");
82         assertTrue(someKey3.isNewerThan(someKey1));
83
84         assertEquals(-1, someKey1.compareTo(someKey2));
85         assertEquals(-1, someKey1.compareTo(someKey3));
86         assertThatThrownBy(() -> someKey1.compareTo((PfConcept) null)).isInstanceOf(NullPointerException.class)
87             .hasMessageMatching("^otherObj is marked .*on.*ull but is null$");
88
89         PfTimestampKey someKey4 = new PfTimestampKey("NULL", "0.0.0", new Date(timeStamp));
90         assertFalse(someKey4.isNullKey());
91         assertFalse(someKey1.isNullKey());
92     }
93 }