blob: 892e159b84526e0c28b034b958e022cf9e6e9443 [file] [log] [blame]
kdarapu891693b2019-09-16 12:33:49 +05301/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//Package mocks provides the mocks for openolt-adapter.
18package mocks
19
20import (
Neha Sharma96b7bf22020-06-15 10:37:32 +000021 "context"
kdarapu891693b2019-09-16 12:33:49 +053022 "errors"
khenaidoo106c61a2021-08-11 18:05:46 -040023
24 "github.com/opencord/voltha-protos/v5/go/voltha"
kdarapu891693b2019-09-16 12:33:49 +053025)
26
27// MockEventProxy for mocking EventProxyIntf
28type MockEventProxy struct {
29}
30
31// SendDeviceEvent mocks the SendDeviceEvent function
Neha Sharma96b7bf22020-06-15 10:37:32 +000032func (me *MockEventProxy) SendDeviceEvent(ctx context.Context, deviceEvent *voltha.DeviceEvent, category voltha.EventCategory_Types,
Esin Karamanccb714b2019-11-29 15:02:06 +000033 subCategory voltha.EventSubCategory_Types, raisedTs int64) error {
kdarapu891693b2019-09-16 12:33:49 +053034 if raisedTs == 0 {
35 return errors.New("raisedTS cannot be zero")
36 }
37 return nil
38}
Naga Manjunath7615e552019-10-11 22:35:47 +053039
40// SendKpiEvent mocks the SendKpiEvent function
Neha Sharma96b7bf22020-06-15 10:37:32 +000041func (me *MockEventProxy) SendKpiEvent(ctx context.Context, id string, deviceEvent *voltha.KpiEvent2, category voltha.EventCategory_Types,
Esin Karamanccb714b2019-11-29 15:02:06 +000042 subCategory voltha.EventSubCategory_Types, raisedTs int64) error {
Naga Manjunath7615e552019-10-11 22:35:47 +053043 if raisedTs == 0 {
44 return errors.New("raisedTS cannot be zero")
45 }
46 return nil
47}
Himani Chawlacd407802020-12-10 12:08:59 +053048
49// SendRPCEvent mocks the SendRPCEvent function
50func (me *MockEventProxy) SendRPCEvent(ctx context.Context, id string, deviceEvent *voltha.RPCEvent, category voltha.EventCategory_Types,
51 subCategory *voltha.EventSubCategory_Types, raisedTs int64) error {
52 if raisedTs == 0 {
53 return errors.New("raisedTS cannot be zero")
54 }
55 return nil
56}
Gamze Abaka7650be62021-02-26 10:50:36 +000057
58// EnableLivenessChannel mocks the EnableLivenessChannel function
59func (me *MockEventProxy) EnableLivenessChannel(ctx context.Context, enable bool) chan bool {
60 return nil
61}
62
63// SendLiveness mocks the SendLiveness function
64func (me *MockEventProxy) SendLiveness(ctx context.Context) error {
65 return nil
66}
khenaidoo106c61a2021-08-11 18:05:46 -040067
68// Start starts the proxy
69func (me *MockEventProxy) Start() error {
70 return nil
71}
72
73// Stop stops the proxy
74func (me *MockEventProxy) Stop() {
75}