Soutbound PM Rest Client
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-pm-manager / src / test / java / org / o / ran / oam / nf / oam / adopter / pm / rest / manager / VesEventNotifierMock.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  O-RAN-SC
4  *  ================================================================================
5  *  Copyright © 2021 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  *        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  *  ============LICENSE_END=========================================================
18  */
19
20 package org.o.ran.oam.nf.oam.adopter.pm.rest.manager;
21
22 import com.google.gson.Gson;
23 import io.reactivex.rxjava3.core.Completable;
24 import java.util.ArrayList;
25 import java.util.List;
26 import java.util.stream.Collectors;
27 import org.o.ran.oam.nf.oam.adopter.api.CommonEventFormat302ONAP;
28 import org.o.ran.oam.nf.oam.adopter.api.VesEventNotifier;
29 import org.springframework.stereotype.Service;
30
31 @Service("test")
32 final class VesEventNotifierMock implements VesEventNotifier {
33
34     private static final Gson GSON = new Gson();
35     private final List<CommonEventFormat302ONAP> event = new ArrayList<>();
36
37     @Override
38     public synchronized Completable notifyEvents(final CommonEventFormat302ONAP event) {
39         this.event.add(event);
40         return Completable.complete();
41     }
42
43     protected synchronized List<String> getEvents() {
44         return event.stream().map(e -> GSON.toJson(e, CommonEventFormat302ONAP.class)).collect(Collectors.toList());
45     }
46 }