kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 1 | /* |
Joey Armstrong | a6af152 | 2023-01-17 16:06:16 -0500 | [diff] [blame] | 2 | * Copyright 2018-2023 Open Networking Foundation (ONF) and the ONF Contributors |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 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 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 17 | // Package mocks provides the mocks for openolt-adapter. |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 18 | package mocks |
| 19 | |
| 20 | import ( |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 21 | "context" |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 22 | "errors" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 23 | |
kesavand | 0ef592c | 2022-03-16 12:34:24 +0530 | [diff] [blame] | 24 | "github.com/opencord/voltha-lib-go/v7/pkg/events/eventif" |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 25 | "github.com/opencord/voltha-protos/v5/go/voltha" |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 26 | ) |
| 27 | |
| 28 | // MockEventProxy for mocking EventProxyIntf |
| 29 | type MockEventProxy struct { |
| 30 | } |
| 31 | |
| 32 | // SendDeviceEvent mocks the SendDeviceEvent function |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 33 | func (me *MockEventProxy) SendDeviceEvent(ctx context.Context, deviceEvent *voltha.DeviceEvent, category voltha.EventCategory_Types, |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 34 | subCategory voltha.EventSubCategory_Types, raisedTs int64) error { |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 35 | if raisedTs == 0 { |
| 36 | return errors.New("raisedTS cannot be zero") |
| 37 | } |
| 38 | return nil |
| 39 | } |
Naga Manjunath | 7615e55 | 2019-10-11 22:35:47 +0530 | [diff] [blame] | 40 | |
| 41 | // SendKpiEvent mocks the SendKpiEvent function |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 42 | func (me *MockEventProxy) SendKpiEvent(ctx context.Context, id string, deviceEvent *voltha.KpiEvent2, category voltha.EventCategory_Types, |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 43 | subCategory voltha.EventSubCategory_Types, raisedTs int64) error { |
Naga Manjunath | 7615e55 | 2019-10-11 22:35:47 +0530 | [diff] [blame] | 44 | if raisedTs == 0 { |
| 45 | return errors.New("raisedTS cannot be zero") |
| 46 | } |
| 47 | return nil |
| 48 | } |
Himani Chawla | cd40780 | 2020-12-10 12:08:59 +0530 | [diff] [blame] | 49 | |
| 50 | // SendRPCEvent mocks the SendRPCEvent function |
| 51 | func (me *MockEventProxy) SendRPCEvent(ctx context.Context, id string, deviceEvent *voltha.RPCEvent, category voltha.EventCategory_Types, |
| 52 | subCategory *voltha.EventSubCategory_Types, raisedTs int64) error { |
| 53 | if raisedTs == 0 { |
| 54 | return errors.New("raisedTS cannot be zero") |
| 55 | } |
| 56 | return nil |
| 57 | } |
Gamze Abaka | 7650be6 | 2021-02-26 10:50:36 +0000 | [diff] [blame] | 58 | |
| 59 | // EnableLivenessChannel mocks the EnableLivenessChannel function |
| 60 | func (me *MockEventProxy) EnableLivenessChannel(ctx context.Context, enable bool) chan bool { |
| 61 | return nil |
| 62 | } |
| 63 | |
| 64 | // SendLiveness mocks the SendLiveness function |
| 65 | func (me *MockEventProxy) SendLiveness(ctx context.Context) error { |
| 66 | return nil |
| 67 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 68 | |
| 69 | // Start starts the proxy |
| 70 | func (me *MockEventProxy) Start() error { |
| 71 | return nil |
| 72 | } |
| 73 | |
| 74 | // Stop stops the proxy |
| 75 | func (me *MockEventProxy) Stop() { |
| 76 | } |
kesavand | 0ef592c | 2022-03-16 12:34:24 +0530 | [diff] [blame] | 77 | |
Joey Armstrong | 3f0e242 | 2023-07-05 18:25:41 -0400 | [diff] [blame] | 78 | // SendDeviceEventWithKey mocks SendDeviceEventWithKey |
kesavand | 0ef592c | 2022-03-16 12:34:24 +0530 | [diff] [blame] | 79 | func (me *MockEventProxy) SendDeviceEventWithKey(ctx context.Context, deviceEvent *voltha.DeviceEvent, category eventif.EventCategory, |
| 80 | subCategory eventif.EventSubCategory, raisedTs int64, key string) error { |
| 81 | return nil |
| 82 | } |