kdarapu | b26b450 | 2019-10-05 03:02:33 +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 ( |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 21 | "context" |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 22 | |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 23 | "github.com/opencord/voltha-lib-go/v4/pkg/db" |
| 24 | tp "github.com/opencord/voltha-lib-go/v4/pkg/techprofile" |
| 25 | tp_pb "github.com/opencord/voltha-protos/v4/go/tech_profile" |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 26 | ) |
| 27 | |
| 28 | // MockTechProfile mock struct for OpenoltClient. |
| 29 | type MockTechProfile struct { |
| 30 | TpID uint32 |
| 31 | } |
| 32 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 33 | // SetKVClient to mock techprofile SetKVClient method |
Matteo Scandolo | d9d6f51 | 2020-11-24 13:57:53 -0800 | [diff] [blame] | 34 | func (m MockTechProfile) SetKVClient(ctx context.Context, pathPrefix string) *db.Backend { |
sbarbari | a8910ba | 2019-11-05 10:12:23 -0500 | [diff] [blame] | 35 | return &db.Backend{Client: &MockKVClient{}} |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 36 | } |
| 37 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 38 | // GetTechProfileInstanceKVPath to mock techprofile GetTechProfileInstanceKVPath method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 39 | func (m MockTechProfile) GetTechProfileInstanceKVPath(ctx context.Context, techProfiletblID uint32, uniPortName string) string { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 40 | return "" |
| 41 | |
| 42 | } |
| 43 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 44 | // GetTPInstanceFromKVStore to mock techprofile GetTPInstanceFromKVStore method |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 45 | func (m MockTechProfile) GetTPInstanceFromKVStore(ctx context.Context, techProfiletblID uint32, path string) (interface{}, error) { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 46 | logger.Debug(ctx, "Warning Warning Warning: GetTPInstanceFromKVStore") |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 47 | return nil, nil |
| 48 | |
| 49 | } |
| 50 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 51 | // CreateTechProfInstance to mock techprofile CreateTechProfInstance method |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 52 | func (m MockTechProfile) CreateTechProfInstance(ctx context.Context, techProfiletblID uint32, uniPortName string, intfID uint32) (interface{}, error) { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 53 | |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 54 | if techProfiletblID == 64 { |
| 55 | return &tp.TechProfile{ |
Girish Gowdra | fb3d610 | 2020-10-16 16:32:36 -0700 | [diff] [blame] | 56 | Name: "mock-tech-profile", |
| 57 | SubscriberIdentifier: "257", |
| 58 | ProfileType: "mock", |
| 59 | Version: 0, |
| 60 | NumGemPorts: 1, |
| 61 | UsScheduler: tp.IScheduler{ |
| 62 | AllocID: 1, |
| 63 | Direction: "upstream", |
| 64 | AdditionalBw: "None", |
| 65 | Priority: 0, |
| 66 | Weight: 0, |
| 67 | QSchedPolicy: "", |
| 68 | }, |
| 69 | DsScheduler: tp.IScheduler{ |
| 70 | AllocID: 1, |
| 71 | Direction: "downstream", |
| 72 | AdditionalBw: "None", |
| 73 | Priority: 0, |
| 74 | Weight: 0, |
| 75 | QSchedPolicy: "", |
| 76 | }, |
| 77 | UpstreamGemPortAttributeList: []tp.IGemPortAttribute{{ |
| 78 | GemportID: 1, |
| 79 | PbitMap: "0b11111111", |
| 80 | }, |
| 81 | }, |
| 82 | DownstreamGemPortAttributeList: []tp.IGemPortAttribute{{ |
| 83 | GemportID: 1, |
| 84 | PbitMap: "0b11111111", |
| 85 | }, |
| 86 | }, |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 87 | }, nil |
| 88 | } else if techProfiletblID == 65 { |
| 89 | return &tp.EponProfile{ |
| 90 | Name: "mock-epon-profile", |
| 91 | SubscriberIdentifier: "257", |
| 92 | ProfileType: "mock", |
| 93 | Version: 0, |
| 94 | NumGemPorts: 2, |
| 95 | UpstreamQueueAttributeList: nil, |
| 96 | DownstreamQueueAttributeList: nil, |
| 97 | }, nil |
| 98 | } else { |
| 99 | return nil, nil |
| 100 | } |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 101 | |
| 102 | } |
| 103 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 104 | // DeleteTechProfileInstance to mock techprofile DeleteTechProfileInstance method |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 105 | func (m MockTechProfile) DeleteTechProfileInstance(ctx context.Context, techProfiletblID uint32, uniPortName string) error { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 106 | return nil |
| 107 | } |
| 108 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 109 | // GetprotoBufParamValue to mock techprofile GetprotoBufParamValue method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 110 | func (m MockTechProfile) GetprotoBufParamValue(ctx context.Context, paramType string, paramKey string) int32 { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 111 | return 0 |
| 112 | |
| 113 | } |
| 114 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 115 | // GetUsScheduler to mock techprofile GetUsScheduler method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 116 | func (m MockTechProfile) GetUsScheduler(ctx context.Context, tpInstance *tp.TechProfile) (*tp_pb.SchedulerConfig, error) { |
Girish Kumar | 8f73fe0 | 2019-12-09 13:19:37 +0000 | [diff] [blame] | 117 | return &tp_pb.SchedulerConfig{}, nil |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 118 | |
| 119 | } |
| 120 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 121 | // GetDsScheduler to mock techprofile GetDsScheduler method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 122 | func (m MockTechProfile) GetDsScheduler(ctx context.Context, tpInstance *tp.TechProfile) (*tp_pb.SchedulerConfig, error) { |
Girish Kumar | 8f73fe0 | 2019-12-09 13:19:37 +0000 | [diff] [blame] | 123 | return &tp_pb.SchedulerConfig{}, nil |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 124 | } |
| 125 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 126 | // GetTrafficScheduler to mock techprofile GetTrafficScheduler method |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 127 | func (m MockTechProfile) GetTrafficScheduler(tpInstance *tp.TechProfile, SchedCfg *tp_pb.SchedulerConfig, |
| 128 | ShapingCfg *tp_pb.TrafficShapingInfo) *tp_pb.TrafficScheduler { |
| 129 | return &tp_pb.TrafficScheduler{} |
| 130 | |
| 131 | } |
| 132 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 133 | // GetTrafficQueues to mock techprofile GetTrafficQueues method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 134 | func (m MockTechProfile) GetTrafficQueues(ctx context.Context, tp *tp.TechProfile, Dir tp_pb.Direction) ([]*tp_pb.TrafficQueue, error) { |
Girish Kumar | 8f73fe0 | 2019-12-09 13:19:37 +0000 | [diff] [blame] | 135 | return []*tp_pb.TrafficQueue{{}}, nil |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 136 | } |
| 137 | |
Scott Baker | ee7c0a0 | 2020-01-07 11:12:26 -0800 | [diff] [blame] | 138 | // GetMulticastTrafficQueues to mock techprofile GetMulticastTrafficQueues method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 139 | func (m MockTechProfile) GetMulticastTrafficQueues(ctx context.Context, tp *tp.TechProfile) []*tp_pb.TrafficQueue { |
Scott Baker | ee7c0a0 | 2020-01-07 11:12:26 -0800 | [diff] [blame] | 140 | return []*tp_pb.TrafficQueue{{}} |
| 141 | } |
| 142 | |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 143 | // GetGemportIDForPbit to mock techprofile GetGemportIDForPbit method |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 144 | func (m MockTechProfile) GetGemportIDForPbit(ctx context.Context, tp interface{}, Dir tp_pb.Direction, pbit uint32) uint32 { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 145 | return 0 |
| 146 | } |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 147 | |
| 148 | // FindAllTpInstances to mock techprofile FindAllTpInstances method |
Takahiro Suzuki | 2ba0e0b | 2020-06-05 14:23:03 -0700 | [diff] [blame] | 149 | func (m MockTechProfile) FindAllTpInstances(ctx context.Context, techProfiletblID uint32, ponIntf uint32, onuID uint32) interface{} { |
Girish Gowdra | 5493426 | 2019-11-13 14:19:55 +0530 | [diff] [blame] | 150 | return []tp.TechProfile{} |
| 151 | } |