blob: a91d361cfb594eb94adf3e58fd79c425ca83e480 [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"
25 "github.com/opencord/voltha-protos/go/inter_container"
26)
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 {
41 //panic("implement me")
42 if ctx == nil || msg == nil || fromAdapter != "" ||
43 toAdapter != "" || toDeviceID != "" || proxyDeviceID != "" || messageID != "" {
44 return errors.New("sendInterAdapterMessage func parameters cannot be nil")
45 }
46 return nil
47}