blob: 86c4b4cec77299fb5e4143e8d37254c956a662da [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 Scandolo8a574812021-05-20 15:18:53 -070022 bbsim_common "github.com/opencord/bbsim/internal/common"
Matteo Scandoloef4e8f82021-05-17 11:20:49 -070023 omcilib "github.com/opencord/bbsim/internal/common/omci"
Matteo Scandolo1f9f4b22021-12-14 11:51:55 -080024 "github.com/opencord/voltha-protos/v5/go/extension"
Matteo Scandolo8a574812021-05-20 15:18:53 -070025 log "github.com/sirupsen/logrus"
Holger Hildebrandtc10bab12021-04-27 09:23:48 +000026 "time"
27
Matteo Scandolof9d43412021-01-12 11:11:34 -080028 "github.com/opencord/bbsim/internal/bbsim/types"
David K. Bainbridgec415efe2021-08-19 13:05:21 +000029 "github.com/opencord/voltha-protos/v5/go/ext/config"
Shrey Baid688b4242020-07-10 20:40:10 +053030
David K. Bainbridgec415efe2021-08-19 13:05:21 +000031 "github.com/opencord/voltha-protos/v5/go/openolt"
32 "github.com/opencord/voltha-protos/v5/go/tech_profile"
Matteo Scandolo99f18462019-10-28 14:14:28 -070033 "google.golang.org/grpc"
Matteo Scandolo99f18462019-10-28 14:14:28 -070034)
35
Matteo Scandolo8a574812021-05-20 15:18:53 -070036func init() {
37 bbsim_common.SetLogLevel(log.StandardLogger(), "error", false)
38}
39
Matteo Scandolo99f18462019-10-28 14:14:28 -070040type FlowAddSpy struct {
41 CallCount int
42 Calls map[int]*openolt.Flow
43}
44
45type mockClient struct {
46 FlowAddSpy
47 fail bool
48}
49
50func (s *mockClient) DisableOlt(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
51 return nil, errors.New("unimplemented-in-mock-client")
52}
53func (s *mockClient) ReenableOlt(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
54 return nil, errors.New("unimplemented-in-mock-client")
55}
56func (s *mockClient) ActivateOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
57 return nil, errors.New("unimplemented-in-mock-client")
58}
59func (s *mockClient) DeactivateOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
60 return nil, errors.New("unimplemented-in-mock-client")
61}
62func (s *mockClient) DeleteOnu(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.Empty, error) {
63 return nil, errors.New("unimplemented-in-mock-client")
64}
65func (s *mockClient) OmciMsgOut(ctx context.Context, in *openolt.OmciMsg, opts ...grpc.CallOption) (*openolt.Empty, error) {
66 return nil, errors.New("unimplemented-in-mock-client")
67}
68func (s *mockClient) OnuPacketOut(ctx context.Context, in *openolt.OnuPacket, opts ...grpc.CallOption) (*openolt.Empty, error) {
69 return nil, errors.New("unimplemented-in-mock-client")
70}
71func (s *mockClient) UplinkPacketOut(ctx context.Context, in *openolt.UplinkPacket, opts ...grpc.CallOption) (*openolt.Empty, error) {
72 return nil, errors.New("unimplemented-in-mock-client")
73}
74func (s *mockClient) FlowAdd(ctx context.Context, in *openolt.Flow, opts ...grpc.CallOption) (*openolt.Empty, error) {
75 s.FlowAddSpy.CallCount++
76 if s.fail {
77 return nil, errors.New("fake-error")
78 }
79 s.FlowAddSpy.Calls[s.FlowAddSpy.CallCount] = in
80 return &openolt.Empty{}, nil
81}
82func (s *mockClient) FlowRemove(ctx context.Context, in *openolt.Flow, opts ...grpc.CallOption) (*openolt.Empty, error) {
83 return nil, errors.New("unimplemented-in-mock-client")
84}
85func (s *mockClient) HeartbeatCheck(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Heartbeat, error) {
86 return nil, errors.New("unimplemented-in-mock-client")
87}
88func (s *mockClient) EnablePonIf(ctx context.Context, in *openolt.Interface, opts ...grpc.CallOption) (*openolt.Empty, error) {
89 return nil, errors.New("unimplemented-in-mock-client")
90}
91func (s *mockClient) DisablePonIf(ctx context.Context, in *openolt.Interface, opts ...grpc.CallOption) (*openolt.Empty, error) {
92 return nil, errors.New("unimplemented-in-mock-client")
93}
94func (s *mockClient) GetDeviceInfo(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.DeviceInfo, error) {
95 return nil, errors.New("unimplemented-in-mock-client")
96}
97func (s *mockClient) Reboot(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
98 return nil, errors.New("unimplemented-in-mock-client")
99}
100func (s *mockClient) CollectStatistics(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (*openolt.Empty, error) {
101 return nil, errors.New("unimplemented-in-mock-client")
102}
103func (s *mockClient) CreateTrafficSchedulers(ctx context.Context, in *tech_profile.TrafficSchedulers, opts ...grpc.CallOption) (*openolt.Empty, error) {
104 return nil, errors.New("unimplemented-in-mock-client")
105}
106func (s *mockClient) RemoveTrafficSchedulers(ctx context.Context, in *tech_profile.TrafficSchedulers, opts ...grpc.CallOption) (*openolt.Empty, error) {
107 return nil, errors.New("unimplemented-in-mock-client")
108}
109func (s *mockClient) CreateTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*openolt.Empty, error) {
110 return nil, errors.New("unimplemented-in-mock-client")
111}
112func (s *mockClient) RemoveTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*openolt.Empty, error) {
113 return nil, errors.New("unimplemented-in-mock-client")
114}
115func (s *mockClient) EnableIndication(ctx context.Context, in *openolt.Empty, opts ...grpc.CallOption) (openolt.Openolt_EnableIndicationClient, error) {
116 return nil, errors.New("unimplemented-in-mock-client")
117}
Matteo Scandolo618a6582020-09-09 12:21:29 -0700118func (s *mockClient) PerformGroupOperation(ctx context.Context, group *openolt.Group, opts ...grpc.CallOption) (*openolt.Empty, error) {
119 return nil, errors.New("unimplemented-in-mock-client")
120}
121func (s *mockClient) DeleteGroup(ctx context.Context, group *openolt.Group, opts ...grpc.CallOption) (*openolt.Empty, error) {
122 return nil, errors.New("unimplemented-in-mock-client")
123}
Matteo Scandolo1f9f4b22021-12-14 11:51:55 -0800124func (s *mockClient) GetExtValue(ctx context.Context, in *openolt.ValueParam, opts ...grpc.CallOption) (*extension.ReturnValues, error) {
Matteo Scandolo618a6582020-09-09 12:21:29 -0700125 return nil, errors.New("unimplemented-in-mock-client")
126}
127func (s *mockClient) OnuItuPonAlarmSet(ctx context.Context, in *config.OnuItuPonAlarm, opts ...grpc.CallOption) (*openolt.Empty, error) {
128 return nil, errors.New("unimplemented-in-mock-client")
129}
130func (s *mockClient) GetLogicalOnuDistanceZero(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuLogicalDistance, error) {
131 return nil, errors.New("unimplemented-in-mock-client")
132}
133func (s *mockClient) GetLogicalOnuDistance(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuLogicalDistance, error) {
134 return nil, errors.New("unimplemented-in-mock-client")
135}
Matteo Scandolo99f18462019-10-28 14:14:28 -0700136
Matteo Scandolo96f89192021-03-12 13:17:26 -0800137func (s *mockClient) GetGemPortStatistics(ctx context.Context, in *openolt.OnuPacket, opts ...grpc.CallOption) (*openolt.GemPortStatistics, error) {
138 return nil, errors.New("unimplemented-in-mock-client")
139}
140
141func (s *mockClient) GetOnuStatistics(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.OnuStatistics, error) {
142 return nil, errors.New("unimplemented-in-mock-client")
143}
144
Girish Gowdra62f24292021-05-12 16:28:39 -0700145func (s *mockClient) GetPonRxPower(ctx context.Context, in *openolt.Onu, opts ...grpc.CallOption) (*openolt.PonRxPowerData, error) {
146 return nil, errors.New("unimplemented-in-mock-client")
147}
148
Matteo Scandoloc1147092019-10-29 09:38:33 -0700149// this method creates a fake ONU used in the tests
Matteo Scandolo4a036262020-08-17 15:56:13 -0700150func createMockOnu(id uint32, ponPortId uint32) *Onu {
Matteo Scandolo99f18462019-10-28 14:14:28 -0700151 o := Onu{
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800152 ID: id,
153 PonPortID: ponPortId,
Matteo Scandolo4a036262020-08-17 15:56:13 -0700154 PonPort: &PonPort{
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800155 AllocatedGemPorts: make(map[uint16]*openolt.SerialNumber),
Girish Gowdra08b58392022-01-31 16:59:24 -0800156 AllocatedAllocIds: make(map[uint16]*AllocIDKey),
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800157 Olt: &OltDevice{},
Matteo Scandolo4a036262020-08-17 15:56:13 -0700158 },
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000159 OmciResponseRate: 10,
160 OmciMsgCounter: 0,
Matteo Scandolo99f18462019-10-28 14:14:28 -0700161 }
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800162 o.SerialNumber = NewSN(0, ponPortId, o.ID)
Matteo Scandolof9d43412021-01-12 11:11:34 -0800163 o.Channel = make(chan types.Message, 10)
Matteo Scandoloef4e8f82021-05-17 11:20:49 -0700164
Matteo Scandolo8a574812021-05-20 15:18:53 -0700165 unis := []UniPortIf{
166 &UniPort{ID: 0, Onu: &o, PortNo: 16, MeId: omcilib.GenerateUniPortEntityId(1), logger: uniLogger},
167 &UniPort{ID: 1, Onu: &o, PortNo: 17, MeId: omcilib.GenerateUniPortEntityId(2), logger: uniLogger},
168 &UniPort{ID: 2, Onu: &o, PortNo: 18, MeId: omcilib.GenerateUniPortEntityId(3), logger: uniLogger},
169 &UniPort{ID: 3, Onu: &o, PortNo: 19, MeId: omcilib.GenerateUniPortEntityId(4), logger: uniLogger},
Matteo Scandoloef4e8f82021-05-17 11:20:49 -0700170 }
171
172 o.UniPorts = unis
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800173 return &o
Matteo Scandolo99f18462019-10-28 14:14:28 -0700174}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700175
176// this method creates a real ONU to be used in the tests
177func createTestOnu() *Onu {
Matteo Scandolo8a574812021-05-20 15:18:53 -0700178 nextCtag := map[string]int{}
179 nextStag := map[string]int{}
180
Matteo Scandoloc1147092019-10-29 09:38:33 -0700181 olt := OltDevice{
Andrea Campanellabe1b7cf2021-04-30 09:53:40 +0200182 ID: 0,
183 OmciResponseRate: 10,
Matteo Scandoloc1147092019-10-29 09:38:33 -0700184 }
Matteo Scandolo4b077aa2021-02-16 17:33:37 -0800185
186 pon := CreatePonPort(&olt, 1)
187
Matteo Scandolo8a574812021-05-20 15:18:53 -0700188 onu := CreateONU(&olt, pon, 1, time.Duration(1*time.Millisecond), nextCtag, nextStag, true)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100189 // NOTE we need this in order to create the OnuChannel
Matteo Scandolocedde462021-03-09 17:37:16 -0800190 _ = onu.InternalState.Event(OnuTxInitialize)
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800191 onu.DiscoveryRetryDelay = 100 * time.Millisecond
Matteo Scandoloc1147092019-10-29 09:38:33 -0700192 return onu
193}