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
|
# 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_ethtool_a(self):
return self.assertEqual(
detect_utils.parse_ethtool([], "enp0s25", ETHTOOL_A.split('\n')),
ETHTOOL_A_RESULTS)
def test_parse_ethtool_k(self):
return self.assertEqual(
detect_utils.parse_ethtool([], "enp0s25", ETHTOOL_K.split('\n')),
ETHTOOL_K_RESULTS)
##############################################################################
# Output from real commands and expected results below
##############################################################################
ETHTOOL_A = '''Pause parameters for enp0s25:
Autonegotiate: on
RX: on
TX: on
'''
ETHTOOL_K = sample('ethtool_k')
ETHTOOL_A_RESULTS = [('network', 'enp0s25', 'Autonegotiate', 'on'),
('network', 'enp0s25', 'RX', 'on'),
('network', 'enp0s25', 'TX', 'on')]
ETHTOOL_K_RESULTS = [
('network', 'enp0s25', 'rx-checksumming', 'on'),
('network', 'enp0s25', 'tx-checksumming', 'on'),
('network', 'enp0s25', 'tx-checksumming/tx-checksum-ipv4', 'off [fixed]'),
('network', 'enp0s25', 'tx-checksumming/tx-checksum-ip-generic', 'on'),
('network', 'enp0s25', 'tx-checksumming/tx-checksum-ipv6', 'off [fixed]'),
('network', 'enp0s25', 'tx-checksumming/tx-checksum-fcoe-crc',
'off [fixed]'),
('network', 'enp0s25', 'tx-checksumming/tx-checksum-sctp', 'off [fixed]'),
('network', 'enp0s25', 'scatter-gather', 'on'),
('network', 'enp0s25', 'scatter-gather/tx-scatter-gather', 'on'),
('network',
'enp0s25',
'scatter-gather/tx-scatter-gather-fraglist',
'off [fixed]'),
('network', 'enp0s25', 'tcp-segmentation-offload', 'on'),
('network', 'enp0s25', 'tcp-segmentation-offload/tx-tcp-segmentation',
'on'),
('network',
'enp0s25',
'tcp-segmentation-offload/tx-tcp-ecn-segmentation',
'off [fixed]'),
('network', 'enp0s25', 'tcp-segmentation-offload/tx-tcp6-segmentation',
'on'),
('network', 'enp0s25', 'udp-fragmentation-offload', 'off [fixed]'),
('network', 'enp0s25', 'generic-segmentation-offload', 'on'),
('network', 'enp0s25', 'generic-receive-offload', 'on'),
('network', 'enp0s25', 'large-receive-offload', 'off [fixed]'),
('network', 'enp0s25', 'rx-vlan-offload', 'on'),
('network', 'enp0s25', 'tx-vlan-offload', 'on'),
('network', 'enp0s25', 'ntuple-filters', 'off [fixed]'),
('network', 'enp0s25', 'receive-hashing', 'on'),
('network', 'enp0s25', 'highdma', 'on [fixed]'),
('network', 'enp0s25', 'rx-vlan-filter', 'off [fixed]'),
('network', 'enp0s25', 'vlan-challenged', 'off [fixed]'),
('network', 'enp0s25', 'tx-lockless', 'off [fixed]'),
('network', 'enp0s25', 'netns-local', 'off [fixed]'),
('network', 'enp0s25', 'tx-gso-robust', 'off [fixed]'),
('network', 'enp0s25', 'tx-fcoe-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'tx-gre-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'tx-ipip-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'tx-sit-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'tx-udp_tnl-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'tx-mpls-segmentation', 'off [fixed]'),
('network', 'enp0s25', 'fcoe-mtu', 'off [fixed]'),
('network', 'enp0s25', 'tx-nocache-copy', 'off'),
('network', 'enp0s25', 'loopback', 'off [fixed]'),
('network', 'enp0s25', 'rx-fcs', 'off'),
('network', 'enp0s25', 'rx-all', 'off'),
('network', 'enp0s25', 'tx-vlan-stag-hw-insert', 'off [fixed]'),
('network', 'enp0s25', 'rx-vlan-stag-hw-parse', 'off [fixed]'),
('network', 'enp0s25', 'rx-vlan-stag-filter', 'off [fixed]'),
('network', 'enp0s25', 'l2-fwd-offload', 'off [fixed]')]
if __name__ == "__main__":
unittest.main()
|