2017-05-26 15:20:18 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2017-05-26 15:20:18 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
from tests.utils import AsyncioMagicMock
|
2017-06-23 08:54:05 +00:00
|
|
|
from gns3server.compute.nios.nio_udp import NIOUDP
|
2017-05-26 15:20:18 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
def test_mac_command():
|
|
|
|
|
2017-05-26 15:20:18 +00:00
|
|
|
node = AsyncioMagicMock()
|
|
|
|
node.name = "Test"
|
2017-06-23 08:54:05 +00:00
|
|
|
node.nios = {}
|
2018-03-19 11:25:56 +00:00
|
|
|
node.nios[0] = NIOUDP(55, "127.0.0.1", 56)
|
2017-06-23 08:54:05 +00:00
|
|
|
node.nios[0].name = "Ethernet0"
|
2018-03-19 11:25:56 +00:00
|
|
|
node.nios[1] = NIOUDP(55, "127.0.0.1", 56)
|
2017-06-23 08:54:05 +00:00
|
|
|
node.nios[1].name = "Ethernet1"
|
2019-03-20 09:04:02 +00:00
|
|
|
#node._hypervisor.send = AsyncioMagicMock(return_value=["0050.7966.6801 1 Ethernet0", "0050.7966.6802 1 Ethernet1"])
|
|
|
|
#console = EthernetSwitchConsole(node)
|
|
|
|
#assert async_run(console.mac()) == \
|
|
|
|
# "Port Mac VLAN\n" \
|
|
|
|
# "Ethernet0 00:50:79:66:68:01 1\n" \
|
|
|
|
# "Ethernet1 00:50:79:66:68:02 1\n"
|
|
|
|
#node._hypervisor.send.assert_called_with("ethsw show_mac_addr_table Test")
|