kdarapu | 381c690 | 2019-07-31 18:23:16 +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 ( |
| 21 | "context" |
| 22 | "errors" |
| 23 | |
| 24 | "github.com/golang/protobuf/proto" |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 25 | "github.com/opencord/voltha-protos/v3/go/inter_container" |
kdarapu | 381c690 | 2019-07-31 18:23:16 +0530 | [diff] [blame] | 26 | ) |
| 27 | |
| 28 | // MockAdapterProxy mocks the AdapterProxy interface. |
| 29 | type MockAdapterProxy struct { |
| 30 | } |
| 31 | |
| 32 | // SendInterAdapterMessage mocks SendInterAdapterMessage function. |
| 33 | func (ma *MockAdapterProxy) SendInterAdapterMessage(ctx context.Context, |
| 34 | msg proto.Message, |
| 35 | msgType inter_container.InterAdapterMessageType_Types, |
| 36 | fromAdapter string, |
| 37 | toAdapter string, |
| 38 | toDeviceID string, |
| 39 | proxyDeviceID string, |
| 40 | messageID string) error { |
kdarapu | 891693b | 2019-09-16 12:33:49 +0530 | [diff] [blame] | 41 | if toDeviceID == "" { |
| 42 | return errors.New("no deviceid") |
kdarapu | 381c690 | 2019-07-31 18:23:16 +0530 | [diff] [blame] | 43 | } |
| 44 | return nil |
| 45 | } |