Upgrade ACM version to 8.0.0
[nonrtric/plt/rappmanager.git] / participants / participant-impl-dme / src / test / java / org / oransc / participant / dme / utils / CommonTestData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022-2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2022 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.oransc.participant.dme.utils;
23
24 import java.util.List;
25 import java.util.UUID;
26 import org.onap.policy.clamp.models.acm.concepts.AcElementDeploy;
27 import org.onap.policy.clamp.models.acm.messages.rest.instantiation.DeployOrder;
28 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
29
30 public class CommonTestData {
31
32     private static final String TEST_KEY_NAME = "onap.policy.clamp.ac.element.DmeAutomationCompositionElement";
33     private static final List<UUID> AC_ID_LIST = List.of(UUID.randomUUID(), UUID.randomUUID());
34
35     public AcElementDeploy getAutomationCompositionElement() {
36         var element = new AcElementDeploy();
37         element.setId(UUID.randomUUID());
38         element.setDefinition(new ToscaConceptIdentifier(TEST_KEY_NAME, "1.0.1"));
39         element.setOrderedState(DeployOrder.DEPLOY);
40         return element;
41     }
42
43     public ToscaConceptIdentifier getDmeIdentifier(int instanceNo) {
44         return new ToscaConceptIdentifier("DmeInstance" + instanceNo, "1.0.0");
45     }
46
47     public UUID getAutomationCompositionId() {
48         return getAutomationCompositionId(0);
49     }
50
51     public UUID getAutomationCompositionId(int instanceNo) {
52         return AC_ID_LIST.get(instanceNo);
53     }
54
55 }