2015-01-20 19:09:20 +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/>.
|
|
|
|
|
|
|
|
import aiohttp
|
|
|
|
import pytest
|
2015-04-03 11:32:07 +00:00
|
|
|
import sys
|
|
|
|
from unittest.mock import patch
|
2016-03-08 15:12:46 +00:00
|
|
|
from gns3server.hypervisor.port_manager import PortManager
|
|
|
|
from gns3server.hypervisor.project import Project
|
2015-01-20 19:09:20 +00:00
|
|
|
|
2015-04-03 11:32:07 +00:00
|
|
|
|
2015-02-24 00:42:55 +00:00
|
|
|
def test_reserve_tcp_port():
|
2015-01-21 21:21:01 +00:00
|
|
|
pm = PortManager()
|
2015-03-21 23:19:12 +00:00
|
|
|
project = Project()
|
2015-10-30 14:15:28 +00:00
|
|
|
pm.reserve_tcp_port(2001, project)
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.project.Project.emit") as mock_emit:
|
2015-12-07 11:26:46 +00:00
|
|
|
port = pm.reserve_tcp_port(2001, project)
|
|
|
|
assert port != 2001
|
|
|
|
assert mock_emit.call_args[0][0] == "log.warning"
|
2015-10-30 14:15:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_reserve_tcp_port_outside_range():
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.project.Project.emit") as mock_emit:
|
2015-12-07 11:26:46 +00:00
|
|
|
port = pm.reserve_tcp_port(80, project)
|
|
|
|
assert port != 80
|
|
|
|
assert mock_emit.call_args[0][0] == "log.warning"
|
|
|
|
|
|
|
|
|
2016-02-05 09:06:34 +00:00
|
|
|
def test_reserve_tcp_port_already_used_by_another_program():
|
2015-12-07 11:26:46 +00:00
|
|
|
"""
|
|
|
|
This test simulate a scenario where the port is already taken
|
|
|
|
by another programm on the server
|
|
|
|
"""
|
|
|
|
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.port_manager.PortManager._check_port") as mock_check:
|
2015-12-07 11:26:46 +00:00
|
|
|
|
|
|
|
def execute_mock(host, port, *args):
|
|
|
|
if port == 2001:
|
|
|
|
raise OSError("Port is already used")
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
mock_check.side_effect = execute_mock
|
|
|
|
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.project.Project.emit") as mock_emit:
|
2015-12-07 11:26:46 +00:00
|
|
|
port = pm.reserve_tcp_port(2001, project)
|
|
|
|
assert port != 2001
|
|
|
|
assert mock_emit.call_args[0][0] == "log.warning"
|
|
|
|
|
2016-02-05 09:06:34 +00:00
|
|
|
|
2015-12-07 11:26:46 +00:00
|
|
|
def test_reserve_tcp_port_already_used():
|
|
|
|
"""
|
|
|
|
This test simulate a scenario where the port is already taken
|
|
|
|
by another programm on the server
|
|
|
|
"""
|
|
|
|
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.port_manager.PortManager._check_port") as mock_check:
|
2015-12-07 11:26:46 +00:00
|
|
|
|
|
|
|
def execute_mock(host, port, *args):
|
|
|
|
if port == 2001:
|
|
|
|
raise OSError("Port is already used")
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
mock_check.side_effect = execute_mock
|
|
|
|
|
2016-03-08 15:12:46 +00:00
|
|
|
with patch("gns3server.hypervisor.project.Project.emit") as mock_emit:
|
2015-12-07 11:26:46 +00:00
|
|
|
port = pm.reserve_tcp_port(2001, project)
|
|
|
|
assert port != 2001
|
|
|
|
assert mock_emit.call_args[0][0] == "log.warning"
|
2015-04-03 11:32:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_reserve_udp_port():
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2015-10-30 14:15:28 +00:00
|
|
|
pm.reserve_udp_port(10000, project)
|
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
|
|
|
pm.reserve_udp_port(10000, project)
|
|
|
|
|
|
|
|
|
|
|
|
def test_reserve_udp_port_outside_range():
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2015-04-03 11:32:07 +00:00
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
2015-10-30 14:15:28 +00:00
|
|
|
pm.reserve_udp_port(80, project)
|
2015-04-03 11:32:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_release_udp_port():
|
|
|
|
pm = PortManager()
|
|
|
|
project = Project()
|
2015-10-30 14:15:28 +00:00
|
|
|
pm.reserve_udp_port(10000, project)
|
|
|
|
pm.release_udp_port(10000, project)
|
|
|
|
pm.reserve_udp_port(10000, project)
|
2015-05-06 08:40:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_find_unused_port():
|
|
|
|
p = PortManager().find_unused_port(1000, 10000)
|
|
|
|
assert p is not None
|
|
|
|
|
|
|
|
|
|
|
|
def test_find_unused_port_invalid_range():
|
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
|
|
|
p = PortManager().find_unused_port(10000, 1000)
|