eeb8ba3dda0431c9ad12cae07bdec2d843473e32
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2021-2022 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.messages.dmaap.participant;
22
23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantMessageUtils.assertSerializable;
26 import static org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantMessageUtils.removeVariableFields;
27
28 import java.time.Instant;
29 import java.util.List;
30 import java.util.Map;
31 import java.util.UUID;
32 import org.junit.jupiter.api.Test;
33 import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionElementDefinition;
34 import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionInfo;
35 import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionState;
36 import org.onap.policy.clamp.models.acm.concepts.ParticipantDefinition;
37 import org.onap.policy.clamp.models.acm.concepts.ParticipantHealthStatus;
38 import org.onap.policy.clamp.models.acm.concepts.ParticipantState;
39 import org.onap.policy.common.utils.coder.CoderException;
40 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
41 import org.onap.policy.models.tosca.authorative.concepts.ToscaNodeTemplate;
42 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
43
44 class ParticipantStatusTest {
45
46     @Test
47     void testCopyConstructor() throws CoderException {
48         assertThatThrownBy(() -> new ParticipantStatus(null)).isInstanceOf(NullPointerException.class);
49
50         final ParticipantStatus orig = new ParticipantStatus();
51
52         // verify with null values
53         assertEquals(removeVariableFields(orig.toString()),
54                 removeVariableFields(new ParticipantStatus(orig).toString()));
55
56         // verify with all values
57         ToscaConceptIdentifier id = new ToscaConceptIdentifier("id", "1.2.3");
58         orig.setAutomationCompositionId(id);
59         orig.setParticipantId(id);
60         ToscaConceptIdentifier type = new ToscaConceptIdentifier("type", "2.3.4");
61         orig.setParticipantType(type);
62         orig.setMessageId(UUID.randomUUID());
63         orig.setState(ParticipantState.ACTIVE);
64         orig.setHealthStatus(ParticipantHealthStatus.HEALTHY);
65         orig.setTimestamp(Instant.ofEpochMilli(3000));
66
67         AutomationCompositionInfo acInfo = getAutomationCompositionInfo(id);
68         orig.setAutomationCompositionInfoList(List.of(acInfo));
69
70         ParticipantDefinition participantDefinitionUpdate = new ParticipantDefinition();
71         participantDefinitionUpdate.setParticipantId(id);
72         participantDefinitionUpdate.setParticipantType(type);
73         AutomationCompositionElementDefinition acDefinition = getAcElementDefinition(id);
74         participantDefinitionUpdate.setAutomationCompositionElementDefinitionList(List.of(acDefinition));
75         orig.setParticipantDefinitionUpdates(List.of(participantDefinitionUpdate));
76
77         assertEquals(removeVariableFields(orig.toString()),
78                 removeVariableFields(new ParticipantStatus(orig).toString()));
79
80         assertSerializable(orig, ParticipantStatus.class);
81     }
82
83     private AutomationCompositionInfo getAutomationCompositionInfo(ToscaConceptIdentifier id) {
84         AutomationCompositionInfo acInfo = new AutomationCompositionInfo();
85         acInfo.setState(AutomationCompositionState.PASSIVE2RUNNING);
86         acInfo.setAutomationCompositionId(id);
87
88         return acInfo;
89     }
90
91     private AutomationCompositionElementDefinition getAcElementDefinition(ToscaConceptIdentifier id) {
92         ToscaNodeTemplate toscaNodeTemplate = new ToscaNodeTemplate();
93         toscaNodeTemplate.setName("nodeTemplate");
94         toscaNodeTemplate.setDerivedFrom("parentNodeTemplate");
95         toscaNodeTemplate.setDescription("Description of nodeTemplate");
96         toscaNodeTemplate.setVersion("1.2.3");
97
98         AutomationCompositionElementDefinition acDefinition = new AutomationCompositionElementDefinition();
99         acDefinition.setAcElementDefinitionId(id);
100         acDefinition.setAutomationCompositionElementToscaNodeTemplate(toscaNodeTemplate);
101
102         ToscaProperty property = new ToscaProperty();
103         property.setName("test");
104         property.setType("testType");
105         Map<String, ToscaProperty> commonPropertiesMap = Map.of("Prop1", property);
106         acDefinition.setCommonPropertiesMap(commonPropertiesMap);
107         return acDefinition;
108     }
109 }