kdarapu | 3248f9a | 2019-10-03 13:54:52 +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" |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 22 | "encoding/json" |
| 23 | "errors" |
| 24 | "strconv" |
| 25 | "strings" |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 26 | "time" |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 27 | |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 28 | "github.com/opencord/voltha-lib-go/v4/pkg/log" |
Scott Baker | dbd960e | 2020-02-28 08:57:51 -0800 | [diff] [blame] | 29 | "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager" |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 30 | |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 31 | "github.com/opencord/voltha-lib-go/v4/pkg/db/kvstore" |
| 32 | ofp "github.com/opencord/voltha-protos/v4/go/openflow_13" |
| 33 | openolt "github.com/opencord/voltha-protos/v4/go/openolt" |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 34 | ) |
| 35 | |
| 36 | const ( |
| 37 | // MeterConfig meter to extarct meter |
| 38 | MeterConfig = "meter_id" |
| 39 | // TpIDPathSuffix to extract Techprofile |
| 40 | TpIDPathSuffix = "tp_id" |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 41 | // FlowIDpool to extract Flow ids |
| 42 | FlowIDpool = "flow_id_pool" |
| 43 | // FlowIDs to extract flow_ids |
| 44 | FlowIDs = "flow_ids" |
| 45 | // FlowIDInfo to extract flowId info |
| 46 | FlowIDInfo = "flow_id_info" |
| 47 | // GemportIDs to gemport_ids |
| 48 | GemportIDs = "gemport_ids" |
| 49 | // AllocIDs to extract alloc_ids |
| 50 | AllocIDs = "alloc_ids" |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 51 | //FlowGroup flow_groups/<flow_group_id> |
| 52 | FlowGroup = "flow_groups" |
| 53 | //FlowGroupCached flow_groups_cached/<flow_group_id> |
| 54 | FlowGroupCached = "flow_groups_cached" |
Esin Karaman | 7fb80c2 | 2020-07-16 14:23:33 +0000 | [diff] [blame] | 55 | //OnuPacketIn to extract gem port from packet-in |
| 56 | OnuPacketIn = "onu_packetin" |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 57 | ) |
| 58 | |
| 59 | // MockKVClient mocks the AdapterProxy interface. |
| 60 | type MockKVClient struct { |
| 61 | } |
| 62 | |
| 63 | // List mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 64 | func (kvclient *MockKVClient) List(ctx context.Context, key string) (map[string]*kvstore.KVPair, error) { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 65 | if key != "" { |
| 66 | maps := make(map[string]*kvstore.KVPair) |
| 67 | maps[key] = &kvstore.KVPair{Key: key} |
| 68 | return maps, nil |
| 69 | } |
| 70 | return nil, errors.New("key didn't find") |
| 71 | } |
| 72 | |
| 73 | // Get mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 74 | func (kvclient *MockKVClient) Get(ctx context.Context, key string) (*kvstore.KVPair, error) { |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 75 | logger.Debugw(ctx, "Get of MockKVClient called", log.Fields{"key": key}) |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 76 | if key != "" { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 77 | if strings.Contains(key, "meter_id/{0,62,8}/{upstream}") { |
| 78 | meterConfig := ofp.OfpMeterConfig{ |
| 79 | Flags: 0, |
| 80 | MeterId: 1, |
| 81 | } |
| 82 | str, _ := json.Marshal(meterConfig) |
| 83 | return kvstore.NewKVPair(key, string(str), "mock", 3000, 1), nil |
| 84 | } |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 85 | if strings.Contains(key, MeterConfig) { |
| 86 | var bands []*ofp.OfpMeterBandHeader |
| 87 | bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK, |
| 88 | Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 2}}}) |
| 89 | |
| 90 | bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK, |
| 91 | Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 3}}}) |
| 92 | |
Gamze Abaka | fee3639 | 2019-10-03 11:17:24 +0000 | [diff] [blame] | 93 | sep := strings.Split(key, "/")[1] |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 94 | val, _ := strconv.ParseInt(strings.Split(sep, ",")[1], 10, 32) |
| 95 | if uint32(val) > 1 { |
| 96 | meterConfig := &ofp.OfpMeterConfig{MeterId: uint32(val), Bands: bands} |
| 97 | str, _ := json.Marshal(meterConfig) |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 98 | |
| 99 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 100 | } |
| 101 | |
| 102 | if strings.Contains(key, "meter_id/{1,1,1}/{downstream}") { |
| 103 | |
| 104 | band1 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 1000, BurstSize: 5000} |
| 105 | band2 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 2000, BurstSize: 5000} |
| 106 | bands := []*ofp.OfpMeterBandHeader{band1, band2} |
| 107 | ofpMeterConfig := &ofp.OfpMeterConfig{Flags: 1, MeterId: 1, Bands: bands} |
| 108 | str, _ := json.Marshal(ofpMeterConfig) |
| 109 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 110 | } |
| 111 | if uint32(val) == 1 { |
| 112 | return nil, nil |
| 113 | } |
| 114 | return nil, errors.New("invalid meter") |
| 115 | } |
| 116 | if strings.Contains(key, TpIDPathSuffix) { |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 117 | str, _ := json.Marshal(64) |
| 118 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 119 | } |
| 120 | if strings.Contains(key, FlowIDpool) { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 121 | logger.Debug(ctx, "Error Error Error Key:", FlowIDpool) |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 122 | data := make(map[string]interface{}) |
| 123 | data["pool"] = "1024" |
| 124 | data["start_idx"] = 1 |
| 125 | data["end_idx"] = 1024 |
| 126 | str, _ := json.Marshal(data) |
| 127 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 128 | } |
| 129 | if strings.Contains(key, FlowIDs) { |
| 130 | data := []uint32{1, 2} |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 131 | logger.Debug(ctx, "Error Error Error Key:", FlowIDs) |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 132 | str, _ := json.Marshal(data) |
| 133 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 134 | } |
Esin Karaman | d519bbf | 2020-07-01 11:16:03 +0000 | [diff] [blame] | 135 | if strings.Contains(key, "/{olt}/{0,-1,-1}/flow_id_info/") { |
| 136 | //multicast flow |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 137 | data := resourcemanager.FlowInfo{ |
| 138 | Flow: &openolt.Flow{FlowId: 1, OnuId: 0, UniId: 0, GemportId: 4000}, |
Esin Karaman | d519bbf | 2020-07-01 11:16:03 +0000 | [diff] [blame] | 139 | } |
| 140 | logger.Debug(ctx, "Error Error Error Key:", FlowIDs) |
| 141 | str, _ := json.Marshal(data) |
| 142 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 143 | } |
| 144 | |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 145 | if strings.Contains(key, FlowIDInfo) { |
Girish Gowdra | a09aeab | 2020-09-14 16:30:52 -0700 | [diff] [blame] | 146 | data := resourcemanager.FlowInfo{ |
| 147 | Flow: &openolt.Flow{FlowId: 1, OnuId: 1, UniId: 1, GemportId: 1}, |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 148 | } |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 149 | logger.Debug(ctx, "Error Error Error Key:", FlowIDs) |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 150 | str, _ := json.Marshal(data) |
| 151 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 152 | } |
| 153 | if strings.Contains(key, GemportIDs) { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 154 | logger.Debug(ctx, "Error Error Error Key:", GemportIDs) |
kdarapu | b26b450 | 2019-10-05 03:02:33 +0530 | [diff] [blame] | 155 | str, _ := json.Marshal(1) |
| 156 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 157 | } |
| 158 | if strings.Contains(key, AllocIDs) { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 159 | logger.Debug(ctx, "Error Error Error Key:", AllocIDs) |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 160 | str, _ := json.Marshal(1) |
| 161 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 162 | } |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 163 | if strings.Contains(key, FlowGroup) || strings.Contains(key, FlowGroupCached) { |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 164 | logger.Debug(ctx, "Error Error Error Key:", FlowGroup) |
Esin Karaman | ccb714b | 2019-11-29 15:02:06 +0000 | [diff] [blame] | 165 | groupInfo := resourcemanager.GroupInfo{ |
| 166 | GroupID: 2, |
| 167 | OutPorts: []uint32{1}, |
| 168 | } |
| 169 | str, _ := json.Marshal(&groupInfo) |
| 170 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 171 | } |
| 172 | |
Esin Karaman | 7fb80c2 | 2020-07-16 14:23:33 +0000 | [diff] [blame] | 173 | if strings.Contains(key, OnuPacketIn) { |
| 174 | return getPacketInGemPort(key) |
| 175 | } |
| 176 | |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 177 | maps := make(map[string]*kvstore.KVPair) |
| 178 | maps[key] = &kvstore.KVPair{Key: key} |
| 179 | return maps[key], nil |
| 180 | } |
| 181 | return nil, errors.New("key didn't find") |
| 182 | } |
| 183 | |
Esin Karaman | 7fb80c2 | 2020-07-16 14:23:33 +0000 | [diff] [blame] | 184 | //getPacketInGemPort returns the GEM port associated with the given key |
| 185 | func getPacketInGemPort(key string) (*kvstore.KVPair, error) { |
| 186 | //parse interface, onu, uni, vlan, priority values |
| 187 | arr := getParamsFromPacketInKey(key) |
| 188 | |
| 189 | if len(arr) < 5 { |
| 190 | return nil, errors.New("key didn't find") |
| 191 | } |
| 192 | if arr[0] == "1" && arr[1] == "1" && arr[2] == "3" && arr[3] == "0" && arr[4] == "0" { |
| 193 | str, _ := json.Marshal(3) |
| 194 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 195 | } |
| 196 | if arr[0] == "2" && arr[1] == "2" && arr[2] == "4" && arr[3] == "549" && arr[4] == "0" { |
| 197 | str, _ := json.Marshal(4) |
| 198 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 199 | } |
| 200 | if arr[0] == "1" && arr[1] == "2" && arr[2] == "2" && arr[3] == "48" && arr[4] == "7" { |
| 201 | str, _ := json.Marshal(2) |
| 202 | return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil |
| 203 | } |
| 204 | return nil, errors.New("key didn't find") |
| 205 | } |
| 206 | |
| 207 | //getParamsFromPacketInKey parse packetIn key that is in the format of "onu_packetin/{1,1,1,1,2}" |
| 208 | func getParamsFromPacketInKey(key string) []string { |
| 209 | //return intfID, onuID, uniID, vlanID, priority |
| 210 | firstIndex := strings.Index(key, "{") |
| 211 | lastIndex := strings.Index(key, "}") |
| 212 | if firstIndex == -1 && lastIndex == -1 { |
| 213 | return []string{} |
| 214 | } |
| 215 | arr := strings.Split(key[firstIndex+1:lastIndex], ",") |
| 216 | if len(arr) < 5 { |
| 217 | return []string{} |
| 218 | } |
| 219 | return arr |
| 220 | } |
| 221 | |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 222 | // Put mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 223 | func (kvclient *MockKVClient) Put(ctx context.Context, key string, value interface{}) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 224 | if key != "" { |
| 225 | |
| 226 | return nil |
| 227 | } |
| 228 | return errors.New("key didn't find") |
| 229 | } |
| 230 | |
| 231 | // Delete mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 232 | func (kvclient *MockKVClient) Delete(ctx context.Context, key string) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 233 | if key == "" { |
| 234 | return errors.New("key didn't find") |
| 235 | } |
| 236 | return nil |
| 237 | } |
| 238 | |
| 239 | // Reserve mock function implementation for KVClient |
Neha Sharma | cc65696 | 2020-04-14 14:26:11 +0000 | [diff] [blame] | 240 | func (kvclient *MockKVClient) Reserve(ctx context.Context, key string, value interface{}, ttl time.Duration) (interface{}, error) { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 241 | if key != "" { |
| 242 | maps := make(map[string]*kvstore.KVPair) |
| 243 | maps[key] = &kvstore.KVPair{Key: key} |
| 244 | return maps[key], nil |
| 245 | } |
| 246 | return nil, errors.New("key didn't find") |
| 247 | } |
| 248 | |
| 249 | // ReleaseReservation mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 250 | func (kvclient *MockKVClient) ReleaseReservation(ctx context.Context, key string) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 251 | // return nil |
| 252 | if key == "" { |
| 253 | return errors.New("key didn't find") |
| 254 | } |
| 255 | return nil |
| 256 | } |
| 257 | |
| 258 | // ReleaseAllReservations mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 259 | func (kvclient *MockKVClient) ReleaseAllReservations(ctx context.Context) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 260 | return nil |
| 261 | } |
| 262 | |
| 263 | // RenewReservation mock function implementation for KVClient |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 264 | func (kvclient *MockKVClient) RenewReservation(ctx context.Context, key string) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 265 | // return nil |
| 266 | if key == "" { |
| 267 | return errors.New("key didn't find") |
| 268 | } |
| 269 | return nil |
| 270 | } |
| 271 | |
| 272 | // Watch mock function implementation for KVClient |
Scott Baker | e701b86 | 2020-02-20 16:19:16 -0800 | [diff] [blame] | 273 | func (kvclient *MockKVClient) Watch(ctx context.Context, key string, withPrefix bool) chan *kvstore.Event { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 274 | return nil |
| 275 | // if key == "" { |
| 276 | // return nil |
| 277 | // } |
| 278 | // return &kvstore.Event{EventType: 1, Key: key} |
| 279 | } |
| 280 | |
| 281 | // AcquireLock mock function implementation for KVClient |
Neha Sharma | cc65696 | 2020-04-14 14:26:11 +0000 | [diff] [blame] | 282 | func (kvclient *MockKVClient) AcquireLock(ctx context.Context, lockName string, timeout time.Duration) error { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 283 | return nil |
| 284 | } |
| 285 | |
| 286 | // ReleaseLock mock function implementation for KVClient |
| 287 | func (kvclient *MockKVClient) ReleaseLock(lockName string) error { |
| 288 | return nil |
| 289 | } |
| 290 | |
| 291 | // IsConnectionUp mock function implementation for KVClient |
Matteo Scandolo | 945e401 | 2019-12-12 14:16:11 -0800 | [diff] [blame] | 292 | func (kvclient *MockKVClient) IsConnectionUp(ctx context.Context) bool { |
| 293 | // timeout in second |
npujar | ec5762e | 2020-01-01 14:08:48 +0530 | [diff] [blame] | 294 | t, _ := ctx.Deadline() |
Kent Hagerman | e6ff101 | 2020-07-14 15:07:53 -0400 | [diff] [blame] | 295 | return t.Second()-time.Now().Second() >= 1 |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | // CloseWatch mock function implementation for KVClient |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 299 | func (kvclient *MockKVClient) CloseWatch(ctx context.Context, key string, ch chan *kvstore.Event) { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | // Close mock function implementation for KVClient |
Neha Sharma | 96b7bf2 | 2020-06-15 10:37:32 +0000 | [diff] [blame] | 303 | func (kvclient *MockKVClient) Close(ctx context.Context) { |
kdarapu | 3248f9a | 2019-10-03 13:54:52 +0530 | [diff] [blame] | 304 | } |