mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
b0f45035a9
On Windows and Mac OS this allow the NAT node to use the VMware nat (it's always vmnet8). On Linux we still use the libvirt NAT
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
#
|
|
# 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/>.
|
|
|
|
import uuid
|
|
import pytest
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
from gns3server.compute.builtin.nodes.nat import Nat
|
|
|
|
|
|
def test_json_gns3vm(on_gns3vm, project):
|
|
nat = Nat("nat1", str(uuid.uuid4()), project, MagicMock())
|
|
assert nat.__json__() == {
|
|
"name": "nat1",
|
|
"node_id": nat.id,
|
|
"project_id": project.id,
|
|
"status": "started",
|
|
"ports_mapping": [
|
|
{
|
|
"interface": "virbr0",
|
|
"name": "nat0",
|
|
"port_number": 0,
|
|
"type": "ethernet"
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
def test_json_darwin(darwin_platform, project):
|
|
with patch("gns3server.utils.interfaces.interfaces", return_value=[
|
|
{"name": "eth0", "special": False, "type": "ethernet"},
|
|
{"name": "vmnet8", "special": True, "type": "ethernet"}]):
|
|
nat = Nat("nat1", str(uuid.uuid4()), project, MagicMock())
|
|
assert nat.__json__() == {
|
|
"name": "nat1",
|
|
"node_id": nat.id,
|
|
"project_id": project.id,
|
|
"status": "started",
|
|
"ports_mapping": [
|
|
{
|
|
"interface": "vmnet8",
|
|
"name": "nat0",
|
|
"port_number": 0,
|
|
"type": "ethernet"
|
|
}
|
|
]
|
|
}
|