kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 1 | /* |
| 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. |
| 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 | |
| 24 | "github.com/opencord/voltha-protos/v5/go/voltha" |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 25 | ) |
| 26 | |
| 27 | // MockEventProxy for mocking EventProxyIntf |
| 28 | type MockEventProxy struct { |
| 29 | } |
| 30 | |
| 31 | // SendDeviceEvent mocks the SendDeviceEvent function |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 32 | 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] | 33 | subCategory voltha.EventSubCategory_Types, raisedTs int64) error { |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 34 | if raisedTs == 0 { |
| 35 | return errors.New("raisedTS cannot be zero") |
| 36 | } |
| 37 | return nil |
| 38 | } |
Naga Manjunath | 7615e55 | 2019-10-11 22:35:47 +0530 | [diff] [blame] | 39 | |
| 40 | // SendKpiEvent mocks the SendKpiEvent function |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 41 | 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] | 42 | subCategory voltha.EventSubCategory_Types, raisedTs int64) error { |
Naga Manjunath | 7615e55 | 2019-10-11 22:35:47 +0530 | [diff] [blame] | 43 | if raisedTs == 0 { |
| 44 | return errors.New("raisedTS cannot be zero") |
| 45 | } |
| 46 | return nil |
| 47 | } |
Himani Chawla | cd40780 | 2020-12-10 12:08:59 +0530 | [diff] [blame] | 48 | |
| 49 | // SendRPCEvent mocks the SendRPCEvent function |
| 50 | func (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 Abaka | 7650be6 | 2021-02-26 10:50:36 +0000 | [diff] [blame] | 57 | |
| 58 | // EnableLivenessChannel mocks the EnableLivenessChannel function |
| 59 | func (me *MockEventProxy) EnableLivenessChannel(ctx context.Context, enable bool) chan bool { |
| 60 | return nil |
| 61 | } |
| 62 | |
| 63 | // SendLiveness mocks the SendLiveness function |
| 64 | func (me *MockEventProxy) SendLiveness(ctx context.Context) error { |
| 65 | return nil |
| 66 | } |
khenaidoo | 106c61a | 2021-08-11 18:05:46 -0400 | [diff] [blame] | 67 | |
| 68 | // Start starts the proxy |
| 69 | func (me *MockEventProxy) Start() error { |
| 70 | return nil |
| 71 | } |
| 72 | |
| 73 | // Stop stops the proxy |
| 74 | func (me *MockEventProxy) Stop() { |
| 75 | } |