blob: 817e6757629181625dc07f0543deec83e3403db2 [file] [log] [blame]
kdarapu381c6902019-07-31 18:23:16 +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 (
21 "context"
22 "errors"
23
24 "github.com/golang/protobuf/proto"
Esin Karamanccb714b2019-11-29 15:02:06 +000025 "github.com/opencord/voltha-protos/v3/go/inter_container"
kdarapu381c6902019-07-31 18:23:16 +053026)
27
28// MockAdapterProxy mocks the AdapterProxy interface.
29type MockAdapterProxy struct {
30}
31
32// SendInterAdapterMessage mocks SendInterAdapterMessage function.
33func (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 {
kdarapu891693b2019-09-16 12:33:49 +053041 if toDeviceID == "" {
42 return errors.New("no deviceid")
kdarapu381c6902019-07-31 18:23:16 +053043 }
44 return nil
45}