2016-08-19 17:02:39 +00:00
|
|
|
#!/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
|
2016-09-23 15:08:05 +00:00
|
|
|
from tests.utils import asyncio_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
|
|
|
from gns3server.compute.vpcs import VPCS
|
|
|
|
|
|
|
|
|
2016-08-19 17:02:39 +00:00
|
|
|
def test_json(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",
|
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
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|