OAM NF Adopter SNMP Manager test code coverage
[oam/nf-oam-adopter.git] / ves-nf-oam-adopter / ves-nf-oam-adopter-snmp-manager / src / test / java / org / o / ran / oam / nf / oam / adopter / snmp / 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.snmp.manager;
21
22 import com.google.gson.Gson;
23 import io.reactivex.rxjava3.core.Completable;
24 import org.o.ran.oam.nf.oam.adopter.api.CommonEventFormat302ONAP;
25 import org.o.ran.oam.nf.oam.adopter.api.VesEventNotifier;
26 import org.springframework.stereotype.Service;
27
28 @Service("test")
29 class VesEventNotifierMock implements VesEventNotifier {
30
31     private static final Gson GSON = new Gson();
32     private CommonEventFormat302ONAP event;
33
34     @Override
35     public synchronized Completable notifyEvents(final CommonEventFormat302ONAP event) {
36         this.event = event;
37         return Completable.complete();
38     }
39
40     protected String getEvent() {
41         if (event == null) {
42             return null;
43         }
44         return GSON.toJson(event, CommonEventFormat302ONAP.class);
45     }
46
47     protected void clear() {
48         event = null;
49     }
50 }