5a82466d600528eff7434e8a4abbb2e0e095dab3
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2023 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.clamp.models.acm.concepts;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertNotEquals;
26 import static org.junit.jupiter.api.Assertions.assertNotNull;
27
28 import java.util.UUID;
29 import org.junit.jupiter.api.Test;
30
31 public class ParticipantsSupportedElementTypesTest {
32
33     private static final String ID = "a95757ba-b34a-4049-a2a8-46773abcbe5e";
34
35     @Test
36     void testParticipant() {
37
38         var p0 = new ParticipantSupportedElementType();
39         p0.setId(UUID.fromString(ID));
40         assertEquals(ID, p0.getId().toString());
41
42         var p1 = new ParticipantSupportedElementType(p0);
43
44         assertThat(p0).usingRecursiveComparison().isEqualTo(p1);
45     }
46
47     @Test
48     void testParticipantLombok() {
49         assertNotNull(new ParticipantSupportedElementType());
50         var p0 = new ParticipantSupportedElementType();
51
52         assertThat(p0.toString()).contains("ParticipantSupportedElementType");
53         assertThat(p0.hashCode()).isNotZero();
54         assertThat(p0).usingRecursiveComparison().isEqualTo(new ParticipantSupportedElementType(p0));
55         assertNotEquals(null, p0);
56
57
58         var p1 = new ParticipantSupportedElementType();
59
60         p1.setId(UUID.fromString(ID));
61         p1.setTypeName("name");
62         p1.setTypeVersion("1.0.0");
63
64         assertThat(p1.toString()).contains("ParticipantSupportedElementType");
65         assertNotEquals(0, p1.hashCode());
66         assertNotEquals(p1, p0);
67         assertNotEquals(null, p1);
68
69
70         var p2 = new ParticipantSupportedElementType();
71         p2.setId(p0.getId());
72
73         assertThat(p0).usingRecursiveComparison().isEqualTo(p2);
74     }
75 }