blob: fe6310b6fe2584bbaf20b4bb963cf236bea8d631 [file] [log] [blame]
kdarapu3248f9a2019-10-03 13:54:52 +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 (
npujarec5762e2020-01-01 14:08:48 +053021 "context"
kdarapu3248f9a2019-10-03 13:54:52 +053022 "encoding/json"
23 "errors"
24 "strconv"
25 "strings"
npujarec5762e2020-01-01 14:08:48 +053026 "time"
kdarapu3248f9a2019-10-03 13:54:52 +053027
Esin Karamanccb714b2019-11-29 15:02:06 +000028 "github.com/opencord/voltha-lib-go/v3/pkg/log"
Scott Bakerdbd960e2020-02-28 08:57:51 -080029 "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager"
kdarapub26b4502019-10-05 03:02:33 +053030
Esin Karamanccb714b2019-11-29 15:02:06 +000031 "github.com/opencord/voltha-lib-go/v3/pkg/db/kvstore"
32 ofp "github.com/opencord/voltha-protos/v3/go/openflow_13"
33 openolt "github.com/opencord/voltha-protos/v3/go/openolt"
kdarapu3248f9a2019-10-03 13:54:52 +053034)
35
36const (
37 // MeterConfig meter to extarct meter
38 MeterConfig = "meter_id"
39 // TpIDPathSuffix to extract Techprofile
40 TpIDPathSuffix = "tp_id"
kdarapub26b4502019-10-05 03:02:33 +053041 // 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 Karamanccb714b2019-11-29 15:02:06 +000051 //FlowGroup flow_groups/<flow_group_id>
52 FlowGroup = "flow_groups"
53 //FlowGroupCached flow_groups_cached/<flow_group_id>
54 FlowGroupCached = "flow_groups_cached"
kdarapu3248f9a2019-10-03 13:54:52 +053055)
56
57// MockKVClient mocks the AdapterProxy interface.
58type MockKVClient struct {
59}
60
61// List mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +053062func (kvclient *MockKVClient) List(ctx context.Context, key string) (map[string]*kvstore.KVPair, error) {
kdarapu3248f9a2019-10-03 13:54:52 +053063 if key != "" {
64 maps := make(map[string]*kvstore.KVPair)
65 maps[key] = &kvstore.KVPair{Key: key}
66 return maps, nil
67 }
68 return nil, errors.New("key didn't find")
69}
70
71// Get mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +053072func (kvclient *MockKVClient) Get(ctx context.Context, key string) (*kvstore.KVPair, error) {
Neha Sharma96b7bf22020-06-15 10:37:32 +000073 logger.Debugw(ctx, "Warning Warning Warning: Get of MockKVClient called", log.Fields{"key": key})
kdarapu3248f9a2019-10-03 13:54:52 +053074 if key != "" {
Neha Sharma96b7bf22020-06-15 10:37:32 +000075 logger.Debug(ctx, "Warning Key Not Blank")
kdarapub26b4502019-10-05 03:02:33 +053076 if strings.Contains(key, "meter_id/{0,62,8}/{upstream}") {
77 meterConfig := ofp.OfpMeterConfig{
78 Flags: 0,
79 MeterId: 1,
80 }
81 str, _ := json.Marshal(meterConfig)
82 return kvstore.NewKVPair(key, string(str), "mock", 3000, 1), nil
83 }
kdarapu3248f9a2019-10-03 13:54:52 +053084 if strings.Contains(key, MeterConfig) {
85 var bands []*ofp.OfpMeterBandHeader
86 bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK,
87 Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 2}}})
88
89 bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK,
90 Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 3}}})
91
Gamze Abakafee36392019-10-03 11:17:24 +000092 sep := strings.Split(key, "/")[1]
kdarapu3248f9a2019-10-03 13:54:52 +053093 val, _ := strconv.ParseInt(strings.Split(sep, ",")[1], 10, 32)
94 if uint32(val) > 1 {
95 meterConfig := &ofp.OfpMeterConfig{MeterId: uint32(val), Bands: bands}
96 str, _ := json.Marshal(meterConfig)
kdarapub26b4502019-10-05 03:02:33 +053097
98 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
99 }
100
101 if strings.Contains(key, "meter_id/{1,1,1}/{downstream}") {
102
103 band1 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 1000, BurstSize: 5000}
104 band2 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 2000, BurstSize: 5000}
105 bands := []*ofp.OfpMeterBandHeader{band1, band2}
106 ofpMeterConfig := &ofp.OfpMeterConfig{Flags: 1, MeterId: 1, Bands: bands}
107 str, _ := json.Marshal(ofpMeterConfig)
108 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
kdarapu3248f9a2019-10-03 13:54:52 +0530109 }
110 if uint32(val) == 1 {
111 return nil, nil
112 }
113 return nil, errors.New("invalid meter")
114 }
115 if strings.Contains(key, TpIDPathSuffix) {
kdarapub26b4502019-10-05 03:02:33 +0530116 str, _ := json.Marshal(64)
117 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
118 }
119 if strings.Contains(key, FlowIDpool) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000120 logger.Debug(ctx, "Error Error Error Key:", FlowIDpool)
kdarapub26b4502019-10-05 03:02:33 +0530121 data := make(map[string]interface{})
122 data["pool"] = "1024"
123 data["start_idx"] = 1
124 data["end_idx"] = 1024
125 str, _ := json.Marshal(data)
126 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
127 }
128 if strings.Contains(key, FlowIDs) {
129 data := []uint32{1, 2}
Neha Sharma96b7bf22020-06-15 10:37:32 +0000130 logger.Debug(ctx, "Error Error Error Key:", FlowIDs)
kdarapub26b4502019-10-05 03:02:33 +0530131 str, _ := json.Marshal(data)
132 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
133 }
Esin Karamand519bbf2020-07-01 11:16:03 +0000134 if strings.Contains(key, "/{olt}/{0,-1,-1}/flow_id_info/") {
135 //multicast flow
136 data := []resourcemanager.FlowInfo{
137 {
138 Flow: &openolt.Flow{FlowId: 1, OnuId: 0, UniId: 0, GemportId: 4000},
139 FlowStoreCookie: uint64(48132224281636694),
140 LogicalFlowID: 3961977515762683568,
141 },
142 }
143 logger.Debug(ctx, "Error Error Error Key:", FlowIDs)
144 str, _ := json.Marshal(data)
145 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
146 }
147
kdarapub26b4502019-10-05 03:02:33 +0530148 if strings.Contains(key, FlowIDInfo) {
149
150 data := []resourcemanager.FlowInfo{
151 {
152 Flow: &openolt.Flow{FlowId: 1, OnuId: 1, UniId: 1, GemportId: 1},
153 FlowStoreCookie: uint64(48132224281636694),
Esin Karamanccb714b2019-11-29 15:02:06 +0000154 LogicalFlowID: 1,
kdarapub26b4502019-10-05 03:02:33 +0530155 },
156 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000157 logger.Debug(ctx, "Error Error Error Key:", FlowIDs)
kdarapub26b4502019-10-05 03:02:33 +0530158 str, _ := json.Marshal(data)
159 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
160 }
161 if strings.Contains(key, GemportIDs) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000162 logger.Debug(ctx, "Error Error Error Key:", GemportIDs)
kdarapub26b4502019-10-05 03:02:33 +0530163 str, _ := json.Marshal(1)
164 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
165 }
166 if strings.Contains(key, AllocIDs) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000167 logger.Debug(ctx, "Error Error Error Key:", AllocIDs)
kdarapu3248f9a2019-10-03 13:54:52 +0530168 str, _ := json.Marshal(1)
169 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
170 }
Esin Karamanccb714b2019-11-29 15:02:06 +0000171 if strings.Contains(key, FlowGroup) || strings.Contains(key, FlowGroupCached) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000172 logger.Debug(ctx, "Error Error Error Key:", FlowGroup)
Esin Karamanccb714b2019-11-29 15:02:06 +0000173 groupInfo := resourcemanager.GroupInfo{
174 GroupID: 2,
175 OutPorts: []uint32{1},
176 }
177 str, _ := json.Marshal(&groupInfo)
178 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
179 }
180
kdarapu3248f9a2019-10-03 13:54:52 +0530181 maps := make(map[string]*kvstore.KVPair)
182 maps[key] = &kvstore.KVPair{Key: key}
183 return maps[key], nil
184 }
185 return nil, errors.New("key didn't find")
186}
187
188// Put mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530189func (kvclient *MockKVClient) Put(ctx context.Context, key string, value interface{}) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530190 if key != "" {
191
192 return nil
193 }
194 return errors.New("key didn't find")
195}
196
197// Delete mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530198func (kvclient *MockKVClient) Delete(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530199 if key == "" {
200 return errors.New("key didn't find")
201 }
202 return nil
203}
204
205// Reserve mock function implementation for KVClient
Neha Sharmacc656962020-04-14 14:26:11 +0000206func (kvclient *MockKVClient) Reserve(ctx context.Context, key string, value interface{}, ttl time.Duration) (interface{}, error) {
kdarapu3248f9a2019-10-03 13:54:52 +0530207 if key != "" {
208 maps := make(map[string]*kvstore.KVPair)
209 maps[key] = &kvstore.KVPair{Key: key}
210 return maps[key], nil
211 }
212 return nil, errors.New("key didn't find")
213}
214
215// ReleaseReservation mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530216func (kvclient *MockKVClient) ReleaseReservation(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530217 // return nil
218 if key == "" {
219 return errors.New("key didn't find")
220 }
221 return nil
222}
223
224// ReleaseAllReservations mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530225func (kvclient *MockKVClient) ReleaseAllReservations(ctx context.Context) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530226 return nil
227}
228
229// RenewReservation mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530230func (kvclient *MockKVClient) RenewReservation(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530231 // return nil
232 if key == "" {
233 return errors.New("key didn't find")
234 }
235 return nil
236}
237
238// Watch mock function implementation for KVClient
Scott Bakere701b862020-02-20 16:19:16 -0800239func (kvclient *MockKVClient) Watch(ctx context.Context, key string, withPrefix bool) chan *kvstore.Event {
kdarapu3248f9a2019-10-03 13:54:52 +0530240 return nil
241 // if key == "" {
242 // return nil
243 // }
244 // return &kvstore.Event{EventType: 1, Key: key}
245}
246
247// AcquireLock mock function implementation for KVClient
Neha Sharmacc656962020-04-14 14:26:11 +0000248func (kvclient *MockKVClient) AcquireLock(ctx context.Context, lockName string, timeout time.Duration) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530249 return nil
250}
251
252// ReleaseLock mock function implementation for KVClient
253func (kvclient *MockKVClient) ReleaseLock(lockName string) error {
254 return nil
255}
256
257// IsConnectionUp mock function implementation for KVClient
Matteo Scandolo945e4012019-12-12 14:16:11 -0800258func (kvclient *MockKVClient) IsConnectionUp(ctx context.Context) bool {
259 // timeout in second
npujarec5762e2020-01-01 14:08:48 +0530260 t, _ := ctx.Deadline()
261 if t.Second()-time.Now().Second() < 1 {
kdarapu3248f9a2019-10-03 13:54:52 +0530262 return false
263 }
264 return true
265}
266
267// CloseWatch mock function implementation for KVClient
Neha Sharma96b7bf22020-06-15 10:37:32 +0000268func (kvclient *MockKVClient) CloseWatch(ctx context.Context, key string, ch chan *kvstore.Event) {
kdarapu3248f9a2019-10-03 13:54:52 +0530269}
270
271// Close mock function implementation for KVClient
Neha Sharma96b7bf22020-06-15 10:37:32 +0000272func (kvclient *MockKVClient) Close(ctx context.Context) {
kdarapu3248f9a2019-10-03 13:54:52 +0530273}