2016-08-19 17:02:39 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-08-19 17:02:39 +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/>.
|
|
|
|
|
|
|
|
import uuid
|
2017-04-27 13:26:58 +00:00
|
|
|
from unittest.mock import MagicMock, patch
|
2016-08-19 17:02:39 +00:00
|
|
|
|
|
|
|
from gns3server.compute.builtin.nodes.nat import Nat
|
2016-09-23 15:08:05 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
def test_json_gns3vm(on_gns3vm, compute_project):
|
|
|
|
|
|
|
|
nat = Nat("nat1", str(uuid.uuid4()), compute_project, MagicMock())
|
2021-04-17 14:04:28 +00:00
|
|
|
assert nat.asdict() == {
|
2016-08-19 17:02:39 +00:00
|
|
|
"name": "nat1",
|
2020-07-15 09:45:51 +00:00
|
|
|
"usage": "",
|
2016-08-19 17:02:39 +00:00
|
|
|
"node_id": nat.id,
|
2020-06-16 04:29:03 +00:00
|
|
|
"project_id": compute_project.id,
|
2016-08-19 17:02:39 +00:00
|
|
|
"status": "started",
|
2016-09-13 07:47:22 +00:00
|
|
|
"ports_mapping": [
|
2016-08-19 17:02:39 +00:00
|
|
|
{
|
2016-11-04 16:32:16 +00:00
|
|
|
"interface": "virbr0",
|
2016-09-22 15:46:32 +00:00
|
|
|
"name": "nat0",
|
2016-09-05 09:43:20 +00:00
|
|
|
"port_number": 0,
|
2016-11-04 16:32:16 +00:00
|
|
|
"type": "ethernet"
|
2016-08-19 17:02:39 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-04-27 13:26:58 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
def test_json_darwin(darwin_platform, compute_project):
|
|
|
|
|
2017-04-27 13:26:58 +00:00
|
|
|
with patch("gns3server.utils.interfaces.interfaces", return_value=[
|
|
|
|
{"name": "eth0", "special": False, "type": "ethernet"},
|
|
|
|
{"name": "vmnet8", "special": True, "type": "ethernet"}]):
|
2020-06-16 04:29:03 +00:00
|
|
|
nat = Nat("nat1", str(uuid.uuid4()), compute_project, MagicMock())
|
2021-04-17 14:04:28 +00:00
|
|
|
assert nat.asdict() == {
|
2017-04-27 13:26:58 +00:00
|
|
|
"name": "nat1",
|
2020-07-15 09:45:51 +00:00
|
|
|
"usage": "",
|
2017-04-27 13:26:58 +00:00
|
|
|
"node_id": nat.id,
|
2020-06-16 04:29:03 +00:00
|
|
|
"project_id": compute_project.id,
|
2017-04-27 13:26:58 +00:00
|
|
|
"status": "started",
|
|
|
|
"ports_mapping": [
|
|
|
|
{
|
|
|
|
"interface": "vmnet8",
|
|
|
|
"name": "nat0",
|
|
|
|
"port_number": 0,
|
|
|
|
"type": "ethernet"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-08-21 08:17:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_json_windows_with_full_name_of_interface(windows_platform, project):
|
|
|
|
with patch("gns3server.utils.interfaces.interfaces", return_value=[
|
|
|
|
{"name": "VMware Network Adapter VMnet8", "special": True, "type": "ethernet"}]):
|
|
|
|
nat = Nat("nat1", str(uuid.uuid4()), project, MagicMock())
|
2021-04-17 14:04:28 +00:00
|
|
|
assert nat.asdict() == {
|
2017-08-21 08:17:56 +00:00
|
|
|
"name": "nat1",
|
2020-07-15 09:45:51 +00:00
|
|
|
"usage": "",
|
2017-08-21 08:17:56 +00:00
|
|
|
"node_id": nat.id,
|
|
|
|
"project_id": project.id,
|
|
|
|
"status": "started",
|
|
|
|
"ports_mapping": [
|
|
|
|
{
|
2017-09-11 08:09:32 +00:00
|
|
|
"interface": "VMware Network Adapter VMnet8",
|
2017-08-21 08:17:56 +00:00
|
|
|
"name": "nat0",
|
|
|
|
"port_number": 0,
|
|
|
|
"type": "ethernet"
|
|
|
|
}
|
|
|
|
]
|
2020-06-16 04:29:03 +00:00
|
|
|
}
|