1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import unittest
from hardware import detect_utils
from hardware.tests.utils import sample
class TestParsing(unittest.TestCase):
def test_parse_lldp_tin(self):
return self.assertEqual(
detect_utils.parse_lldtool([], "eth0", LLDPTOOL_TIN.split('\n')),
LLDPTOOL_TIN_RESULTS)
def test_parse_lldp_tin2(self):
return self.assertEqual(
detect_utils.parse_lldtool([], "eth0", LLDPTOOL_TIN2.split('\n')),
LLDPTOOL_TIN2_RESULTS)
##############################################################################
# Output from real commands and expected results below
##############################################################################
LLDPTOOL_TIN = sample('lldptool_tin')
LLDPTOOL_TIN2 = sample('lldptool_tin2')
LLDPTOOL_TIN_RESULTS = [
('lldp', 'eth0', 'Chassis ID/MAC',
'f8:b1:56:15:e6:c6'),
('lldp', 'eth0', 'Port ID/Ifname', 'gi1_1'),
('lldp', 'eth0', 'Time to Live', '120'),
('lldp',
'eth0',
'MAC_PHY Configuration Status',
'Auto-negotiation supported and enabled'),
('lldp',
'eth0',
'MAC_PHY Configuration Status/PMD auto-negotiation capabilities',
'0x6c01'),
('lldp',
'eth0',
'MAC_PHY Configuration Status/PMD auto-negotiation capabilities/MAU type',
'1000 BaseTFD'),
('lldp', 'eth0', 'Port Description', 'gigabitethernet1_1'),
('lldp', 'eth0', 'System Name', 'Switch POD'),
('lldp', 'eth0', 'System Description', 'R1-2401 VRTX 1Gb Switch Module'),
('lldp', 'eth0', 'System Capabilities/System capabilities', 'Bridge'),
('lldp',
'eth0',
'System Capabilities/System capabilities/Enabled capabilities',
'Bridge')]
LLDPTOOL_TIN2_RESULTS = [
('lldp', 'eth0', 'Chassis ID/MAC', '58:f3:9c:81:ad:95'),
('lldp', 'eth0', 'Port ID/Ifname', 'Ethernet1_14'),
('lldp', 'eth0', 'Time to Live', '120'),
('lldp', 'eth0', 'Port Description', 'SRV-51D4-14'),
('lldp', 'eth0', 'System Name', 'AC3K-51D4-05.local.odcnoord.nl'),
('lldp',
'eth0',
'System Description',
'Cisco Nexus Operating System (NX-OS) Software 6.0(2)U2(5)'),
('lldp', 'eth0', 'System Capabilities/System capabilities',
'Bridge, Router'),
('lldp',
'eth0',
'System Capabilities/System capabilities/Enabled capabilities',
'Bridge, Router'),
('lldp', 'eth0', 'Management Address/IPv4', '10.100.5.24'),
('lldp', 'eth0', 'Management Address/IPv4/Ifindex', '83886080'),
('lldp', 'eth0', 'CEE DCBX/Control TLV/SeqNo', '1, AckNo: 1'),
('lldp',
'eth0',
'CEE DCBX/Control TLV/SeqNo/Priority Groups TLV',
'Enabled, Not Willing, No Error'),
('lldp',
'eth0',
'CEE DCBX/Control TLV/SeqNo/Priority Groups TLV/PGID Priorities',
'0:[0,1,2,3,4,5,6,7]'),
('lldp',
'eth0',
'CEE DCBX/Control TLV/SeqNo/Priority Groups TLV/PGID Priorities/PGID '
'Percentages',
'0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% 7:0%'),
('lldp',
'eth0',
"CEE DCBX/Control TLV/SeqNo/Priority Groups TLV/PGID Priorities/PGID "
"Percentages/Number of TC's supported",
'1'),
('lldp', 'eth0', 'Cisco 4-wire Power-via-MDI', '4-Pair PoE supported'),
('lldp',
'eth0',
'Cisco 4-wire Power-via-MDI',
'Spare pair Detection_Classification not required'),
('lldp',
'eth0',
'Cisco 4-wire Power-via-MDI/PD Spare pair Desired State',
'Disabled'),
('lldp',
'eth0',
'Cisco 4-wire Power-via-MDI/PD Spare pair Desired State/PSE Spare pair '
'Operational State',
'Disabled'),
('lldp',
'eth0',
'Unidentified Org Specific/OUI',
'0x000142, Subtype: 2, Info: 23282328232823282328232823282328'),
('lldp', 'eth0', 'Port VLAN ID/PVID', '100')]
if __name__ == "__main__":
unittest.main()
|