Fix bug in SDNC, read controller info from yaml
[nonrtric.git] / policy-agent / src / test / java / org / oransc / policyagent / utils / MockA1ClientFactory.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.oransc.policyagent.utils;
22
23 import static org.mockito.Mockito.mock;
24
25 import java.lang.invoke.MethodHandles;
26 import java.util.HashMap;
27 import java.util.Map;
28
29 import org.oransc.policyagent.clients.A1Client;
30 import org.oransc.policyagent.clients.A1ClientFactory;
31 import org.oransc.policyagent.configuration.ApplicationConfig;
32 import org.oransc.policyagent.repository.PolicyTypes;
33 import org.oransc.policyagent.repository.Ric;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37 public class MockA1ClientFactory extends A1ClientFactory {
38     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
39     private final Map<String, MockA1Client> clients = new HashMap<>();
40     private final PolicyTypes policyTypes;
41
42     public MockA1ClientFactory(PolicyTypes policyTypes) {
43         super(mock(ApplicationConfig.class));
44         this.policyTypes = policyTypes;
45     }
46
47     @Override
48     protected A1Client createStdA1ClientImpl(Ric ric) {
49         return getOrCreateA1Client(ric.name());
50     }
51
52     public MockA1Client getOrCreateA1Client(String ricName) {
53         if (!clients.containsKey(ricName)) {
54             logger.debug("Creating client for RIC: {}", ricName);
55             MockA1Client client = new MockA1Client(policyTypes);
56             clients.put(ricName, client);
57         }
58         return clients.get(ricName);
59     }
60
61 }