mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Merge remote-tracking branch 'origin/2.1' into 2.1
This commit is contained in:
commit
393ac85bca
@ -44,9 +44,9 @@ class EthernetSwitchConsole(EmbedShell):
|
|||||||
self._node = node
|
self._node = node
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def arp(self):
|
def mac(self):
|
||||||
"""
|
"""
|
||||||
Show arp table
|
Show MAC address table
|
||||||
"""
|
"""
|
||||||
res = 'Port Mac VLAN\n'
|
res = 'Port Mac VLAN\n'
|
||||||
result = (yield from self._node._hypervisor.send('ethsw show_mac_addr_table {}'.format(self._node.name)))
|
result = (yield from self._node._hypervisor.send('ethsw show_mac_addr_table {}'.format(self._node.name)))
|
||||||
|
@ -20,7 +20,7 @@ from gns3server.compute.dynamips.nodes.ethernet_switch import EthernetSwitchCons
|
|||||||
from gns3server.compute.nios.nio_udp import NIOUDP
|
from gns3server.compute.nios.nio_udp import NIOUDP
|
||||||
|
|
||||||
|
|
||||||
def test_arp_command(async_run):
|
def test_mac_command(async_run):
|
||||||
node = AsyncioMagicMock()
|
node = AsyncioMagicMock()
|
||||||
node.name = "Test"
|
node.name = "Test"
|
||||||
node.nios = {}
|
node.nios = {}
|
||||||
@ -30,7 +30,7 @@ def test_arp_command(async_run):
|
|||||||
node.nios[1].name = "Ethernet1"
|
node.nios[1].name = "Ethernet1"
|
||||||
node._hypervisor.send = AsyncioMagicMock(return_value=["0050.7966.6801 1 Ethernet0", "0050.7966.6802 1 Ethernet1"])
|
node._hypervisor.send = AsyncioMagicMock(return_value=["0050.7966.6801 1 Ethernet0", "0050.7966.6802 1 Ethernet1"])
|
||||||
console = EthernetSwitchConsole(node)
|
console = EthernetSwitchConsole(node)
|
||||||
assert async_run(console.arp()) == \
|
assert async_run(console.mac()) == \
|
||||||
"Port Mac VLAN\n" \
|
"Port Mac VLAN\n" \
|
||||||
"Ethernet0 00:50:79:66:68:01 1\n" \
|
"Ethernet0 00:50:79:66:68:01 1\n" \
|
||||||
"Ethernet1 00:50:79:66:68:02 1\n"
|
"Ethernet1 00:50:79:66:68:02 1\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user