blob: 70cd4faa0e4b55bd469beb76c0014fb3288eb7be [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"
Esin Karaman04166c82020-07-16 14:23:33 +000055 //OnuPacketIn to extract gem port from packet-in
56 OnuPacketIn = "onu_packetin"
kdarapu3248f9a2019-10-03 13:54:52 +053057)
58
59// MockKVClient mocks the AdapterProxy interface.
60type MockKVClient struct {
61}
62
63// List mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +053064func (kvclient *MockKVClient) List(ctx context.Context, key string) (map[string]*kvstore.KVPair, error) {
kdarapu3248f9a2019-10-03 13:54:52 +053065 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
npujarec5762e2020-01-01 14:08:48 +053074func (kvclient *MockKVClient) Get(ctx context.Context, key string) (*kvstore.KVPair, error) {
Girish Kumar2ad402b2020-03-20 19:45:12 +000075 logger.Debugw("Warning Warning Warning: Get of MockKVClient called", log.Fields{"key": key})
kdarapu3248f9a2019-10-03 13:54:52 +053076 if key != "" {
Girish Kumar2ad402b2020-03-20 19:45:12 +000077 logger.Debug("Warning Key Not Blank")
kdarapub26b4502019-10-05 03:02:33 +053078 if strings.Contains(key, "meter_id/{0,62,8}/{upstream}") {
79 meterConfig := ofp.OfpMeterConfig{
80 Flags: 0,
81 MeterId: 1,
82 }
83 str, _ := json.Marshal(meterConfig)
84 return kvstore.NewKVPair(key, string(str), "mock", 3000, 1), nil
85 }
kdarapu3248f9a2019-10-03 13:54:52 +053086 if strings.Contains(key, MeterConfig) {
87 var bands []*ofp.OfpMeterBandHeader
88 bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK,
89 Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 2}}})
90
91 bands = append(bands, &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DSCP_REMARK,
92 Rate: 1024, Data: &ofp.OfpMeterBandHeader_DscpRemark{DscpRemark: &ofp.OfpMeterBandDscpRemark{PrecLevel: 3}}})
93
Gamze Abakafee36392019-10-03 11:17:24 +000094 sep := strings.Split(key, "/")[1]
kdarapu3248f9a2019-10-03 13:54:52 +053095 val, _ := strconv.ParseInt(strings.Split(sep, ",")[1], 10, 32)
96 if uint32(val) > 1 {
97 meterConfig := &ofp.OfpMeterConfig{MeterId: uint32(val), Bands: bands}
98 str, _ := json.Marshal(meterConfig)
kdarapub26b4502019-10-05 03:02:33 +053099
100 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
101 }
102
103 if strings.Contains(key, "meter_id/{1,1,1}/{downstream}") {
104
105 band1 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 1000, BurstSize: 5000}
106 band2 := &ofp.OfpMeterBandHeader{Type: ofp.OfpMeterBandType_OFPMBT_DROP, Rate: 2000, BurstSize: 5000}
107 bands := []*ofp.OfpMeterBandHeader{band1, band2}
108 ofpMeterConfig := &ofp.OfpMeterConfig{Flags: 1, MeterId: 1, Bands: bands}
109 str, _ := json.Marshal(ofpMeterConfig)
110 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
kdarapu3248f9a2019-10-03 13:54:52 +0530111 }
112 if uint32(val) == 1 {
113 return nil, nil
114 }
115 return nil, errors.New("invalid meter")
116 }
117 if strings.Contains(key, TpIDPathSuffix) {
kdarapub26b4502019-10-05 03:02:33 +0530118 str, _ := json.Marshal(64)
119 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
120 }
121 if strings.Contains(key, FlowIDpool) {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000122 logger.Debug("Error Error Error Key:", FlowIDpool)
kdarapub26b4502019-10-05 03:02:33 +0530123 data := make(map[string]interface{})
124 data["pool"] = "1024"
125 data["start_idx"] = 1
126 data["end_idx"] = 1024
127 str, _ := json.Marshal(data)
128 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
129 }
130 if strings.Contains(key, FlowIDs) {
131 data := []uint32{1, 2}
Girish Kumar2ad402b2020-03-20 19:45:12 +0000132 logger.Debug("Error Error Error Key:", FlowIDs)
kdarapub26b4502019-10-05 03:02:33 +0530133 str, _ := json.Marshal(data)
134 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
135 }
136 if strings.Contains(key, FlowIDInfo) {
137
138 data := []resourcemanager.FlowInfo{
139 {
140 Flow: &openolt.Flow{FlowId: 1, OnuId: 1, UniId: 1, GemportId: 1},
141 FlowStoreCookie: uint64(48132224281636694),
Esin Karamanccb714b2019-11-29 15:02:06 +0000142 LogicalFlowID: 1,
kdarapub26b4502019-10-05 03:02:33 +0530143 },
144 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000145 logger.Debug("Error Error Error Key:", FlowIDs)
kdarapub26b4502019-10-05 03:02:33 +0530146 str, _ := json.Marshal(data)
147 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
148 }
149 if strings.Contains(key, GemportIDs) {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000150 logger.Debug("Error Error Error Key:", GemportIDs)
kdarapub26b4502019-10-05 03:02:33 +0530151 str, _ := json.Marshal(1)
152 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
153 }
154 if strings.Contains(key, AllocIDs) {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000155 logger.Debug("Error Error Error Key:", AllocIDs)
kdarapu3248f9a2019-10-03 13:54:52 +0530156 str, _ := json.Marshal(1)
157 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
158 }
Esin Karamanccb714b2019-11-29 15:02:06 +0000159 if strings.Contains(key, FlowGroup) || strings.Contains(key, FlowGroupCached) {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000160 logger.Debug("Error Error Error Key:", FlowGroup)
Esin Karamanccb714b2019-11-29 15:02:06 +0000161 groupInfo := resourcemanager.GroupInfo{
162 GroupID: 2,
163 OutPorts: []uint32{1},
164 }
165 str, _ := json.Marshal(&groupInfo)
166 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
167 }
168
Esin Karaman04166c82020-07-16 14:23:33 +0000169 if strings.Contains(key, OnuPacketIn) {
170 return getPacketInGemPort(key)
171 }
172
kdarapu3248f9a2019-10-03 13:54:52 +0530173 maps := make(map[string]*kvstore.KVPair)
174 maps[key] = &kvstore.KVPair{Key: key}
175 return maps[key], nil
176 }
177 return nil, errors.New("key didn't find")
178}
179
Esin Karaman04166c82020-07-16 14:23:33 +0000180//getPacketInGemPort returns the GEM port associated with the given key
181func getPacketInGemPort(key string) (*kvstore.KVPair, error) {
182 //parse interface, onu, uni, vlan, priority values
183 arr := getParamsFromPacketInKey(key)
184
185 if len(arr) < 5 {
186 return nil, errors.New("key didn't find")
187 }
188 if arr[0] == "1" && arr[1] == "1" && arr[2] == "3" && arr[3] == "0" && arr[4] == "0" {
189 str, _ := json.Marshal(3)
190 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
191 }
192 if arr[0] == "2" && arr[1] == "2" && arr[2] == "4" && arr[3] == "549" && arr[4] == "0" {
193 str, _ := json.Marshal(4)
194 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
195 }
196 if arr[0] == "1" && arr[1] == "2" && arr[2] == "2" && arr[3] == "48" && arr[4] == "7" {
197 str, _ := json.Marshal(2)
198 return kvstore.NewKVPair(key, str, "mock", 3000, 1), nil
199 }
200 return nil, errors.New("key didn't find")
201}
202
203//getParamsFromPacketInKey parse packetIn key that is in the format of "onu_packetin/{1,1,1,1,2}"
204func getParamsFromPacketInKey(key string) []string {
205 //return intfID, onuID, uniID, vlanID, priority
206 firstIndex := strings.Index(key, "{")
207 lastIndex := strings.Index(key, "}")
208 if firstIndex == -1 && lastIndex == -1 {
209 return []string{}
210 }
211 arr := strings.Split(key[firstIndex+1:lastIndex], ",")
212 if len(arr) < 5 {
213 return []string{}
214 }
215 return arr
216}
217
kdarapu3248f9a2019-10-03 13:54:52 +0530218// Put mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530219func (kvclient *MockKVClient) Put(ctx context.Context, key string, value interface{}) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530220 if key != "" {
221
222 return nil
223 }
224 return errors.New("key didn't find")
225}
226
227// Delete mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530228func (kvclient *MockKVClient) Delete(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530229 if key == "" {
230 return errors.New("key didn't find")
231 }
232 return nil
233}
234
235// Reserve mock function implementation for KVClient
Neha Sharmacc656962020-04-14 14:26:11 +0000236func (kvclient *MockKVClient) Reserve(ctx context.Context, key string, value interface{}, ttl time.Duration) (interface{}, error) {
kdarapu3248f9a2019-10-03 13:54:52 +0530237 if key != "" {
238 maps := make(map[string]*kvstore.KVPair)
239 maps[key] = &kvstore.KVPair{Key: key}
240 return maps[key], nil
241 }
242 return nil, errors.New("key didn't find")
243}
244
245// ReleaseReservation mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530246func (kvclient *MockKVClient) ReleaseReservation(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530247 // return nil
248 if key == "" {
249 return errors.New("key didn't find")
250 }
251 return nil
252}
253
254// ReleaseAllReservations mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530255func (kvclient *MockKVClient) ReleaseAllReservations(ctx context.Context) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530256 return nil
257}
258
259// RenewReservation mock function implementation for KVClient
npujarec5762e2020-01-01 14:08:48 +0530260func (kvclient *MockKVClient) RenewReservation(ctx context.Context, key string) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530261 // return nil
262 if key == "" {
263 return errors.New("key didn't find")
264 }
265 return nil
266}
267
268// Watch mock function implementation for KVClient
Scott Bakere701b862020-02-20 16:19:16 -0800269func (kvclient *MockKVClient) Watch(ctx context.Context, key string, withPrefix bool) chan *kvstore.Event {
kdarapu3248f9a2019-10-03 13:54:52 +0530270 return nil
271 // if key == "" {
272 // return nil
273 // }
274 // return &kvstore.Event{EventType: 1, Key: key}
275}
276
277// AcquireLock mock function implementation for KVClient
Neha Sharmacc656962020-04-14 14:26:11 +0000278func (kvclient *MockKVClient) AcquireLock(ctx context.Context, lockName string, timeout time.Duration) error {
kdarapu3248f9a2019-10-03 13:54:52 +0530279 return nil
280}
281
282// ReleaseLock mock function implementation for KVClient
283func (kvclient *MockKVClient) ReleaseLock(lockName string) error {
284 return nil
285}
286
287// IsConnectionUp mock function implementation for KVClient
Matteo Scandolo945e4012019-12-12 14:16:11 -0800288func (kvclient *MockKVClient) IsConnectionUp(ctx context.Context) bool {
289 // timeout in second
npujarec5762e2020-01-01 14:08:48 +0530290 t, _ := ctx.Deadline()
291 if t.Second()-time.Now().Second() < 1 {
kdarapu3248f9a2019-10-03 13:54:52 +0530292 return false
293 }
294 return true
295}
296
297// CloseWatch mock function implementation for KVClient
298func (kvclient *MockKVClient) CloseWatch(key string, ch chan *kvstore.Event) {
299}
300
301// Close mock function implementation for KVClient
302func (kvclient *MockKVClient) Close() {
303}