Use tosca parser without resolving GetInput
[so.git] / bpmn / MSOInfrastructureBPMN / src / test / java / org / openecomp / mso / bpmn / infrastructure / pnf / delegate / AaiConnectionTestImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.bpmn.infrastructure.pnf.delegate;
22
23 import java.io.IOException;
24 import java.util.LinkedList;
25 import java.util.List;
26 import java.util.Objects;
27 import java.util.Optional;
28 import org.onap.aai.domain.yang.Pnf;
29 import org.openecomp.mso.bpmn.infrastructure.pnf.implementation.AaiConnection;
30
31 public class AaiConnectionTestImpl implements AaiConnection {
32
33     public static final String ID_WITH_ENTRY_AND_IP = "idWithEntryAndIp";
34     public static final String ID_WITH_IP_V6 = "idWithIpV6";
35     public static final String ID_WITHOUT_ENTRY = "IdWithoutEntry";
36     public static final String ID_WITH_ENTRY_NO_IP = "idWithEntryNoIp";
37     public static final String DEFAULT_IP = "1.2.3.4";
38     public static final String DEFAULT_IP_V6 = "2001:db8::ff00:42:8329";
39
40     private List<String> created = new LinkedList<>();
41
42     @Override
43     public Optional<Pnf> getEntryFor(String correlationId) throws IOException {
44         if (Objects.equals(correlationId, ID_WITH_ENTRY_AND_IP)) {
45             Pnf pnf = new Pnf();
46             pnf.setIpaddressV4Oam(DEFAULT_IP);
47             return Optional.of(pnf);
48         } else if (Objects.equals(correlationId, ID_WITH_IP_V6)) {
49             Pnf pnf = new Pnf();
50             pnf.setIpaddressV6Oam(DEFAULT_IP_V6);
51             return Optional.of(pnf);
52         } else if (Objects.equals(correlationId, ID_WITH_ENTRY_NO_IP)) {
53             return Optional.of(new Pnf());
54         } else {
55             return Optional.empty();
56         }
57     }
58
59     @Override
60     public void createEntry(String correlationId, Pnf entry) throws IOException {
61         created.add(correlationId);
62     }
63
64     public List<String> getCreated() {
65         return created;
66     }
67
68     public void reset() {
69         created.clear();
70     }
71 }