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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.clamp.acm.participant.a1pms.utils;
24 import java.util.List;
25 import java.util.UUID;
26 import org.onap.policy.clamp.acm.participant.a1pms.models.A1PolicyServiceEntity;
27 import org.onap.policy.clamp.models.acm.concepts.AcElementDeploy;
28 import org.onap.policy.clamp.models.acm.messages.rest.instantiation.DeployOrder;
29 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
31 public class CommonTestData {
33 private static final String TEST_KEY_NAME = "org.onap.domain.database.A1PMSAutomationCompositionElement";
34 private static final List<UUID> AC_ID_LIST = List.of(UUID.randomUUID(), UUID.randomUUID());
37 * Get a automationComposition Element.
39 * @return automationCompositionElement object
41 public AcElementDeploy getAutomationCompositionElement() {
42 var element = new AcElementDeploy();
43 element.setId(UUID.randomUUID());
44 element.setDefinition(new ToscaConceptIdentifier(TEST_KEY_NAME, "1.0.1"));
45 element.setOrderedState(DeployOrder.DEPLOY);
50 * Get automation composition id.
52 * @param instanceNo Identifier instance no
53 * @return ToscaConceptIdentifier automationCompositionId
55 public ToscaConceptIdentifier getA1PolicyServiceId(int instanceNo) {
56 return new ToscaConceptIdentifier("A1PMSInstance" + instanceNo, "1.0.0");
60 * Get automation composition id.
62 * @return UUID automationCompositionId
64 public UUID getAutomationCompositionId() {
65 return getAutomationCompositionId(0);
69 * Get automation composition id.
71 * @param instanceNo Identifier instance no
72 * @return UUID automationCompositionId
74 public UUID getAutomationCompositionId(int instanceNo) {
75 return AC_ID_LIST.get(instanceNo);
79 * Get valid policy entities.
81 * @return List of policy entities
83 public List<A1PolicyServiceEntity> getValidPolicyEntities() {
84 var a1PolicyServiceEntity1 = new A1PolicyServiceEntity(getA1PolicyServiceId(0),
85 "testService1", "http://localhost", 0);
86 var a1PolicyServiceEntity2 = new A1PolicyServiceEntity(getA1PolicyServiceId(1),
87 "testService2", "http://127.0.0.1", 0);
88 return List.of(a1PolicyServiceEntity1, a1PolicyServiceEntity2);