be573cb3772d3709d6bd36c398bfb6958f74cf82
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 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.onap.policy.clamp.acm.participant.a1pms.utils;
23
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.AutomationCompositionElement;
28 import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionOrderedState;
29 import org.onap.policy.models.tosca.authorative.concepts.ToscaConceptIdentifier;
30
31 public class CommonTestData {
32
33     private static final String TEST_KEY_NAME = "org.onap.domain.database.A1PMSAutomationCompositionElement";
34
35     /**
36      * Get a automationComposition Element.
37      *
38      * @return automationCompositionElement object
39      */
40     public AutomationCompositionElement getAutomationCompositionElement() {
41         AutomationCompositionElement element = new AutomationCompositionElement();
42         element.setId(UUID.randomUUID());
43         element.setDefinition(new ToscaConceptIdentifier(TEST_KEY_NAME, "1.0.1"));
44         element.setOrderedState(AutomationCompositionOrderedState.PASSIVE);
45         return element;
46     }
47
48     /**
49      * Get automation composition id.
50      *
51      * @return ToscaConceptIdentifier automationCompositionId
52      */
53     public ToscaConceptIdentifier getAutomationCompositionId() {
54         return getAutomationCompositionId(0);
55     }
56
57     /**
58      * Get automation composition id.
59      * @param instanceNo Identifier instance no
60      * @return ToscaConceptIdentifier automationCompositionId
61      */
62     public ToscaConceptIdentifier getAutomationCompositionId(int instanceNo) {
63         return new ToscaConceptIdentifier("A1PMSInstance" + instanceNo, "1.0.0");
64     }
65
66
67     /**
68      * Get valid policy entities.
69      * @return List of policy entities
70      */
71     public List<A1PolicyServiceEntity> getValidPolicyEntities() {
72         A1PolicyServiceEntity a1PolicyServiceEntity1 = new A1PolicyServiceEntity(getAutomationCompositionId(0),
73                 "testService1", "http://localhost", 0);
74         A1PolicyServiceEntity a1PolicyServiceEntity2 = new A1PolicyServiceEntity(getAutomationCompositionId(1),
75                 "testService2", "http://127.0.0.1", 0);
76         return List.of(a1PolicyServiceEntity1, a1PolicyServiceEntity2);
77     }
78 }