1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/tests/api/test_vpcs.py

68 lines
3.0 KiB
Python
Raw Normal View History

2015-01-14 00:26:24 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 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/>.
2015-01-20 11:46:15 +00:00
import pytest
from tests.api.base import server, loop, project
2015-01-14 00:26:24 +00:00
from tests.utils import asyncio_patch
2015-01-19 10:22:24 +00:00
from unittest.mock import patch
2015-01-20 17:55:17 +00:00
from gns3server.modules.vpcs.vpcs_vm import VPCSVM
2015-01-14 00:26:24 +00:00
2015-01-20 11:46:15 +00:00
@pytest.fixture(scope="module")
def vm(server, project):
response = server.post("/vpcs", {"name": "PC TEST 1", "project_uuid": project.uuid})
assert response.status == 200
return response.json
def test_vpcs_create(server, project):
response = server.post("/vpcs", {"name": "PC TEST 1", "project_uuid": project.uuid}, example=True)
2015-01-14 00:26:24 +00:00
assert response.status == 200
assert response.route == "/vpcs"
assert response.json["name"] == "PC TEST 1"
2015-01-20 17:55:17 +00:00
assert response.json["project_uuid"] == project.uuid
2015-01-14 00:26:24 +00:00
2015-01-20 11:46:15 +00:00
def test_vpcs_nio_create_udp(server, vm):
response = server.post("/vpcs/{}/ports/0/nio".format(vm["uuid"]), {"type": "nio_udp",
2015-01-20 12:04:20 +00:00
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"},
example=True)
2015-01-14 00:26:24 +00:00
assert response.status == 200
assert response.route == "/vpcs/{uuid}/ports/{port_id}/nio"
assert response.json["type"] == "nio_udp"
2015-01-16 16:09:45 +00:00
2015-01-20 12:12:26 +00:00
@patch("gns3server.modules.vpcs.vpcs_vm.has_privileged_access", return_value=True)
2015-01-20 11:46:15 +00:00
def test_vpcs_nio_create_tap(mock, server, vm):
response = server.post("/vpcs/{}/ports/0/nio".format(vm["uuid"]), {"type": "nio_tap",
2015-01-20 12:04:20 +00:00
"tap_device": "test"})
2015-01-16 16:09:45 +00:00
assert response.status == 200
assert response.route == "/vpcs/{uuid}/ports/{port_id}/nio"
assert response.json["type"] == "nio_tap"
2015-01-16 20:39:58 +00:00
2015-01-20 11:46:15 +00:00
def test_vpcs_delete_nio(server, vm):
response = server.post("/vpcs/{}/ports/0/nio".format(vm["uuid"]), {"type": "nio_udp",
2015-01-20 12:04:20 +00:00
"lport": 4242,
"rport": 4343,
"rhost": "127.0.0.1"})
2015-01-20 11:46:15 +00:00
response = server.delete("/vpcs/{}/ports/0/nio".format(vm["uuid"]), example=True)
2015-01-16 20:39:58 +00:00
assert response.status == 200
assert response.route == "/vpcs/{uuid}/ports/{port_id}/nio"