Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 1 | /* |
| 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 omci |
| 18 | |
| 19 | import ( |
Matteo Scandolo | cfedba4 | 2022-02-14 16:08:54 -0800 | [diff] [blame] | 20 | "fmt" |
| 21 | "github.com/google/gopacket" |
| 22 | "github.com/opencord/bbsim/internal/common" |
Elia Battiston | ac63b11 | 2022-01-12 18:40:49 +0100 | [diff] [blame] | 23 | "testing" |
| 24 | |
Andrea Campanella | 10426e2 | 2021-10-15 17:58:04 +0200 | [diff] [blame] | 25 | "github.com/opencord/omci-lib-go/v2" |
| 26 | me "github.com/opencord/omci-lib-go/v2/generated" |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 27 | "github.com/stretchr/testify/assert" |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | func TestEntityID_ToUint16(t *testing.T) { |
| 31 | var id EntityID |
| 32 | var res uint16 |
| 33 | |
| 34 | id = EntityID{0x01, 0x01} |
| 35 | res = id.ToUint16() |
| 36 | assert.Equal(t, uint16(257), res) |
| 37 | |
| 38 | id = EntityID{0x00, 0x00} |
| 39 | res = id.ToUint16() |
| 40 | assert.Equal(t, uint16(0), res) |
| 41 | } |
| 42 | |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 43 | func TestEntityID_FromUint16(t *testing.T) { |
| 44 | id := uint16(257) |
| 45 | e := EntityID{}.FromUint16(id) |
| 46 | |
| 47 | assert.Equal(t, e.ToString(), "0101") |
| 48 | assert.Equal(t, e.ToUint16(), id) |
| 49 | } |
| 50 | |
| 51 | func TestEntityID_Equals(t *testing.T) { |
| 52 | a := EntityID{0x01, 0x01} |
| 53 | b := EntityID{0x01, 0x01} |
| 54 | c := EntityID{0x01, 0x02} |
| 55 | |
| 56 | assert.True(t, a.Equals(b)) |
| 57 | assert.False(t, a.Equals(c)) |
| 58 | } |
| 59 | |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 60 | func Test_GenerateMibDatabase(t *testing.T) { |
Matteo Scandolo | cfedba4 | 2022-02-14 16:08:54 -0800 | [diff] [blame] | 61 | common.Config = &common.GlobalConfig{ |
| 62 | BBSim: common.BBSimConfig{ |
| 63 | InjectOmciUnknownAttributes: false, |
| 64 | }, |
| 65 | } |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 66 | const uniPortCount = 4 |
Elia Battiston | b7bea22 | 2022-02-18 16:25:00 +0100 | [diff] [blame] | 67 | mibDb, err := GenerateMibDatabase(uniPortCount, 0, common.XGSPON) |
Matteo Scandolo | ef4e8f8 | 2021-05-17 11:20:49 -0700 | [diff] [blame] | 68 | |
| 69 | expectedItems := 9 //ONU-G + 2 Circuit Packs (4 messages each) |
| 70 | expectedItems += 2 * uniPortCount // 1 PPTP and 1 UniG per UNI |
| 71 | expectedItems += 1 // ANI-G |
| 72 | expectedItems += 2 * tconts // T-CONT and traffic schedulers |
| 73 | expectedItems += 1 // ONU-2g |
| 74 | expectedItems += 2 * 8 * tconts // 8 upstream queues for each T-CONT, and we report each queue twice |
| 75 | expectedItems += 2 * 16 * uniPortCount // 16 downstream queues for each T-CONT, and we report each queue twice |
| 76 | |
| 77 | assert.NoError(t, err) |
| 78 | assert.NotNil(t, mibDb) |
| 79 | assert.Equal(t, expectedItems, int(mibDb.NumberOfCommands)) |
| 80 | |
| 81 | // now try to serialize all messages to check on the attributes |
| 82 | for _, entry := range mibDb.items { |
| 83 | reportedMe, meErr := me.LoadManagedEntityDefinition(entry.classId, me.ParamData{ |
| 84 | EntityID: entry.entityId.ToUint16(), |
| 85 | Attributes: entry.params, |
| 86 | }) |
| 87 | assert.NoError(t, meErr.GetError()) |
| 88 | |
| 89 | response := &omci.MibUploadNextResponse{ |
| 90 | MeBasePacket: omci.MeBasePacket{ |
| 91 | EntityClass: me.OnuDataClassID, |
| 92 | }, |
| 93 | ReportedME: *reportedMe, |
| 94 | } |
| 95 | |
| 96 | _, err := Serialize(omci.MibUploadNextResponseType, response, uint16(10)) |
| 97 | assert.NoError(t, err) |
| 98 | } |
| 99 | |
| 100 | } |
Elia Battiston | ac63b11 | 2022-01-12 18:40:49 +0100 | [diff] [blame] | 101 | |
| 102 | func Test_GenerateMibDatabase_withPots(t *testing.T) { |
Matteo Scandolo | cfedba4 | 2022-02-14 16:08:54 -0800 | [diff] [blame] | 103 | common.Config = &common.GlobalConfig{ |
| 104 | BBSim: common.BBSimConfig{ |
| 105 | InjectOmciUnknownAttributes: false, |
| 106 | }, |
| 107 | } |
Elia Battiston | ac63b11 | 2022-01-12 18:40:49 +0100 | [diff] [blame] | 108 | const uniPortCount = 4 |
| 109 | const potsPortCount = 1 |
Elia Battiston | b7bea22 | 2022-02-18 16:25:00 +0100 | [diff] [blame] | 110 | mibDb, err := GenerateMibDatabase(uniPortCount, potsPortCount, common.XGSPON) |
Elia Battiston | ac63b11 | 2022-01-12 18:40:49 +0100 | [diff] [blame] | 111 | |
| 112 | expectedItems := 13 //ONU-G + 3 Circuit Packs (4 messages each) |
| 113 | expectedItems += 2 * (uniPortCount + potsPortCount) // 1 PPTP and 1 UniG per UNI |
| 114 | expectedItems += 1 // ANI-G |
| 115 | expectedItems += 2 * tconts // T-CONT and traffic schedulers |
| 116 | expectedItems += 1 // ONU-2g |
| 117 | expectedItems += 2 * 8 * tconts // 8 upstream queues for each T-CONT, and we report each queue twice |
| 118 | expectedItems += 2 * 16 * (uniPortCount + potsPortCount) // 16 downstream queues for each T-CONT, and we report each queue twice |
| 119 | |
| 120 | assert.NoError(t, err) |
| 121 | assert.NotNil(t, mibDb) |
| 122 | assert.Equal(t, expectedItems, int(mibDb.NumberOfCommands)) |
| 123 | |
| 124 | // now try to serialize all messages to check on the attributes |
| 125 | for _, entry := range mibDb.items { |
| 126 | reportedMe, meErr := me.LoadManagedEntityDefinition(entry.classId, me.ParamData{ |
| 127 | EntityID: entry.entityId.ToUint16(), |
| 128 | Attributes: entry.params, |
| 129 | }) |
| 130 | assert.NoError(t, meErr.GetError()) |
| 131 | |
| 132 | response := &omci.MibUploadNextResponse{ |
| 133 | MeBasePacket: omci.MeBasePacket{ |
| 134 | EntityClass: me.OnuDataClassID, |
| 135 | }, |
| 136 | ReportedME: *reportedMe, |
| 137 | } |
| 138 | |
| 139 | _, err := Serialize(omci.MibUploadNextResponseType, response, uint16(10)) |
| 140 | assert.NoError(t, err) |
| 141 | } |
| 142 | |
| 143 | } |
Matteo Scandolo | cfedba4 | 2022-02-14 16:08:54 -0800 | [diff] [blame] | 144 | |
| 145 | func Test_GenerateMibDatabase_withUnkownAttrs(t *testing.T) { |
| 146 | |
| 147 | common.Config = &common.GlobalConfig{ |
| 148 | BBSim: common.BBSimConfig{ |
| 149 | InjectOmciUnknownAttributes: true, |
| 150 | }, |
| 151 | } |
| 152 | |
| 153 | const uniPortCount = 4 |
| 154 | const baseMibEntries = 291 // see Test_GenerateMibDatabase for breakdown |
| 155 | const expectedMibEntries = baseMibEntries + 1 // expecting one hardcoded packet |
| 156 | mibDb, err := GenerateMibDatabase(uniPortCount, 0, common.XGSPON) |
| 157 | |
| 158 | assert.NoError(t, err) |
| 159 | assert.NotNil(t, mibDb) |
| 160 | assert.Equal(t, expectedMibEntries, int(mibDb.NumberOfCommands)) |
| 161 | |
| 162 | entry := mibDb.items[expectedMibEntries-1] // select the last entry, it's the hardcoded packet |
| 163 | fmt.Println(entry.packet) |
| 164 | assert.NotNil(t, entry) |
| 165 | assert.Equal(t, me.ClassID(37), entry.classId) |
| 166 | assert.Nil(t, entry.entityId) |
| 167 | assert.Equal(t, 0, len(entry.params)) |
| 168 | assert.NotNil(t, entry.packet) |
| 169 | |
| 170 | // check that we're generating a valid OMCI payload |
| 171 | packet := gopacket.NewPacket(entry.packet, omci.LayerTypeOMCI, gopacket.Lazy) |
| 172 | omciLayer := packet.Layer(omci.LayerTypeOMCI) |
| 173 | assert.NotNil(t, omciLayer) |
| 174 | omciMsg, ok := omciLayer.(*omci.OMCI) |
| 175 | assert.True(t, ok) |
| 176 | assert.Equal(t, omci.MibUploadNextResponseType, omciMsg.MessageType) |
| 177 | assert.Equal(t, uint16(33066), omciMsg.TransactionID) |
| 178 | } |