fac98043d72a727cd1457b2f1af2ab2d5586856b
[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     private static final String PARTICIPANT_ID = "a78757co-b34a-8949-a2a8-46773abcbe2a";
35
36     @Test
37     void testParticipant() {
38
39         ParticipantSupportedElementType p0 = new ParticipantSupportedElementType();
40         p0.setId(UUID.fromString(ID));
41         assertEquals(ID, p0.getId().toString());
42
43         ParticipantSupportedElementType p1 = new ParticipantSupportedElementType(p0);
44
45         assertThat(p0).usingRecursiveComparison().isEqualTo(p1);
46     }
47
48     @Test
49     void testParticipantLombok() {
50         assertNotNull(new ParticipantSupportedElementType());
51         ParticipantSupportedElementType p0 = new ParticipantSupportedElementType();
52
53         assertThat(p0.toString()).contains("org.onap.policy.clamp.models.acm.concepts.ParticipantSupportedElementType");
54         assertThat(p0.hashCode()).isNotZero();
55         assertThat(p0).usingRecursiveComparison().isEqualTo(new ParticipantSupportedElementType(p0));
56         assertNotEquals(null, p0);
57
58
59         ParticipantSupportedElementType p1 = new ParticipantSupportedElementType();
60
61         p1.setId(UUID.fromString(ID));
62         p1.setTypeName("name");
63         p1.setTypeVersion("1.0.0");
64
65         assertThat(p1.toString()).contains("org.onap.policy.clamp.models.acm.concepts.ParticipantSupportedElementType");
66         assertNotEquals(0, p1.hashCode());
67         assertNotEquals(p1, p0);
68         assertNotEquals(null, p1);
69
70
71         ParticipantSupportedElementType p2 = new ParticipantSupportedElementType();
72         p2.setId(p0.getId());
73
74         assertThat(p0).usingRecursiveComparison().isEqualTo(p2);
75     }
76 }