be7dfcb35e71b43ef0de0701f34200da5445eab0
[ccsdk/oran.git] /
1 /*-
2  * ========================LICENSE_START=================================
3  * ONAP : ccsdk oran
4  * ======================================================================
5  * Copyright (C) 2019-2020 Nordix Foundation. 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.onap.ccsdk.oran.a1policymanagementservice.utils;
22
23 import static org.mockito.Mockito.spy;
24
25 import java.lang.invoke.MethodHandles;
26 import java.time.Duration;
27 import java.util.HashMap;
28 import java.util.Map;
29
30 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1Client;
31 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1ClientFactory;
32 import org.onap.ccsdk.oran.a1policymanagementservice.clients.SecurityContext;
33 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.ApplicationConfig;
34 import org.onap.ccsdk.oran.a1policymanagementservice.repository.PolicyTypes;
35 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Ric;
36 import org.slf4j.Logger;
37 import org.slf4j.LoggerFactory;
38
39 import reactor.core.publisher.Mono;
40
41 public class MockA1ClientFactory extends A1ClientFactory {
42     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43     private final Map<String, MockA1Client> clients = new HashMap<>();
44     private PolicyTypes policyTypes;
45     private Duration asynchDelay = Duration.ofSeconds(0);
46     private final ApplicationConfig appConfig;
47
48     public MockA1ClientFactory(ApplicationConfig config, PolicyTypes policyTypes) {
49         super(config, new SecurityContext(""));
50         this.policyTypes = policyTypes;
51         this.appConfig = config;
52     }
53
54     @Override
55     public Mono<A1Client> createA1Client(Ric ric) {
56         return Mono.just(getOrCreateA1Client(ric.id()));
57     }
58
59     public MockA1Client getOrCreateA1Client(String ricId) {
60         if (!clients.containsKey(ricId)) {
61             logger.debug("Creating client for RIC: {}", ricId);
62             MockA1Client client = spy(new MockA1Client(ricId, appConfig, policyTypes, asynchDelay));
63             clients.put(ricId, client);
64         }
65         return clients.get(ricId);
66     }
67
68     public void setPolicyTypes(PolicyTypes policyTypes) {
69         this.policyTypes = policyTypes;
70     }
71
72     /**
73      * Simulate network latency. The REST responses will be generated by separate
74      * threads
75      *
76      * @param delay the delay between the request and the response
77      */
78     public void setResponseDelay(Duration delay) {
79         this.asynchDelay = delay;
80     }
81
82     public void reset() {
83         this.asynchDelay = Duration.ofSeconds(0);
84         clients.clear();
85     }
86
87     public PolicyTypes getPolicyTypes() {
88         return this.policyTypes;
89     }
90
91 }