blob: 1507f2f6cb4d58e50462ce103b42c7090e9eb1fd [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
Scott Bakerdbd960e2020-02-28 08:57:51 -080017//Package core provides the utility for olt devices, flows and statistics
18package core
kdarapu381c6902019-07-31 18:23:16 +053019
20import (
kdarapu891693b2019-09-16 12:33:49 +053021 "context"
kdarapu381c6902019-07-31 18:23:16 +053022 "net"
kdarapu891693b2019-09-16 12:33:49 +053023 "reflect"
Naga Manjunatha8dc9372019-10-31 23:01:18 +053024 "sync"
kdarapu381c6902019-07-31 18:23:16 +053025 "testing"
Naga Manjunath7615e552019-10-11 22:35:47 +053026 "time"
27
Esin Karamanccb714b2019-11-29 15:02:06 +000028 "github.com/opencord/voltha-lib-go/v3/pkg/pmmetrics"
kdarapu381c6902019-07-31 18:23:16 +053029
kdarapu891693b2019-09-16 12:33:49 +053030 "github.com/golang/protobuf/ptypes"
31 "github.com/golang/protobuf/ptypes/any"
Esin Karamanccb714b2019-11-29 15:02:06 +000032 "github.com/opencord/voltha-lib-go/v3/pkg/db"
33 fu "github.com/opencord/voltha-lib-go/v3/pkg/flows"
34 "github.com/opencord/voltha-lib-go/v3/pkg/log"
35 ponrmgr "github.com/opencord/voltha-lib-go/v3/pkg/ponresourcemanager"
Thomas Lee S94109f12020-03-03 16:39:29 +053036 "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
Scott Bakerdbd960e2020-02-28 08:57:51 -080037 "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager"
38 "github.com/opencord/voltha-openolt-adapter/pkg/mocks"
Esin Karamanccb714b2019-11-29 15:02:06 +000039 ic "github.com/opencord/voltha-protos/v3/go/inter_container"
40 of "github.com/opencord/voltha-protos/v3/go/openflow_13"
41 ofp "github.com/opencord/voltha-protos/v3/go/openflow_13"
42 oop "github.com/opencord/voltha-protos/v3/go/openolt"
43 "github.com/opencord/voltha-protos/v3/go/voltha"
kdarapu381c6902019-07-31 18:23:16 +053044)
45
kdarapu891693b2019-09-16 12:33:49 +053046func newMockCoreProxy() *mocks.MockCoreProxy {
Kent Hagermanf1db18b2020-07-08 13:38:15 -040047 mcp := mocks.MockCoreProxy{
48 Devices: make(map[string]*voltha.Device),
49 DevicePorts: make(map[string][]*voltha.Port),
50 }
Naga Manjunath7615e552019-10-11 22:35:47 +053051 var pm []*voltha.PmConfig
kdarapu891693b2019-09-16 12:33:49 +053052 mcp.Devices["olt"] = &voltha.Device{
kdarapu891693b2019-09-16 12:33:49 +053053 Id: "olt",
54 Root: true,
55 ParentId: "logical_device",
56 ParentPortNo: 1,
kdarapu891693b2019-09-16 12:33:49 +053057 ProxyAddress: &voltha.Device_ProxyAddress{
58 DeviceId: "olt",
59 DeviceType: "onu",
60 ChannelId: 1,
61 ChannelGroupId: 1,
62 },
63 ConnectStatus: 1,
Naga Manjunath7615e552019-10-11 22:35:47 +053064 PmConfigs: &voltha.PmConfigs{
65 DefaultFreq: 10,
66 Id: "olt",
67 FreqOverride: false,
68 Grouped: false,
69 Metrics: pm,
70 },
kdarapu891693b2019-09-16 12:33:49 +053071 }
Kent Hagermanf1db18b2020-07-08 13:38:15 -040072 mcp.DevicePorts["olt"] = []*voltha.Port{
73 {PortNo: 1, Label: "pon"},
74 {PortNo: 2, Label: "nni"},
75 }
kdarapu891693b2019-09-16 12:33:49 +053076
Kent Hagermanf1db18b2020-07-08 13:38:15 -040077 mcp.Devices["onu1"] = &voltha.Device{
kdarapu891693b2019-09-16 12:33:49 +053078 Id: "1",
79 Root: false,
80 ParentId: "olt",
81 ParentPortNo: 1,
82
kdarapu891693b2019-09-16 12:33:49 +053083 OperStatus: 4,
84 ProxyAddress: &voltha.Device_ProxyAddress{
85 OnuId: 1,
86 ChannelId: 1,
87 ChannelGroupId: 1,
88 },
89 ConnectStatus: 1,
Naga Manjunath7615e552019-10-11 22:35:47 +053090 PmConfigs: &voltha.PmConfigs{
91 DefaultFreq: 10,
92 Id: "olt",
93 FreqOverride: false,
94 Grouped: false,
95 Metrics: pm,
96 },
kdarapu891693b2019-09-16 12:33:49 +053097 }
Kent Hagermanf1db18b2020-07-08 13:38:15 -040098 mcp.DevicePorts["onu1"] = []*voltha.Port{
99 {PortNo: 1, Label: "pon"},
100 {PortNo: 2, Label: "uni"},
101 }
102
kdarapu891693b2019-09-16 12:33:49 +0530103 mcp.Devices["onu2"] = &voltha.Device{
104 Id: "2",
105 Root: false,
106 ParentId: "olt",
107 OperStatus: 2,
kdarapu891693b2019-09-16 12:33:49 +0530108
109 ParentPortNo: 1,
110
111 ProxyAddress: &voltha.Device_ProxyAddress{
112 OnuId: 2,
113 ChannelId: 1,
114 ChannelGroupId: 1,
115 },
116 ConnectStatus: 1,
Naga Manjunath7615e552019-10-11 22:35:47 +0530117 PmConfigs: &voltha.PmConfigs{
118 DefaultFreq: 10,
119 Id: "olt",
120 FreqOverride: false,
121 Grouped: false,
122 Metrics: pm,
123 },
kdarapu891693b2019-09-16 12:33:49 +0530124 }
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400125 mcp.DevicePorts["onu2"] = []*voltha.Port{
126 {PortNo: 1, Label: "pon"},
127 {PortNo: 2, Label: "uni"},
128 }
kdarapu891693b2019-09-16 12:33:49 +0530129 return &mcp
130}
131func newMockDeviceHandler() *DeviceHandler {
kdarapu381c6902019-07-31 18:23:16 +0530132 device := &voltha.Device{
133 Id: "olt",
134 Root: true,
135 ParentId: "logical_device",
kdarapu891693b2019-09-16 12:33:49 +0530136 ProxyAddress: &voltha.Device_ProxyAddress{
137 DeviceId: "olt",
138 DeviceType: "onu",
139 ChannelId: 1,
140 ChannelGroupId: 1,
141 },
142 ConnectStatus: 1,
kdarapu381c6902019-07-31 18:23:16 +0530143 }
kdarapu891693b2019-09-16 12:33:49 +0530144 cp := newMockCoreProxy()
145 ap := &mocks.MockAdapterProxy{}
146 ep := &mocks.MockEventProxy{}
147 openOLT := &OpenOLT{coreProxy: cp, adapterProxy: ap, eventProxy: ep}
148 dh := NewDeviceHandler(cp, ap, ep, device, openOLT)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700149 oopRanges := []*oop.DeviceInfo_DeviceResourceRanges{{
150 IntfIds: []uint32{0, 1},
151 Technology: "xgs-pon",
152 Pools: []*oop.DeviceInfo_DeviceResourceRanges_Pool{{}},
153 }}
154
Thomas Lee S985938d2020-05-04 11:40:41 +0530155 deviceInf := &oop.DeviceInfo{Vendor: "openolt", Ranges: oopRanges, Model: "openolt", DeviceId: dh.device.Id, PonPorts: 2}
156 rsrMgr := resourcemanager.OpenOltResourceMgr{DeviceID: dh.device.Id, DeviceType: dh.device.Type, DevInfo: deviceInf,
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530157 KVStore: &db.Backend{
158 Client: &mocks.MockKVClient{},
159 }}
Girish Gowdra38d533d2020-03-30 20:38:51 -0700160 rsrMgr.AllocIDMgmtLock = make([]sync.RWMutex, deviceInf.PonPorts)
161 rsrMgr.GemPortIDMgmtLock = make([]sync.RWMutex, deviceInf.PonPorts)
162 rsrMgr.OnuIDMgmtLock = make([]sync.RWMutex, deviceInf.PonPorts)
163
164 dh.resourceMgr = &rsrMgr
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530165 dh.resourceMgr.ResourceMgrs = make(map[uint32]*ponrmgr.PONResourceManager)
166 ranges := make(map[string]interface{})
167 sharedIdxByType := make(map[string]string)
168 sharedIdxByType["ALLOC_ID"] = "ALLOC_ID"
169 sharedIdxByType["ONU_ID"] = "ONU_ID"
170 sharedIdxByType["GEMPORT_ID"] = "GEMPORT_ID"
171 sharedIdxByType["FLOW_ID"] = "FLOW_ID"
172 ranges["ONU_ID"] = uint32(0)
173 ranges["GEMPORT_ID"] = uint32(0)
174 ranges["ALLOC_ID"] = uint32(0)
175 ranges["FLOW_ID"] = uint32(0)
176 ranges["onu_id_shared"] = uint32(0)
177 ranges["alloc_id_shared"] = uint32(0)
178 ranges["gemport_id_shared"] = uint32(0)
179 ranges["flow_id_shared"] = uint32(0)
180
181 ponmgr := &ponrmgr.PONResourceManager{
182 DeviceID: "onu-1",
Girish Gowdra38d533d2020-03-30 20:38:51 -0700183 IntfIDs: []uint32{0, 1},
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530184 KVStore: &db.Backend{
185 Client: &mocks.MockKVClient{},
186 },
187 PonResourceRanges: ranges,
188 SharedIdxByType: sharedIdxByType,
189 }
Girish Gowdra38d533d2020-03-30 20:38:51 -0700190 dh.resourceMgr.ResourceMgrs[0] = ponmgr
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530191 dh.resourceMgr.ResourceMgrs[1] = ponmgr
npujarec5762e2020-01-01 14:08:48 +0530192 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
193 defer cancel()
194 dh.flowMgr = NewFlowManager(ctx, dh, dh.resourceMgr)
kdarapu891693b2019-09-16 12:33:49 +0530195 dh.Client = &mocks.MockOpenoltClient{}
kesavand39e0aa32020-01-28 20:58:50 -0500196 dh.eventMgr = &OpenOltEventMgr{eventProxy: &mocks.MockEventProxy{}, handler: dh}
kdarapu891693b2019-09-16 12:33:49 +0530197 dh.transitionMap = &TransitionMap{}
Naga Manjunath7615e552019-10-11 22:35:47 +0530198 dh.portStats = &OpenOltStatisticsMgr{}
Amit Ghoshd4cbe482019-11-21 12:07:14 +0000199
200 var pmNames = []string{
201 "rx_bytes",
202 "rx_packets",
203 "rx_mcast_packets",
204 "rx_bcast_packets",
205 "tx_bytes",
206 "tx_packets",
207 "tx_mcast_packets",
208 "tx_bcast_packets",
209 }
210
211 dh.metrics = pmmetrics.NewPmMetrics(device.Id, pmmetrics.Frequency(2), pmmetrics.FrequencyOverride(false), pmmetrics.Grouped(false), pmmetrics.Metrics(pmNames))
kdarapu891693b2019-09-16 12:33:49 +0530212 return dh
kdarapu381c6902019-07-31 18:23:16 +0530213}
214
kdarapu891693b2019-09-16 12:33:49 +0530215func negativeDeviceHandler() *DeviceHandler {
216 dh := newMockDeviceHandler()
217 device := dh.device
218 device.Id = ""
kdarapu891693b2019-09-16 12:33:49 +0530219 return dh
220}
kdarapu381c6902019-07-31 18:23:16 +0530221func Test_generateMacFromHost(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000222 ctx := context.Background()
kdarapu381c6902019-07-31 18:23:16 +0530223 type args struct {
224 host string
225 }
226 tests := []struct {
227 name string
228 args args
229 want string
230 wantErr bool
231 }{
kdarapu891693b2019-09-16 12:33:49 +0530232 {"generateMacFromHost-1", args{host: "localhost"}, "00:00:7f:00:00:01", false},
233 {"generateMacFromHost-2", args{host: "10.10.10.10"}, "00:00:0a:0a:0a:0a", false},
234 //{"generateMacFromHost-3", args{host: "google.com"}, "00:00:d8:3a:c8:8e", false},
235 {"generateMacFromHost-4", args{host: "testing3"}, "", true},
kdarapu381c6902019-07-31 18:23:16 +0530236 }
237 for _, tt := range tests {
238 t.Run(tt.name, func(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000239 got, err := generateMacFromHost(ctx, tt.args.host)
kdarapu381c6902019-07-31 18:23:16 +0530240 if (err != nil) != tt.wantErr {
241 t.Errorf("generateMacFromHost() error = %v, wantErr %v", err, tt.wantErr)
242 return
243 }
244 if got != tt.want {
245 t.Errorf("generateMacFromHost() = %v, want %v", got, tt.want)
246 }
247 })
248 }
249}
250func Test_macifyIP(t *testing.T) {
251 type args struct {
252 ip net.IP
253 }
254 tests := []struct {
255 name string
256 args args
257 want string
258 }{{
kdarapu891693b2019-09-16 12:33:49 +0530259 "macifyIP-1",
kdarapu381c6902019-07-31 18:23:16 +0530260 args{ip: net.ParseIP("10.10.10.10")},
261 "00:00:0a:0a:0a:0a",
262 },
263 {
kdarapu891693b2019-09-16 12:33:49 +0530264 "macifyIP-2",
kdarapu381c6902019-07-31 18:23:16 +0530265 args{ip: net.ParseIP("127.0.0.1")},
266 "00:00:7f:00:00:01",
kdarapu891693b2019-09-16 12:33:49 +0530267 },
268 {
269 "macifyIP-3",
270 args{ip: net.ParseIP("127.0.0.1/24")},
271 "",
272 },
273 }
kdarapu381c6902019-07-31 18:23:16 +0530274 for _, tt := range tests {
275 t.Run(tt.name, func(t *testing.T) {
276 if got := macifyIP(tt.args.ip); got != tt.want {
277 t.Errorf("macifyIP() = %v, want %v", got, tt.want)
278 }
279 })
280 }
281}
282
David K. Bainbridge794735f2020-02-11 21:01:37 -0800283func sparseCompare(keys []string, spec, target interface{}) bool {
284 if spec == target {
285 return true
286 }
287 if spec == nil || target == nil {
288 return false
289 }
290 typeSpec := reflect.TypeOf(spec)
291 typeTarget := reflect.TypeOf(target)
292 if typeSpec != typeTarget {
293 return false
294 }
295
296 vSpec := reflect.ValueOf(spec)
297 vTarget := reflect.ValueOf(target)
298 if vSpec.Kind() == reflect.Ptr {
299 vSpec = vSpec.Elem()
300 vTarget = vTarget.Elem()
301 }
302
303 for _, key := range keys {
304 fSpec := vSpec.FieldByName(key)
305 fTarget := vTarget.FieldByName(key)
306 if !reflect.DeepEqual(fSpec.Interface(), fTarget.Interface()) {
307 return false
308 }
309 }
310 return true
311}
312
kdarapu381c6902019-07-31 18:23:16 +0530313func TestDeviceHandler_GetChildDevice(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000314 ctx := context.Background()
kdarapu891693b2019-09-16 12:33:49 +0530315 dh1 := newMockDeviceHandler()
316 dh2 := negativeDeviceHandler()
kdarapu381c6902019-07-31 18:23:16 +0530317 type args struct {
318 parentPort uint32
319 onuID uint32
320 }
321 tests := []struct {
kdarapu891693b2019-09-16 12:33:49 +0530322 name string
323 devicehandler *DeviceHandler
324 args args
325 want *voltha.Device
David K. Bainbridge794735f2020-02-11 21:01:37 -0800326 errType reflect.Type
kdarapu381c6902019-07-31 18:23:16 +0530327 }{
kdarapu891693b2019-09-16 12:33:49 +0530328 {"GetChildDevice-1", dh1,
329 args{parentPort: 1,
330 onuID: 1},
David K. Bainbridge794735f2020-02-11 21:01:37 -0800331 &voltha.Device{
332 Id: "1",
333 ParentId: "olt",
334 ParentPortNo: 1,
335 },
336 nil,
kdarapu891693b2019-09-16 12:33:49 +0530337 },
338 {"GetChildDevice-2", dh2,
kdarapu381c6902019-07-31 18:23:16 +0530339 args{parentPort: 1,
340 onuID: 1},
David K. Bainbridge794735f2020-02-11 21:01:37 -0800341 nil,
Thomas Lee S94109f12020-03-03 16:39:29 +0530342 reflect.TypeOf(&olterrors.ErrNotFound{}),
kdarapu381c6902019-07-31 18:23:16 +0530343 },
344 }
David K. Bainbridge794735f2020-02-11 21:01:37 -0800345
346 /*
347 --- FAIL: TestDeviceHandler_GetChildDevice/GetChildDevice-1 (0.00s)
348 device_handler_test.go:309: GetportLabel() => want=(, <nil>) got=(id:"1" parent_id:"olt" parent_port_no:1 proxy_address:<channel_id:1 channel_group_id:1 onu_id:1 > oper_status:ACTIVE connect_status:UNREACHABLE ports:<port_no:1 label:"pon" > ports:<port_no:2 label:"uni" > pm_configs:<id:"olt" default_freq:10 > , <nil>)
349 --- FAIL: TestDeviceHandler_GetChildDevice/GetChildDevice-2 (0.00s)
350 */
kdarapu381c6902019-07-31 18:23:16 +0530351 for _, tt := range tests {
352 t.Run(tt.name, func(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000353 got, err := tt.devicehandler.GetChildDevice(ctx, tt.args.parentPort, tt.args.onuID)
David K. Bainbridge794735f2020-02-11 21:01:37 -0800354 if reflect.TypeOf(err) != tt.errType || !sparseCompare([]string{"Id", "ParentId", "ParentPortNo"}, tt.want, got) {
355 t.Errorf("GetportLabel() => want=(%v, %v) got=(%v, %v)",
356 tt.want, tt.errType, got, reflect.TypeOf(err))
357 return
358 }
kdarapu381c6902019-07-31 18:23:16 +0530359 t.Log("onu device id", got)
360 })
361 }
362}
kdarapu891693b2019-09-16 12:33:49 +0530363
364func TestGetportLabel(t *testing.T) {
Thomas Lee S94109f12020-03-03 16:39:29 +0530365 invalid := reflect.TypeOf(&olterrors.ErrInvalidValue{})
kdarapu891693b2019-09-16 12:33:49 +0530366 type args struct {
367 portNum uint32
368 portType voltha.Port_PortType
369 }
370 tests := []struct {
David K. Bainbridge794735f2020-02-11 21:01:37 -0800371 name string
372 args args
373 want string
374 errType reflect.Type
kdarapu891693b2019-09-16 12:33:49 +0530375 }{
David K. Bainbridge794735f2020-02-11 21:01:37 -0800376 {"GetportLabel-1", args{portNum: 0, portType: 0}, "", invalid},
377 {"GetportLabel-2", args{portNum: 1, portType: 1}, "nni-1", nil},
378 {"GetportLabel-3", args{portNum: 2, portType: 2}, "", invalid},
379 {"GetportLabel-4", args{portNum: 3, portType: 3}, "pon-3", nil},
380 {"GetportLabel-5", args{portNum: 4, portType: 4}, "", invalid},
381 {"GetportLabel-6", args{portNum: 5, portType: 5}, "", invalid},
382 {"GetportLabel-7", args{portNum: 6, portType: 6}, "", invalid},
kdarapu891693b2019-09-16 12:33:49 +0530383 }
384 for _, tt := range tests {
385 t.Run(tt.name, func(t *testing.T) {
David K. Bainbridge794735f2020-02-11 21:01:37 -0800386 got, err := GetportLabel(tt.args.portNum, tt.args.portType)
387 if reflect.TypeOf(err) != tt.errType || got != tt.want {
388 t.Errorf("GetportLabel() => want=(%v, %v) got=(%v, %v)",
389 tt.want, tt.errType, got, reflect.TypeOf(err))
kdarapu891693b2019-09-16 12:33:49 +0530390 }
David K. Bainbridge794735f2020-02-11 21:01:37 -0800391
kdarapu891693b2019-09-16 12:33:49 +0530392 })
393 }
394}
395
396func TestDeviceHandler_ProcessInterAdapterMessage(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000397 ctx := context.Background()
kdarapu891693b2019-09-16 12:33:49 +0530398 dh := newMockDeviceHandler()
399 proxyAddr := dh.device.ProxyAddress
400 body := &ic.InterAdapterOmciMessage{
401 Message: []byte("asdfasdfasdfasdfas"),
402 ProxyAddress: proxyAddr,
403 }
404 body2 := &ic.InterAdapterOmciMessage{
405 Message: []byte("asdfasdfasdfasdfas"),
406 //ProxyAddress: &voltha.Device_ProxyAddress{},
407 }
408 body3 := &ic.InterAdapterTechProfileDownloadMessage{}
409 var marshalledData *any.Any
410 var err error
411
412 if marshalledData, err = ptypes.MarshalAny(body); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000413 logger.Errorw(ctx, "cannot-marshal-request", log.Fields{"error": err})
kdarapu891693b2019-09-16 12:33:49 +0530414 }
415
416 var marshalledData1 *any.Any
417
418 if marshalledData1, err = ptypes.MarshalAny(body2); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000419 logger.Errorw(ctx, "cannot-marshal-request", log.Fields{"error": err})
kdarapu891693b2019-09-16 12:33:49 +0530420 }
421 var marshalledData2 *any.Any
422
423 if marshalledData2, err = ptypes.MarshalAny(body3); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000424 logger.Errorw(ctx, "cannot-marshal-request", log.Fields{"error": err})
kdarapu891693b2019-09-16 12:33:49 +0530425 }
426 type args struct {
427 msg *ic.InterAdapterMessage
428 }
Thomas Lee S94109f12020-03-03 16:39:29 +0530429 invalid := reflect.TypeOf(&olterrors.ErrInvalidValue{})
kdarapu891693b2019-09-16 12:33:49 +0530430 tests := []struct {
431 name string
432 args args
David K. Bainbridge794735f2020-02-11 21:01:37 -0800433 wantErr reflect.Type
kdarapu891693b2019-09-16 12:33:49 +0530434 }{
435 {"ProcessInterAdapterMessage-1", args{msg: &ic.InterAdapterMessage{
436 Header: &ic.InterAdapterHeader{
437 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800438 Type: ic.InterAdapterMessageType_FLOW_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530439 },
440 Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800441 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530442 {"ProcessInterAdapterMessage-2", args{msg: &ic.InterAdapterMessage{
443 Header: &ic.InterAdapterHeader{
444 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800445 Type: ic.InterAdapterMessageType_FLOW_RESPONSE,
kdarapu891693b2019-09-16 12:33:49 +0530446 },
447 Body: marshalledData1,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800448 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530449 {"ProcessInterAdapterMessage-3", args{msg: &ic.InterAdapterMessage{
450 Header: &ic.InterAdapterHeader{
451 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800452 Type: ic.InterAdapterMessageType_OMCI_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530453 },
454 Body: marshalledData,
Thomas Lee S94109f12020-03-03 16:39:29 +0530455 }}, reflect.TypeOf(&olterrors.ErrCommunication{})},
kdarapu891693b2019-09-16 12:33:49 +0530456 {"ProcessInterAdapterMessage-4", args{msg: &ic.InterAdapterMessage{
457 Header: &ic.InterAdapterHeader{
458 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800459 Type: ic.InterAdapterMessageType_OMCI_RESPONSE,
kdarapu891693b2019-09-16 12:33:49 +0530460 }, Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800461 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530462 {"ProcessInterAdapterMessage-5", args{msg: &ic.InterAdapterMessage{
463 Header: &ic.InterAdapterHeader{
464 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800465 Type: ic.InterAdapterMessageType_METRICS_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530466 }, Body: marshalledData1,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800467 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530468 {"ProcessInterAdapterMessage-6", args{msg: &ic.InterAdapterMessage{
469 Header: &ic.InterAdapterHeader{
470 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800471 Type: ic.InterAdapterMessageType_METRICS_RESPONSE,
kdarapu891693b2019-09-16 12:33:49 +0530472 }, Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800473 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530474 {"ProcessInterAdapterMessage-7", args{msg: &ic.InterAdapterMessage{
475 Header: &ic.InterAdapterHeader{
476 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800477 Type: ic.InterAdapterMessageType_ONU_IND_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530478 }, Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800479 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530480 {"ProcessInterAdapterMessage-8", args{msg: &ic.InterAdapterMessage{
481 Header: &ic.InterAdapterHeader{
482 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800483 Type: ic.InterAdapterMessageType_ONU_IND_RESPONSE,
kdarapu891693b2019-09-16 12:33:49 +0530484 }, Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800485 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530486 {"ProcessInterAdapterMessage-9", args{msg: &ic.InterAdapterMessage{
487 Header: &ic.InterAdapterHeader{
488 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800489 Type: ic.InterAdapterMessageType_TECH_PROFILE_DOWNLOAD_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530490 }, Body: marshalledData,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800491 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530492 {"ProcessInterAdapterMessage-10", args{msg: &ic.InterAdapterMessage{
493 Header: &ic.InterAdapterHeader{
494 Id: "012345",
David K. Bainbridge794735f2020-02-11 21:01:37 -0800495 Type: ic.InterAdapterMessageType_DELETE_GEM_PORT_REQUEST,
kdarapu891693b2019-09-16 12:33:49 +0530496 }, Body: marshalledData2,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800497 }}, invalid},
498 {"ProcessInterAdapterMessage-11", args{msg: &ic.InterAdapterMessage{
499 Header: &ic.InterAdapterHeader{
500 Id: "012345",
501 Type: ic.InterAdapterMessageType_DELETE_TCONT_REQUEST,
502 }, Body: marshalledData2,
503 }}, invalid},
kdarapu891693b2019-09-16 12:33:49 +0530504 }
505 for _, tt := range tests {
506 t.Run(tt.name, func(t *testing.T) {
507
Neha Sharma96b7bf22020-06-15 10:37:32 +0000508 if err := dh.ProcessInterAdapterMessage(ctx, tt.args.msg); reflect.TypeOf(err) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530509 t.Errorf("DeviceHandler.ProcessInterAdapterMessage() error = %v, wantErr %v", err, tt.wantErr)
510 }
511 })
512 }
513}
514
515func TestDeviceHandler_sendProxiedMessage(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000516 ctx := context.Background()
kdarapu891693b2019-09-16 12:33:49 +0530517 dh1 := newMockDeviceHandler()
518 dh2 := negativeDeviceHandler()
519 device1 := &voltha.Device{
520 Id: "onu1",
521 Root: false,
522 ParentId: "logical_device",
523 ProxyAddress: &voltha.Device_ProxyAddress{
524 DeviceId: "onu1",
525 DeviceType: "onu",
526 ChannelId: 1,
527 ChannelGroupId: 1,
528 },
529 ConnectStatus: 1,
530 }
531 device2 := device1
532 device2.ConnectStatus = 2
533 iaomciMsg1 := &ic.InterAdapterOmciMessage{
534 ProxyAddress: &voltha.Device_ProxyAddress{
535 DeviceId: "onu2",
536 DeviceType: "onu",
537 ChannelId: 1,
538 ChannelGroupId: 1,
539 //OnuId: 2,
540 },
541 ConnectStatus: 1,
542 }
543 iaomciMsg2 := &ic.InterAdapterOmciMessage{
544 ProxyAddress: &voltha.Device_ProxyAddress{
545 DeviceId: "onu3",
546 DeviceType: "onu",
547 ChannelId: 1,
548 ChannelGroupId: 1,
549 },
550 ConnectStatus: 1,
551 }
552 type args struct {
553 onuDevice *voltha.Device
554 omciMsg *ic.InterAdapterOmciMessage
555 }
556 tests := []struct {
557 name string
558 devicehandler *DeviceHandler
559 args args
560 }{
561 {"sendProxiedMessage-1", dh1, args{onuDevice: device1, omciMsg: &ic.InterAdapterOmciMessage{}}},
562 {"sendProxiedMessage-2", dh1, args{onuDevice: device2, omciMsg: &ic.InterAdapterOmciMessage{}}},
563 {"sendProxiedMessage-3", dh1, args{onuDevice: nil, omciMsg: iaomciMsg1}},
564 {"sendProxiedMessage-4", dh1, args{onuDevice: nil, omciMsg: iaomciMsg2}},
565 {"sendProxiedMessage-5", dh2, args{onuDevice: nil, omciMsg: iaomciMsg2}},
566 {"sendProxiedMessage-6", dh2, args{onuDevice: device1, omciMsg: &ic.InterAdapterOmciMessage{}}},
567 }
568 for _, tt := range tests {
569 t.Run(tt.name, func(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000570 tt.devicehandler.sendProxiedMessage(ctx, tt.args.onuDevice, tt.args.omciMsg)
kdarapu891693b2019-09-16 12:33:49 +0530571 })
572 }
573}
574
575func TestDeviceHandler_SendPacketInToCore(t *testing.T) {
576 dh1 := newMockDeviceHandler()
577 dh2 := negativeDeviceHandler()
578
579 type args struct {
580 logicalPort uint32
581 packetPayload []byte
582 }
583 tests := []struct {
584 name string
585 devicehandler *DeviceHandler
586 args args
587 }{
588 {"SendPacketInToCore-1", dh1, args{logicalPort: 1, packetPayload: []byte("test1")}},
589 {"SendPacketInToCore-2", dh1, args{logicalPort: 1, packetPayload: []byte("")}},
590 {"SendPacketInToCore-3", dh2, args{logicalPort: 1, packetPayload: []byte("test1")}},
591 }
592 for _, tt := range tests {
593 t.Run(tt.name, func(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000594 tt.devicehandler.SendPacketInToCore(context.Background(), tt.args.logicalPort, tt.args.packetPayload)
kdarapu891693b2019-09-16 12:33:49 +0530595 })
596 }
597}
598
599func TestDeviceHandler_DisableDevice(t *testing.T) {
600 dh1 := newMockDeviceHandler()
601 dh2 := negativeDeviceHandler()
602 type args struct {
603 device *voltha.Device
604 }
605 tests := []struct {
606 name string
607 devicehandler *DeviceHandler
608 args args
609 wantErr bool
610 }{
611 {"DisableDevice-1", dh1, args{device: dh1.device}, false},
Chaitrashree G S3b4c0352019-09-09 20:59:29 -0400612 {"DisableDevice-2", dh1, args{device: dh2.device}, true},
kdarapu891693b2019-09-16 12:33:49 +0530613 }
614 for _, tt := range tests {
615 t.Run(tt.name, func(t *testing.T) {
616
Neha Sharma96b7bf22020-06-15 10:37:32 +0000617 if err := tt.devicehandler.DisableDevice(context.Background(), tt.args.device); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530618 t.Errorf("DeviceHandler.DisableDevice() error = %v, wantErr %v", err, tt.wantErr)
619 }
620 })
621 }
622}
623
624func TestDeviceHandler_ReenableDevice(t *testing.T) {
625 dh1 := newMockDeviceHandler()
626 dh2 := negativeDeviceHandler()
627 type args struct {
628 device *voltha.Device
629 }
630 tests := []struct {
631 name string
632 devicehandler *DeviceHandler
633 args args
634 wantErr bool
635 }{
636 {"ReenableDevice-1", dh1, args{device: dh1.device}, false},
637 {"ReenableDevice-2", dh1, args{device: &voltha.Device{}}, true},
638 {"ReenableDevice-3", dh2, args{device: dh1.device}, false},
639 }
640 for _, tt := range tests {
641 t.Run(tt.name, func(t *testing.T) {
642 dh := tt.devicehandler
Neha Sharma96b7bf22020-06-15 10:37:32 +0000643 if err := dh.ReenableDevice(context.Background(), tt.args.device); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530644 t.Errorf("DeviceHandler.ReenableDevice() error = %v, wantErr %v", err, tt.wantErr)
645 }
646 })
647 }
648}
649
650func TestDeviceHandler_RebootDevice(t *testing.T) {
651 dh1 := newMockDeviceHandler()
652 dh2 := newMockDeviceHandler()
653 type args struct {
654 device *voltha.Device
655 }
656 tests := []struct {
657 name string
658 devicehandler *DeviceHandler
659 args args
660 wantErr bool
661 }{
662 // TODO: Add test cases.
663 {"RebootDevice-1", dh1, args{device: dh1.device}, false},
664 {"RebootDevice-2", dh1, args{device: dh2.device}, true},
665 {"RebootDevice-3", dh2, args{device: dh2.device}, false},
666 }
667 for _, tt := range tests {
668 t.Run(tt.name, func(t *testing.T) {
669
Neha Sharma96b7bf22020-06-15 10:37:32 +0000670 if err := tt.devicehandler.RebootDevice(context.Background(), tt.args.device); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530671 t.Errorf("DeviceHandler.RebootDevice() error = %v, wantErr %v", err, tt.wantErr)
672 }
673 })
674 }
675}
676
677func TestDeviceHandler_handleIndication(t *testing.T) {
678 dh1 := newMockDeviceHandler()
679 dh2 := negativeDeviceHandler()
680 dh3 := newMockDeviceHandler()
Naga Manjunatha8dc9372019-10-31 23:01:18 +0530681 dh3.onus = sync.Map{}
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +0530682 dh3.onus.Store("onu1", NewOnuDevice("onu1", "onu1", "onu1", 1, 1, "onu1", false))
683 dh3.onus.Store("onu2", NewOnuDevice("onu2", "onu2", "onu2", 2, 2, "onu2", false))
Naga Manjunatha8dc9372019-10-31 23:01:18 +0530684
kdarapu891693b2019-09-16 12:33:49 +0530685 type args struct {
686 indication *oop.Indication
687 }
688 tests := []struct {
689 name string
690 deviceHandler *DeviceHandler
691 args args
692 }{
693 // TODO: Add test cases.
694 {"handleIndication-1", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OltInd{OltInd: &oop.OltIndication{OperState: "up"}}}}},
695 {"handleIndication-2", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OltInd{OltInd: &oop.OltIndication{OperState: "down"}}}}},
696 {"handleIndication-3", dh1, args{indication: &oop.Indication{Data: &oop.Indication_IntfInd{IntfInd: &oop.IntfIndication{IntfId: 1, OperState: "up"}}}}},
697 {"handleIndication-4", dh1, args{indication: &oop.Indication{Data: &oop.Indication_IntfInd{IntfInd: &oop.IntfIndication{IntfId: 1, OperState: "down"}}}}},
698 {"handleIndication-5", dh1, args{indication: &oop.Indication{Data: &oop.Indication_IntfOperInd{IntfOperInd: &oop.IntfOperIndication{Type: "nni", IntfId: 1, OperState: "up"}}}}},
699 {"handleIndication-6", dh1, args{indication: &oop.Indication{Data: &oop.Indication_IntfOperInd{IntfOperInd: &oop.IntfOperIndication{Type: "pon", IntfId: 1, OperState: "up"}}}}},
700 {"handleIndication-7", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OnuDiscInd{OnuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}}}}},
701 {"handleIndication-8", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "up"}}}}},
702 {"handleIndication-9", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "down"}}}}},
703 {"handleIndication-10", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "up"}}}}},
704 {"handleIndication-11", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "down"}}}}},
705 {"handleIndication-12", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OmciInd{OmciInd: &oop.OmciIndication{IntfId: 1, OnuId: 1, Pkt: []byte("onu123-random value")}}}}},
706 {"handleIndication-13", dh1, args{indication: &oop.Indication{Data: &oop.Indication_PktInd{PktInd: &oop.PacketIndication{IntfType: "nni", IntfId: 1, GemportId: 1, FlowId: 1234, PortNo: 1}}}}},
707 {"handleIndication-14", dh1, args{indication: &oop.Indication{Data: &oop.Indication_PortStats{PortStats: &oop.PortStatistics{IntfId: 1, RxBytes: 100, RxPackets: 100, RxUcastPackets: 100, RxMcastPackets: 100, RxBcastPackets: 100, RxErrorPackets: 100, TxBytes: 100, TxPackets: 100, TxUcastPackets: 100, TxMcastPackets: 100, TxBcastPackets: 100, TxErrorPackets: 100, RxCrcErrors: 100, BipErrors: 100, Timestamp: 1000}}}}},
708 {"handleIndication-15", dh1, args{indication: &oop.Indication{Data: &oop.Indication_FlowStats{FlowStats: &oop.FlowStatistics{RxBytes: 100, RxPackets: 100, TxBytes: 100, TxPackets: 100, Timestamp: 1000}}}}},
709 {"handleIndication-16", dh1, args{indication: &oop.Indication{Data: &oop.Indication_AlarmInd{AlarmInd: &oop.AlarmIndication{}}}}},
710 {"handleIndication-17", dh1, args{indication: &oop.Indication{Data: &oop.Indication_PktInd{PktInd: &oop.PacketIndication{IntfType: "nni", FlowId: 1234, PortNo: 1}}}}},
711 {"handleIndication-18", dh1, args{indication: &oop.Indication{Data: &oop.Indication_PktInd{PktInd: &oop.PacketIndication{}}}}},
712
713 // Negative testcases
714 {"handleIndication-19", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OltInd{OltInd: &oop.OltIndication{OperState: "up"}}}}},
715 {"handleIndication-20", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OltInd{OltInd: &oop.OltIndication{OperState: "down"}}}}},
716 {"handleIndication-21", dh2, args{indication: &oop.Indication{Data: &oop.Indication_IntfInd{IntfInd: &oop.IntfIndication{IntfId: 1, OperState: "up"}}}}},
717 {"handleIndication-22", dh2, args{indication: &oop.Indication{Data: &oop.Indication_IntfInd{IntfInd: &oop.IntfIndication{IntfId: 1, OperState: "down"}}}}},
718 {"handleIndication-23", dh2, args{indication: &oop.Indication{Data: &oop.Indication_IntfOperInd{IntfOperInd: &oop.IntfOperIndication{Type: "nni", IntfId: 1, OperState: "up"}}}}},
719 {"handleIndication-24", dh2, args{indication: &oop.Indication{Data: &oop.Indication_IntfOperInd{IntfOperInd: &oop.IntfOperIndication{Type: "pon", IntfId: 1, OperState: "up"}}}}},
720 {"handleIndication-25", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OnuDiscInd{OnuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}}}}},
721 {"handleIndication-26", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "up"}}}}},
722 {"handleIndication-27", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "down"}}}}},
723 {"handleIndication-28", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "up"}}}}},
724 {"handleIndication-29", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "down"}}}}},
725 {"handleIndication-30", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OmciInd{OmciInd: &oop.OmciIndication{IntfId: 1, OnuId: 1, Pkt: []byte("onu123-random value")}}}}},
726 {"handleIndication-31", dh2, args{indication: &oop.Indication{Data: &oop.Indication_PktInd{PktInd: &oop.PacketIndication{IntfType: "nni", IntfId: 1, GemportId: 1, FlowId: 1234, PortNo: 1}}}}},
727 {"handleIndication-32", dh2, args{indication: &oop.Indication{Data: &oop.Indication_PortStats{PortStats: &oop.PortStatistics{IntfId: 1, RxBytes: 100, RxPackets: 100, RxUcastPackets: 100, RxMcastPackets: 100, RxBcastPackets: 100, RxErrorPackets: 100, TxBytes: 100, TxPackets: 100, TxUcastPackets: 100, TxMcastPackets: 100, TxBcastPackets: 100, TxErrorPackets: 100, RxCrcErrors: 100, BipErrors: 100, Timestamp: 1000}}}}},
728 {"handleIndication-33", dh2, args{indication: &oop.Indication{Data: &oop.Indication_FlowStats{FlowStats: &oop.FlowStatistics{RxBytes: 100, RxPackets: 100, TxBytes: 100, TxPackets: 100, Timestamp: 1000}}}}},
729 {"handleIndication-34", dh2, args{indication: &oop.Indication{Data: &oop.Indication_AlarmInd{AlarmInd: &oop.AlarmIndication{}}}}},
730 //
731 {"handleIndication-35", dh3, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "up"}}}}},
732 {"handleIndication-36", dh3, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "up"}}}}},
733 {"handleIndication-37", dh3, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "up", AdminState: "down"}}}}},
734 {"handleIndication-38", dh3, args{indication: &oop.Indication{Data: &oop.Indication_OnuInd{OnuInd: &oop.OnuIndication{IntfId: 1, OnuId: 1, OperState: "down", AdminState: "down"}}}}},
735 {"handleIndication-30", dh1, args{indication: &oop.Indication{Data: &oop.Indication_OmciInd{OmciInd: &oop.OmciIndication{IntfId: 1, OnuId: 4, Pkt: []byte("onu123-random value")}}}}},
736 {"handleIndication-30", dh2, args{indication: &oop.Indication{Data: &oop.Indication_OmciInd{OmciInd: &oop.OmciIndication{IntfId: 1, OnuId: 4, Pkt: []byte("onu123-random value")}}}}},
737 }
738 for _, tt := range tests {
739 t.Run(tt.name, func(t *testing.T) {
740 dh := tt.deviceHandler
npujarec5762e2020-01-01 14:08:48 +0530741 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
742 defer cancel()
743 dh.handleIndication(ctx, tt.args.indication)
kdarapu891693b2019-09-16 12:33:49 +0530744 })
745 }
746}
747
748func TestDeviceHandler_addPort(t *testing.T) {
749 dh1 := newMockDeviceHandler()
750 dh2 := negativeDeviceHandler()
751 type args struct {
752 intfID uint32
753 portType voltha.Port_PortType
754 state string
755 }
756 tests := []struct {
757 name string
758 devicehandler *DeviceHandler
759 args args
760 }{
761 // State up
762 {"addPort.1", dh1, args{intfID: 1, portType: voltha.Port_UNKNOWN, state: "up"}},
763 {"addPort.2", dh1, args{intfID: 1, portType: voltha.Port_VENET_OLT, state: "up"}},
764 {"addPort.3", dh1, args{intfID: 1, portType: voltha.Port_VENET_ONU, state: "up"}},
765 {"addPort.4", dh1, args{intfID: 1, portType: voltha.Port_ETHERNET_NNI, state: "up"}},
766 {"addPort.5", dh1, args{intfID: 1, portType: voltha.Port_ETHERNET_UNI, state: "up"}},
767 {"addPort.6", dh1, args{intfID: 1, portType: voltha.Port_PON_OLT, state: "up"}},
768 {"addPort.7", dh1, args{intfID: 1, portType: voltha.Port_PON_ONU, state: "up"}},
769 {"addPort.8", dh1, args{intfID: 1, portType: 8, state: "up"}},
770 // state discovery
771 {"addPort.9", dh1, args{intfID: 1, portType: voltha.Port_UNKNOWN, state: "down"}},
772 {"addPort.10", dh1, args{intfID: 1, portType: voltha.Port_VENET_OLT, state: "down"}},
773 {"addPort.11", dh1, args{intfID: 1, portType: voltha.Port_VENET_ONU, state: "down"}},
774 {"addPort.12", dh1, args{intfID: 1, portType: voltha.Port_ETHERNET_NNI, state: "down"}},
775 {"addPort.13", dh1, args{intfID: 1, portType: voltha.Port_ETHERNET_UNI, state: "down"}},
776 {"addPort.14", dh1, args{intfID: 1, portType: voltha.Port_PON_OLT, state: "down"}},
777 {"addPort.15", dh1, args{intfID: 1, portType: voltha.Port_PON_ONU, state: "down"}},
778 {"addPort.16", dh1, args{intfID: 1, portType: 8, state: "down"}},
779
780 {"addPort.17", dh2, args{intfID: 1, portType: voltha.Port_ETHERNET_NNI, state: "up"}},
781 {"addPort.18", dh2, args{intfID: 1, portType: voltha.Port_ETHERNET_UNI, state: "up"}},
782 {"addPort.19", dh2, args{intfID: 1, portType: voltha.Port_ETHERNET_NNI, state: "down"}},
783 {"addPort.20", dh2, args{intfID: 1, portType: voltha.Port_ETHERNET_UNI, state: "down"}},
784 }
785 for _, tt := range tests {
786 t.Run(tt.name, func(t *testing.T) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000787 tt.devicehandler.addPort(context.Background(), tt.args.intfID, tt.args.portType, tt.args.state)
kdarapu891693b2019-09-16 12:33:49 +0530788 })
789 }
790}
791
792func Test_macAddressToUint32Array(t *testing.T) {
793 type args struct {
794 mac string
795 }
796 tests := []struct {
797 name string
798 args args
799 want []uint32
800 }{
801 // TODO: Add test cases.
802 {"macAddressToUint32Array-1", args{mac: "00:00:00:00:00:01"}, []uint32{0, 0, 0, 0, 0, 1}},
803 {"macAddressToUint32Array-2", args{mac: "0abcdef"}, []uint32{11259375}},
804 {"macAddressToUint32Array-3", args{mac: "testing"}, []uint32{1, 2, 3, 4, 5, 6}},
805 }
806 for _, tt := range tests {
807 t.Run(tt.name, func(t *testing.T) {
808 if got := macAddressToUint32Array(tt.args.mac); !reflect.DeepEqual(got, tt.want) {
809 t.Errorf("macAddressToUint32Array() = %v, want %v", got, tt.want)
810 }
811 })
812 }
813}
814
815func TestDeviceHandler_handleOltIndication(t *testing.T) {
816
817 type args struct {
818 oltIndication *oop.OltIndication
819 }
820 tests := []struct {
821 name string
822 args args
823 }{
824 {"handleOltIndication-1", args{oltIndication: &oop.OltIndication{OperState: "up"}}},
825 {"handleOltIndication-2", args{oltIndication: &oop.OltIndication{OperState: "down"}}},
826 }
827 for _, tt := range tests {
828 t.Run(tt.name, func(t *testing.T) {
829 dh := newMockDeviceHandler()
npujarec5762e2020-01-01 14:08:48 +0530830 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
831 defer cancel()
832 dh.handleOltIndication(ctx, tt.args.oltIndication)
kdarapu891693b2019-09-16 12:33:49 +0530833 })
834 }
835}
836
837func TestDeviceHandler_AdoptDevice(t *testing.T) {
838 dh1 := newMockDeviceHandler()
839 dh2 := negativeDeviceHandler()
840 type args struct {
841 device *voltha.Device
842 }
843 tests := []struct {
844 name string
845 devicehandler *DeviceHandler
846 args args
847 }{
848 // TODO: Add test cases.
849 {"AdoptDevice-1", dh1, args{device: dh1.device}},
Naga Manjunath7615e552019-10-11 22:35:47 +0530850 {"AdoptDevice-2", dh2, args{device: dh2.device}},
kdarapu891693b2019-09-16 12:33:49 +0530851 }
852 for _, tt := range tests {
853 t.Run(tt.name, func(t *testing.T) {
854 //dh.doStateInit()
855 // context.
856 //dh.AdoptDevice(tt.args.device)
npujarec5762e2020-01-01 14:08:48 +0530857 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
858 defer cancel()
859 tt.devicehandler.postInit(ctx)
kdarapu891693b2019-09-16 12:33:49 +0530860 })
861 }
862}
863
864func TestDeviceHandler_activateONU(t *testing.T) {
865 dh := newMockDeviceHandler()
866 dh1 := negativeDeviceHandler()
867 type args struct {
868 intfID uint32
869 onuID int64
870 serialNum *oop.SerialNumber
871 serialNumber string
872 }
873 tests := []struct {
874 name string
875 devicehandler *DeviceHandler
876 args args
877 }{
Girish Gowdra38d533d2020-03-30 20:38:51 -0700878 {"activateONU-1", dh, args{intfID: 0, onuID: 1, serialNum: &oop.SerialNumber{VendorId: []byte("onu1")}}},
879 {"activateONU-2", dh, args{intfID: 1, onuID: 2, serialNum: &oop.SerialNumber{VendorId: []byte("onu2")}}},
880 {"activateONU-3", dh1, args{intfID: 0, onuID: 1, serialNum: &oop.SerialNumber{VendorId: []byte("onu1")}}},
881 {"activateONU-4", dh1, args{intfID: 1, onuID: 2, serialNum: &oop.SerialNumber{VendorId: []byte("onu2")}}},
kdarapu891693b2019-09-16 12:33:49 +0530882 }
883 for _, tt := range tests {
884 t.Run(tt.name, func(t *testing.T) {
885
npujarec5762e2020-01-01 14:08:48 +0530886 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
887 defer cancel()
888 tt.devicehandler.activateONU(ctx, tt.args.intfID, tt.args.onuID,
kdarapu891693b2019-09-16 12:33:49 +0530889 tt.args.serialNum, tt.args.serialNumber)
890 })
891 }
892}
893
894func TestDeviceHandler_start(t *testing.T) {
895 dh := newMockDeviceHandler()
896 dh1 := negativeDeviceHandler()
897 dh.start(context.Background())
898 dh.stop(context.Background())
899
900 dh1.start(context.Background())
901 dh1.stop(context.Background())
902
903}
904
905func TestDeviceHandler_PacketOut(t *testing.T) {
906 dh1 := newMockDeviceHandler()
907 dh2 := negativeDeviceHandler()
908 acts := []*ofp.OfpAction{
909 fu.SetField(fu.Metadata_ofp(uint64(ofp.OfpInstructionType_OFPIT_WRITE_METADATA))),
910 fu.SetField(fu.VlanVid(uint32(ofp.OfpVlanId_OFPVID_PRESENT) | 101)),
911 fu.Output(1),
912 }
913 pktout := &ofp.OfpPacketOut{BufferId: 0, InPort: 1, Actions: acts, Data: []byte("AYDCAAAOAODsSE5TiMwCBwQA4OxITlIEBQUwLzUxBgIAFAgEMC81MQoJbG9jYWxob3N0EBwFAawbqqACAAAAoRAxLjMuNi4xLjQuMS40NDEz/gYAgMILAgD+GQCAwgkDAAAAAGQAAAAAAAAAAgICAgICAgL+GQCAwgoDAAAAAGQAAAAAAAAAAgICAgICAgIAAA==")}
914 type args struct {
915 egressPortNo int
916 packet *of.OfpPacketOut
917 }
918 tests := []struct {
919 name string
920 devicehandler *DeviceHandler
921 args args
922 wantErr bool
923 }{
924 // TODO: Add test cases.
925 //{"test1", args{egressPortNo: 0, packet: &ofp.OfpPacketOut{}}, true},
926 {"PacketOut-1", dh1, args{egressPortNo: 0, packet: pktout}, false},
927 {"PacketOut-2", dh2, args{egressPortNo: 1, packet: pktout}, false},
Matteo Scandolo2c0d2742020-06-10 11:28:42 -0700928 {"PacketOut-3", dh2, args{egressPortNo: 4112, packet: pktout}, false},
929 {"PacketOut-4", dh1, args{egressPortNo: 1048577, packet: pktout}, false},
930 {"PacketOut-5", dh2, args{egressPortNo: 1048576, packet: pktout}, false},
kdarapu891693b2019-09-16 12:33:49 +0530931 }
932 for _, tt := range tests {
933 t.Run(tt.name, func(t *testing.T) {
934 dh := tt.devicehandler
npujarec5762e2020-01-01 14:08:48 +0530935 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
936 defer cancel()
937 if err := dh.PacketOut(ctx, tt.args.egressPortNo, tt.args.packet); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530938 t.Errorf("DeviceHandler.PacketOut() error = %v, wantErr %v", err, tt.wantErr)
939 }
940 })
941 }
942}
943
944//
945func TestDeviceHandler_doStateUp(t *testing.T) {
946 dh1 := newMockDeviceHandler()
947 dh2 := newMockDeviceHandler()
948
Thomas Lee S985938d2020-05-04 11:40:41 +0530949 dh2.device.Id = ""
kdarapu891693b2019-09-16 12:33:49 +0530950 dh3 := negativeDeviceHandler()
951
952 tests := []struct {
953 name string
954 devicehandler *DeviceHandler
955 wantErr bool
956 }{
957 {"dostateup-1", dh1, false},
958 {"dostateup-2", dh2, false},
959 {"dostateup-3", dh3, true},
960 }
961 for _, tt := range tests {
962 t.Run(tt.name, func(t *testing.T) {
npujarec5762e2020-01-01 14:08:48 +0530963 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
964 defer cancel()
965 if err := tt.devicehandler.doStateUp(ctx); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530966 t.Logf("DeviceHandler.doStateUp() error = %v, wantErr %v", err, tt.wantErr)
967 }
Thomas Lee S85f37312020-04-03 17:06:12 +0530968 tt.devicehandler.stopCollector <- true //stop the stat collector invoked from doStateUp
kdarapu891693b2019-09-16 12:33:49 +0530969 })
970 }
971}
972func TestDeviceHandler_doStateDown(t *testing.T) {
973 dh1 := newMockDeviceHandler()
974 dh2 := negativeDeviceHandler()
975 dh3 := newMockDeviceHandler()
976 dh3.device.OperStatus = voltha.OperStatus_UNKNOWN
977 tests := []struct {
978 name string
979 devicehandler *DeviceHandler
980 wantErr bool
981 }{
982 {"dostatedown-1", dh1, false},
983 {"dostatedown-2", dh2, true},
984 {"dostatedown-2", dh3, true},
985 }
986 for _, tt := range tests {
987 t.Run(tt.name, func(t *testing.T) {
npujarec5762e2020-01-01 14:08:48 +0530988 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
989 defer cancel()
990 if err := tt.devicehandler.doStateDown(ctx); (err != nil) != tt.wantErr {
kdarapu891693b2019-09-16 12:33:49 +0530991 t.Logf("DeviceHandler.doStateDown() error = %v", err)
992 }
993 })
994 }
995}
996
997func TestDeviceHandler_GetOfpDeviceInfo(t *testing.T) {
998 dh1 := newMockDeviceHandler()
999 dh2 := negativeDeviceHandler()
1000 type args struct {
1001 device *voltha.Device
1002 }
1003 tests := []struct {
1004 name string
1005 devicehandler *DeviceHandler
1006 args args
1007 wantErr bool
1008 }{
1009 // TODO: Add test cases.
1010 {"GetOfpDeviceInfo-1", dh1, args{dh1.device}, false},
1011 {"GetOfpDeviceInfo-2", dh1, args{&voltha.Device{}}, false},
1012 {"GetOfpDeviceInfo-3", dh2, args{dh1.device}, false},
1013 }
1014 for _, tt := range tests {
1015 t.Run(tt.name, func(t *testing.T) {
1016 dh := tt.devicehandler
1017 _, err := dh.GetOfpDeviceInfo(tt.args.device)
1018 if (err != nil) != tt.wantErr {
1019 t.Errorf("DeviceHandler.GetOfpDeviceInfo() error = %v, wantErr %v", err, tt.wantErr)
1020 return
1021 }
1022 })
1023 }
1024}
1025
kdarapu891693b2019-09-16 12:33:49 +05301026func TestDeviceHandler_onuDiscIndication(t *testing.T) {
1027
1028 dh1 := newMockDeviceHandler()
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301029 dh1.discOnus = sync.Map{}
1030 dh1.discOnus.Store("onu1", true)
1031 dh1.discOnus.Store("onu2", false)
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301032 dh1.discOnus.Store("onu3", true)
1033 dh1.discOnus.Store("onu4", true)
1034 dh1.onus = sync.Map{}
1035 dh1.onus.Store("onu3", NewOnuDevice("onu3", "onu3", "onu3", 3, 3, "onu3", true))
1036 dh1.onus.Store("onu4", NewOnuDevice("onu4", "onu4", "onu4", 4, 4, "onu4", true))
kdarapu891693b2019-09-16 12:33:49 +05301037 dh2 := negativeDeviceHandler()
1038 type args struct {
1039 onuDiscInd *oop.OnuDiscIndication
1040 sn string
1041 }
1042 tests := []struct {
1043 name string
1044 devicehandler *DeviceHandler
1045 args args
1046 }{
1047 // TODO: Add test cases.
1048 {"onuDiscIndication-1", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}}},
1049 {"onuDiscIndication-2", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{}}}},
1050 {"onuDiscIndication-3", dh1, args{onuDiscInd: &oop.OnuDiscIndication{SerialNumber: &oop.SerialNumber{}}}},
1051 {"onuDiscIndication-4", dh1, args{onuDiscInd: &oop.OnuDiscIndication{}}},
1052 {"onuDiscIndication-5", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}, sn: "onu1"}},
1053 {"onuDiscIndication-6", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}, sn: "onu2"}},
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301054 {"onuDiscIndication-7", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 3, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}, sn: "onu3"}},
1055 {"onuDiscIndication-8", dh1, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 3, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}, sn: "onu4"}},
1056 {"onuDiscIndication-9", dh2, args{onuDiscInd: &oop.OnuDiscIndication{IntfId: 1, SerialNumber: &oop.SerialNumber{VendorId: []byte("TWSH"), VendorSpecific: []byte("1234")}}}},
kdarapu891693b2019-09-16 12:33:49 +05301057 }
1058 for _, tt := range tests {
1059 t.Run(tt.name, func(t *testing.T) {
npujarec5762e2020-01-01 14:08:48 +05301060 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
1061 defer cancel()
1062 tt.devicehandler.onuDiscIndication(ctx, tt.args.onuDiscInd, tt.args.sn)
kdarapu891693b2019-09-16 12:33:49 +05301063 })
1064 }
1065}
1066
1067func TestDeviceHandler_populateDeviceInfo(t *testing.T) {
1068 dh1 := newMockDeviceHandler()
1069 dh2 := negativeDeviceHandler()
1070 tests := []struct {
1071 name string
1072 devicehandler *DeviceHandler
1073
1074 wantErr bool
1075 }{
1076 // TODO: Add test cases.
1077 {"populateDeviceInfo-1", dh1, false},
1078 {"populateDeviceInfo-2", dh1, true},
1079 {"populateDeviceInfo-3", dh1, true},
1080 {"populateDeviceInfo-4", dh1, true},
1081 {"populateDeviceInfo-5", dh2, true},
1082 }
1083 for _, tt := range tests {
1084 t.Run(tt.name, func(t *testing.T) {
1085
Neha Sharma96b7bf22020-06-15 10:37:32 +00001086 _, err := tt.devicehandler.populateDeviceInfo(context.Background())
kdarapu891693b2019-09-16 12:33:49 +05301087 if (err != nil) != tt.wantErr {
1088 t.Errorf("DeviceHandler.populateDeviceInfo() error = %v, wantErr %v", err, tt.wantErr)
1089 return
1090 }
1091
1092 })
1093 }
1094}
1095
1096func TestDeviceHandler_readIndications(t *testing.T) {
1097 dh1 := newMockDeviceHandler()
1098 dh2 := newMockDeviceHandler()
kdarapu891693b2019-09-16 12:33:49 +05301099 dh3 := newMockDeviceHandler()
1100 dh3.device.AdminState = voltha.AdminState_DISABLED
1101 dh4 := negativeDeviceHandler()
1102 tests := []struct {
1103 name string
1104 devicehandler *DeviceHandler
1105 }{
1106 // TODO: Add test cases.
1107 {"readIndications-1", dh1},
1108 {"readIndications-2", dh2},
1109 {"readIndications-3", dh2},
1110 {"readIndications-4", dh2},
1111 {"readIndications-5", dh2},
1112 {"readIndications-6", dh3},
1113 {"readIndications-7", dh3},
1114 {"readIndications-8", dh4},
1115 }
1116 for _, tt := range tests {
1117 t.Run(tt.name, func(t *testing.T) {
npujarec5762e2020-01-01 14:08:48 +05301118 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
1119 defer cancel()
1120 tt.devicehandler.readIndications(ctx)
kdarapu891693b2019-09-16 12:33:49 +05301121 })
1122 }
1123}
Naga Manjunath7615e552019-10-11 22:35:47 +05301124
1125func Test_startCollector(t *testing.T) {
1126 type args struct {
1127 dh *DeviceHandler
1128 }
1129 dh := newMockDeviceHandler()
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001130 dh.coreProxy.(*mocks.MockCoreProxy).DevicePorts[dh.device.Id] = []*voltha.Port{
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301131 {PortNo: 1, Label: "pon", Type: voltha.Port_PON_OLT},
1132 {PortNo: 1048577, Label: "nni", Type: voltha.Port_ETHERNET_NNI},
1133 {PortNo: 1048578, Label: "nni", Type: voltha.Port_ETHERNET_NNI},
1134 }
Naga Manjunath7615e552019-10-11 22:35:47 +05301135 dh.portStats.NorthBoundPort = make(map[uint32]*NniPort)
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301136 dh.portStats.NorthBoundPort[1] = &NniPort{Name: "OLT-1"}
1137 dh.portStats.NorthBoundPort[2] = &NniPort{Name: "OLT-1"}
Naga Manjunath7615e552019-10-11 22:35:47 +05301138 dh.portStats.SouthBoundPort = make(map[uint32]*PonPort)
1139 dh.portStats.Device = dh
1140 for i := 0; i < 16; i++ {
1141 dh.portStats.SouthBoundPort[uint32(i)] = &PonPort{DeviceID: "OLT-1"}
1142 }
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301143 dh1 := newMockDeviceHandler()
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001144 dh1.coreProxy.(*mocks.MockCoreProxy).DevicePorts[dh.device.Id] = []*voltha.Port{}
Naga Manjunath7615e552019-10-11 22:35:47 +05301145 tests := []struct {
1146 name string
1147 args args
1148 }{
1149 // TODO: Add test cases.
1150 {"StartCollector-1", args{dh}},
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301151 {"StartCollector-2", args{dh1}},
Naga Manjunath7615e552019-10-11 22:35:47 +05301152 }
1153 for _, tt := range tests {
1154 t.Run(tt.name, func(t *testing.T) {
1155 go func() {
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301156 time.Sleep(1 * time.Second) // simulated wait time to stop startCollector
Naga Manjunath7615e552019-10-11 22:35:47 +05301157 tt.args.dh.stopCollector <- true
1158 }()
Neha Sharma96b7bf22020-06-15 10:37:32 +00001159 startCollector(context.Background(), tt.args.dh)
Naga Manjunath7615e552019-10-11 22:35:47 +05301160 })
1161 }
1162}