Add A1 controller client in policy-agent
[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 java.lang.invoke.MethodHandles;
24 import java.util.HashMap;
25 import java.util.Map;
26
27 import org.oransc.policyagent.clients.A1Client;
28 import org.oransc.policyagent.clients.A1ClientFactory;
29 import org.oransc.policyagent.repository.PolicyTypes;
30 import org.oransc.policyagent.repository.Ric;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33
34 public class MockA1ClientFactory extends A1ClientFactory {
35     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
36     private final Map<String, MockA1Client> clients = new HashMap<>();
37     private final PolicyTypes policyTypes;
38
39     public MockA1ClientFactory(PolicyTypes policyTypes) {
40         this.policyTypes = policyTypes;
41     }
42
43     @Override
44     protected A1Client createStdA1ClientImpl(Ric ric) {
45         return getOrCreateA1Client(ric.name());
46     }
47
48     @Override
49     protected A1Client createControllerA1Client(Ric ric) {
50         return getOrCreateA1Client(ric.name());
51     }
52
53     public MockA1Client getOrCreateA1Client(String ricName) {
54         if (!clients.containsKey(ricName)) {
55             logger.debug("Creating client for RIC: {}", ricName);
56             MockA1Client client = new MockA1Client(policyTypes);
57             clients.put(ricName, client);
58         }
59         return clients.get(ricName);
60     }
61
62 }