blob: 2f181998f483189180ee0f93cb40ccf73d9574d6 [file] [log] [blame]
Matteo Scandolo99f18462019-10-28 14:14:28 -07001/*
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
17package devices
18
19import (
20 "context"
21 "errors"
Matteo Scandolof9d43412021-01-12 11:11:34 -080022 "github.com/opencord/bbsim/internal/bbsim/types"
Matteo Scandolo4f4ac792020-10-01 16:33:21 -070023 "github.com/opencord/voltha-protos/v4/go/common"
24 "github.com/opencord/voltha-protos/v4/go/ext/config"
Shrey Baid688b4242020-07-10 20:40:10 +053025 "time"
26
Matteo Scandolo4f4ac792020-10-01 16:33:21 -070027 "github.com/opencord/voltha-protos/v4/go/openolt"
28 "github.com/opencord/voltha-protos/v4/go/tech_profile"
Matteo Scandolo99f18462019-10-28 14:14:28 -070029 "google.golang.org/grpc"
Matteo Scandolo99f18462019-10-28 14:14:28 -070030)
31
32type FlowAddSpy struct {
33 CallCount int
34 Calls map[int]*openolt.Flow
35}
36
37type mockClient struct {
38 FlowAddSpy
39 fail bool
40}
41
42func (s *mockClient) DisableOlt(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
43 return nil, errors.New("unimplemented-in-mock-client")
44}
45func (s *mockClient) ReenableOlt(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
46 return nil, errors.New("unimplemented-in-mock-client")
47}
48func (s *mockClient) ActivateOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
49 return nil, errors.New("unimplemented-in-mock-client")
50}
51func (s *mockClient) DeactivateOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
52 return nil, errors.New("unimplemented-in-mock-client")
53}
54func (s *mockClient) DeleteOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
55 return nil, errors.New("unimplemented-in-mock-client")
56}
57func (s *mockClient) OmciMsgOut(ctx context.Context, in *openolt.OmciMsg, opts ...grpc.CallOption) (*openolt.Empty, error) {
58 return nil, errors.New("unimplemented-in-mock-client")
59}
60func (s *mockClient) OnuPacketOut(ctx context.Context, in *openolt.OnuPacket, opts ...grpc.CallOption) (*openolt.Empty, error) {
61 return nil, errors.New("unimplemented-in-mock-client")
62}
63func (s *mockClient) UplinkPacketOut(ctx context.Context, in *openolt.UplinkPacket, opts ...grpc.CallOption) (*openolt.Empty, error) {
64 return nil, errors.New("unimplemented-in-mock-client")
65}
66func (s *mockClient) FlowAdd(ctx context.Context, in *openolt.Flow, opts ...grpc.CallOption) (*openolt.Empty, error) {
67 s.FlowAddSpy.CallCount++
68 if s.fail {
69 return nil, errors.New("fake-error")
70 }
71 s.FlowAddSpy.Calls[s.FlowAddSpy.CallCount] = in
72 return &openolt.Empty{}, nil
73}
74func (s *mockClient) FlowRemove(ctx context.Context, in *openolt.Flow, opts ...grpc.CallOption) (*openolt.Empty, error) {
75 return nil, errors.New("unimplemented-in-mock-client")
76}
77func (s *mockClient) HeartbeatCheck(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Heartbeat, error) {
78 return nil, errors.New("unimplemented-in-mock-client")
79}
80func (s *mockClient) EnablePonIf(ctx context.Context, in *openolt.Interface, opts ...grpc.CallOption) (*openolt.Empty, error) {
81 return nil, errors.New("unimplemented-in-mock-client")
82}
83func (s *mockClient) DisablePonIf(ctx context.Context, in *openolt.Interface, opts ...grpc.CallOption) (*openolt.Empty, error) {
84 return nil, errors.New("unimplemented-in-mock-client")
85}
86func (s *mockClient) GetDeviceInfo(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.DeviceInfo, error) {
87 return nil, errors.New("unimplemented-in-mock-client")
88}
89func (s *mockClient) Reboot(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
90 return nil, errors.New("unimplemented-in-mock-client")
91}
92func (s *mockClient) CollectStatistics(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
93 return nil, errors.New("unimplemented-in-mock-client")
94}
95func (s *mockClient) CreateTrafficSchedulers(ctx context.Context, in *tech_profile.TrafficSchedulers, opts ...grpc.CallOption) (*openolt.Empty, error) {
96 return nil, errors.New("unimplemented-in-mock-client")
97}
98func (s *mockClient) RemoveTrafficSchedulers(ctx context.Context, in *tech_profile.TrafficSchedulers, opts ...grpc.CallOption) (*openolt.Empty, error) {
99 return nil, errors.New("unimplemented-in-mock-client")
100}
101func (s *mockClient) CreateTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*openolt.Empty, error) {
102 return nil, errors.New("unimplemented-in-mock-client")
103}
104func (s *mockClient) RemoveTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*openolt.Empty, error) {
105 return nil, errors.New("unimplemented-in-mock-client")
106}
107func (s *mockClient) EnableIndication(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (openolt.Openolt_EnableIndicationClient, error) {
108 return nil, errors.New("unimplemented-in-mock-client")
109}
Matteo Scandolo618a6582020-09-09 12:21:29 -0700110func (s *mockClient) PerformGroupOperation(ctx context.Context, group *openolt.Group, opts ...grpc.CallOption) (*openolt.Empty, error) {
111 return nil, errors.New("unimplemented-in-mock-client")
112}
113func (s *mockClient) DeleteGroup(ctx context.Context, group *openolt.Group, opts ...grpc.CallOption) (*openolt.Empty, error) {
114 return nil, errors.New("unimplemented-in-mock-client")
115}
116func (s *mockClient) GetExtValue(ctx context.Context, in *openolt.ValueParam, opts ...grpc.CallOption) (*common.ReturnValues, error) {
117 return nil, errors.New("unimplemented-in-mock-client")
118}
119func (s *mockClient) OnuItuPonAlarmSet(ctx context.Context, in *config.OnuItuPonAlarm, opts ...grpc.CallOption) (*openolt.Empty, error) {
120 return nil, errors.New("unimplemented-in-mock-client")
121}
122func (s *mockClient) GetLogicalOnuDistanceZero(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuLogicalDistance, error) {
123 return nil, errors.New("unimplemented-in-mock-client")
124}
125func (s *mockClient) GetLogicalOnuDistance(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuLogicalDistance, error) {
126 return nil, errors.New("unimplemented-in-mock-client")
127}
Matteo Scandolo99f18462019-10-28 14:14:28 -0700128
Matteo Scandolo96f89192021-03-12 13:17:26 -0800129func (s *mockClient) GetGemPortStatistics(ctx context.Context, in *openolt.OnuPacket, opts ...grpc.CallOption) (*openolt.GemPortStatistics, error) {
130 return nil, errors.New("unimplemented-in-mock-client")
131}
132
133func (s *mockClient) GetOnuStatistics(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuStatistics, error) {
134 return nil, errors.New("unimplemented-in-mock-client")
135}
136
Matteo Scandoloc1147092019-10-29 09:38:33 -0700137// this method creates a fake ONU used in the tests
Matteo Scandolo4a036262020-08-17 15:56:13 -0700138func createMockOnu(id uint32, ponPortId uint32) *Onu {
Matteo Scandolo99f18462019-10-28 14:14:28 -0700139 o := Onu{
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800140 ID: id,
141 PonPortID: ponPortId,
142 PortNo: 0,
Matteo Scandolo4a036262020-08-17 15:56:13 -0700143 PonPort: &PonPort{
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800144 AllocatedGemPorts: make(map[uint16]*openolt.SerialNumber),
145 AllocatedAllocIds: make(map[uint16]*openolt.SerialNumber),
146 Olt: &OltDevice{},
Matteo Scandolo4a036262020-08-17 15:56:13 -0700147 },
Matteo Scandolo99f18462019-10-28 14:14:28 -0700148 }
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800149 o.SerialNumber = NewSN(0, ponPortId, o.ID)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800150 o.Channel = make(chan types.Message, 10)
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800151 return &o
Matteo Scandolo99f18462019-10-28 14:14:28 -0700152}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700153
154// this method creates a real ONU to be used in the tests
155func createTestOnu() *Onu {
156 olt := OltDevice{
157 ID: 0,
158 }
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800159
160 pon := CreatePonPort(&olt, 1)
161
162 onu := CreateONU(&olt, pon, 1, time.Duration(1*time.Millisecond), true)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100163 // NOTE we need this in order to create the OnuChannel
Matteo Scandolocedde462021-03-09 17:37:16 -0800164 _ = onu.InternalState.Event(OnuTxInitialize)
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800165 onu.DiscoveryRetryDelay = 100 * time.Millisecond
Matteo Scandoloc1147092019-10-29 09:38:33 -0700166 return onu
167}