2016-03-03 15:02:27 +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/>.
|
|
|
|
|
2016-06-08 12:14:03 +00:00
|
|
|
import os
|
2016-03-03 15:02:27 +00:00
|
|
|
import pytest
|
2016-03-10 09:32:07 +00:00
|
|
|
import json
|
2016-03-11 14:06:14 +00:00
|
|
|
import aiohttp
|
2016-03-18 15:55:54 +00:00
|
|
|
import asyncio
|
2016-03-10 09:32:07 +00:00
|
|
|
from unittest.mock import patch, MagicMock
|
2016-03-03 15:02:27 +00:00
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
from gns3server.controller.project import Project
|
2016-06-07 17:38:01 +00:00
|
|
|
from gns3server.controller.compute import Compute, ComputeError, ComputeConflict
|
2016-03-04 15:58:53 +00:00
|
|
|
from gns3server.version import __version__
|
2016-03-16 14:55:07 +00:00
|
|
|
from tests.utils import asyncio_patch, AsyncioMagicMock
|
2016-03-03 15:02:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2016-05-23 16:44:20 +00:00
|
|
|
def compute(controller):
|
|
|
|
compute = Compute("my_compute_id", protocol="https", host="example.com", port=84, controller=controller)
|
2016-04-15 15:57:06 +00:00
|
|
|
compute._connected = True
|
|
|
|
return compute
|
2016-03-03 15:02:27 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_init(compute):
|
|
|
|
assert compute.id == "my_compute_id"
|
2016-03-03 15:02:27 +00:00
|
|
|
|
|
|
|
|
2016-05-23 09:20:52 +00:00
|
|
|
def test_name():
|
|
|
|
c = Compute("my_compute_id", protocol="https", host="example.com", port=84, controller=MagicMock(), name=None)
|
|
|
|
assert c.name == "https://example.com:84"
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": True}):
|
|
|
|
c = Compute("local", protocol="https", host="example.com", port=84, controller=MagicMock(), name=None)
|
2016-05-23 16:44:20 +00:00
|
|
|
assert c.name == "Local"
|
2016-05-23 09:20:52 +00:00
|
|
|
c = Compute("world", protocol="https", host="example.com", port=84, controller=MagicMock(), name="hello")
|
|
|
|
assert c.name == "hello"
|
2016-05-25 12:10:03 +00:00
|
|
|
c = Compute("world", protocol="https", host="example.com", port=84, controller=MagicMock(), user="azertyuiopqsdfghjklkm")
|
2016-05-25 11:58:29 +00:00
|
|
|
assert c.name == "https://azertyuiopq...@example.com:84"
|
2016-05-23 09:20:52 +00:00
|
|
|
|
2016-05-25 12:10:03 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_local(compute):
|
2016-03-04 15:11:31 +00:00
|
|
|
"""
|
2016-04-15 15:57:06 +00:00
|
|
|
If the compute is local but the compute id is local
|
2016-03-04 15:11:31 +00:00
|
|
|
it's a configuration issue
|
|
|
|
"""
|
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": False}):
|
2016-04-15 15:57:06 +00:00
|
|
|
with pytest.raises(ComputeError):
|
|
|
|
s = Compute("local", controller=MagicMock())
|
2016-03-04 15:11:31 +00:00
|
|
|
|
|
|
|
with patch("gns3server.config.Config.get_section_config", return_value={"local": True}):
|
2016-04-15 15:57:06 +00:00
|
|
|
s = Compute("test", controller=MagicMock())
|
2016-03-04 15:11:31 +00:00
|
|
|
|
2016-03-04 15:55:59 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQuery(compute, async_run):
|
2016-03-10 09:32:07 +00:00
|
|
|
response = MagicMock()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
response.status = 200
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_called_with("POST", "https://example.com:84/v2/compute/projects", data='{"a": "b"}', headers={'content-type': 'application/json'}, auth=None, chunked=False)
|
2016-04-15 15:57:06 +00:00
|
|
|
assert compute._auth is None
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQueryAuth(compute, async_run):
|
2016-03-16 14:55:07 +00:00
|
|
|
response = MagicMock()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
response.status = 200
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
compute.user = "root"
|
|
|
|
compute.password = "toor"
|
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_called_with("POST", "https://example.com:84/v2/compute/projects", data='{"a": "b"}', headers={'content-type': 'application/json'}, auth=compute._auth, chunked=False)
|
2016-04-15 15:57:06 +00:00
|
|
|
assert compute._auth.login == "root"
|
|
|
|
assert compute._auth.password == "toor"
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
|
2016-05-23 16:44:20 +00:00
|
|
|
def test_compute_httpQueryNotConnected(compute, controller, async_run):
|
|
|
|
controller._notification = MagicMock()
|
2016-04-15 15:57:06 +00:00
|
|
|
compute._connected = False
|
2016-03-16 14:55:07 +00:00
|
|
|
response = AsyncioMagicMock()
|
2016-03-16 15:10:06 +00:00
|
|
|
response.read = AsyncioMagicMock(return_value=json.dumps({"version": __version__}).encode())
|
2016-03-16 14:55:07 +00:00
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_any_call("GET", "https://example.com:84/v2/compute/version", headers={'content-type': 'application/json'}, data=None, auth=None, chunked=False)
|
|
|
|
mock.assert_any_call("POST", "https://example.com:84/v2/compute/projects", data='{"a": "b"}', headers={'content-type': 'application/json'}, auth=None, chunked=False)
|
2016-05-23 16:44:20 +00:00
|
|
|
assert compute._connected
|
|
|
|
assert compute.version == __version__
|
|
|
|
controller.notification.emit.assert_called_with("compute.updated", compute.__json__())
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQueryNotConnectedInvalidVersion(compute, async_run):
|
|
|
|
compute._connected = False
|
2016-03-16 14:55:07 +00:00
|
|
|
response = AsyncioMagicMock()
|
2016-03-16 15:10:06 +00:00
|
|
|
response.read = AsyncioMagicMock(return_value=json.dumps({"version": "1.42.4"}).encode())
|
2016-03-16 14:55:07 +00:00
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_any_call("GET", "https://example.com:84/v2/compute/version", headers={'content-type': 'application/json'}, data=None, auth=None, chunked=False)
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQueryNotConnectedNonGNS3Server(compute, async_run):
|
|
|
|
compute._connected = False
|
2016-03-16 14:55:07 +00:00
|
|
|
response = AsyncioMagicMock()
|
2016-03-16 15:10:06 +00:00
|
|
|
response.read = AsyncioMagicMock(return_value=b'Blocked by super antivirus')
|
2016-03-16 14:55:07 +00:00
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_any_call("GET", "https://example.com:84/v2/compute/version", headers={'content-type': 'application/json'}, data=None, auth=None, chunked=False)
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQueryNotConnectedNonGNS3Server2(compute, async_run):
|
|
|
|
compute._connected = False
|
2016-03-16 14:55:07 +00:00
|
|
|
response = AsyncioMagicMock()
|
2016-03-16 15:10:06 +00:00
|
|
|
response.read = AsyncioMagicMock(return_value=b'{}')
|
2016-03-16 14:55:07 +00:00
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
with pytest.raises(aiohttp.web.HTTPConflict):
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_any_call("GET", "https://example.com:84/v2/compute/version", headers={'content-type': 'application/json'}, data=None, auth=None, chunked=False)
|
2016-03-10 09:32:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQueryError(compute, async_run):
|
2016-06-07 17:38:01 +00:00
|
|
|
response = MagicMock()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
response.status = 404
|
|
|
|
|
|
|
|
with pytest.raises(aiohttp.web.HTTPNotFound):
|
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
|
|
|
|
|
|
|
|
|
|
|
def test_compute_httpQueryConflictError(compute, async_run):
|
2016-03-11 14:06:14 +00:00
|
|
|
response = MagicMock()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
response.status = 409
|
2016-06-07 17:38:01 +00:00
|
|
|
response.read = AsyncioMagicMock(return_value=b'{"message": "Test"}')
|
2016-03-11 14:06:14 +00:00
|
|
|
|
2016-06-07 17:38:01 +00:00
|
|
|
with pytest.raises(ComputeConflict):
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", {"a": "b"}))
|
2016-03-11 14:06:14 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_compute_httpQuery_project(compute, async_run):
|
2016-03-10 09:32:07 +00:00
|
|
|
response = MagicMock()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
response.status = 200
|
|
|
|
|
|
|
|
project = Project()
|
2016-04-15 15:57:06 +00:00
|
|
|
async_run(compute.post("/projects", project))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_called_with("POST", "https://example.com:84/v2/compute/projects", data=json.dumps(project.__json__()), headers={'content-type': 'application/json'}, auth=None, chunked=False)
|
2016-03-10 09:32:07 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_connectNotification(compute, async_run):
|
2016-03-18 15:55:54 +00:00
|
|
|
ws_mock = AsyncioMagicMock()
|
|
|
|
|
|
|
|
call = 0
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def receive():
|
|
|
|
nonlocal call
|
|
|
|
call += 1
|
|
|
|
if call == 1:
|
|
|
|
response = MagicMock()
|
2016-05-18 14:12:13 +00:00
|
|
|
response.data = '{"action": "test", "event": {"a": 1}}'
|
2016-03-18 15:55:54 +00:00
|
|
|
response.tp = aiohttp.MsgType.text
|
|
|
|
return response
|
|
|
|
else:
|
|
|
|
response = MagicMock()
|
|
|
|
response.tp = aiohttp.MsgType.closed
|
|
|
|
return response
|
|
|
|
|
2016-05-23 16:44:20 +00:00
|
|
|
compute._controller._notification = MagicMock()
|
2016-04-15 15:57:06 +00:00
|
|
|
compute._session = AsyncioMagicMock(return_value=ws_mock)
|
|
|
|
compute._session.ws_connect = AsyncioMagicMock(return_value=ws_mock)
|
2016-03-18 15:55:54 +00:00
|
|
|
ws_mock.receive = receive
|
2016-05-11 21:19:00 +00:00
|
|
|
async_run(compute._connect_notification())
|
2016-03-18 15:55:54 +00:00
|
|
|
|
2016-05-18 14:12:13 +00:00
|
|
|
compute._controller.notification.dispatch.assert_called_with('test', {'a': 1}, compute_id=compute.id)
|
2016-04-15 15:57:06 +00:00
|
|
|
assert compute._connected is False
|
2016-03-18 15:55:54 +00:00
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def test_json(compute):
|
|
|
|
compute.user = "test"
|
|
|
|
assert compute.__json__() == {
|
|
|
|
"compute_id": "my_compute_id",
|
2016-05-23 09:20:52 +00:00
|
|
|
"name": compute.name,
|
2016-03-03 15:02:27 +00:00
|
|
|
"protocol": "https",
|
|
|
|
"host": "example.com",
|
|
|
|
"port": 84,
|
|
|
|
"user": "test",
|
2016-03-16 14:55:07 +00:00
|
|
|
"connected": True
|
2016-03-03 15:02:27 +00:00
|
|
|
}
|
2016-06-15 13:12:38 +00:00
|
|
|
assert compute.__json__(topology_dump=True) == {
|
|
|
|
"compute_id": "my_compute_id",
|
|
|
|
"name": compute.name,
|
|
|
|
"protocol": "https",
|
|
|
|
"host": "example.com",
|
|
|
|
"port": 84,
|
|
|
|
}
|
2016-04-22 14:22:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_streamFile(project, async_run, compute):
|
|
|
|
response = MagicMock()
|
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
2016-05-11 21:19:00 +00:00
|
|
|
async_run(compute.steam_file(project, "test/titi"))
|
2016-04-22 14:22:03 +00:00
|
|
|
mock.assert_called_with("GET", "https://example.com:84/v2/compute/projects/{}/stream/test/titi".format(project.id), auth=None)
|
2016-05-25 09:27:41 +00:00
|
|
|
|
|
|
|
|
2016-06-02 11:44:12 +00:00
|
|
|
def test_close(compute, async_run):
|
|
|
|
assert compute.connected is True
|
|
|
|
async_run(compute.close())
|
|
|
|
assert compute.connected is False
|
|
|
|
|
|
|
|
|
2016-05-25 09:27:41 +00:00
|
|
|
def test_update(compute, controller, async_run):
|
|
|
|
compute._controller._notification = MagicMock()
|
2016-06-08 12:25:11 +00:00
|
|
|
compute._controller.save = MagicMock()
|
2016-05-25 09:27:41 +00:00
|
|
|
compute.name = "Test"
|
|
|
|
compute.host = "example.org"
|
|
|
|
compute._connected = True
|
|
|
|
async_run(compute.update(name="Test 2"))
|
|
|
|
assert compute.name == "Test 2"
|
|
|
|
assert compute.host == "example.org"
|
|
|
|
controller.notification.emit.assert_called_with("compute.updated", compute.__json__())
|
|
|
|
assert compute.connected is False
|
2016-06-08 12:25:11 +00:00
|
|
|
assert compute._controller.save.called
|
2016-06-02 14:44:38 +00:00
|
|
|
|
|
|
|
|
2016-06-06 13:45:32 +00:00
|
|
|
def test_forward_get(compute, async_run):
|
2016-06-02 14:44:38 +00:00
|
|
|
response = MagicMock()
|
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
2016-06-06 13:45:32 +00:00
|
|
|
async_run(compute.forward("GET", "qemu", "images"))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_called_with("GET", "https://example.com:84/v2/compute/qemu/images", auth=None, data=None, headers={'content-type': 'application/json'}, chunked=False)
|
2016-06-06 13:45:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_forward_post(compute, async_run):
|
|
|
|
response = MagicMock()
|
|
|
|
response.status = 200
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
async_run(compute.forward("POST", "qemu", "img", data={"id": 42}))
|
2016-06-06 17:51:35 +00:00
|
|
|
mock.assert_called_with("POST", "https://example.com:84/v2/compute/qemu/img", auth=None, data='{"id": 42}', headers={'content-type': 'application/json'}, chunked=False)
|
2016-06-08 12:14:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_images(compute, async_run, images_dir):
|
|
|
|
"""
|
|
|
|
Will return image on compute and on controller
|
|
|
|
"""
|
|
|
|
response = MagicMock()
|
|
|
|
response.status = 200
|
|
|
|
response.read = AsyncioMagicMock(return_value=json.dumps([{"filename": "linux.qcow2", "path": "linux.qcow2"}]).encode())
|
|
|
|
open(os.path.join(images_dir, "asa.qcow2"), "w+").close()
|
|
|
|
with asyncio_patch("aiohttp.ClientSession.request", return_value=response) as mock:
|
|
|
|
images = async_run(compute.images("qemu"))
|
|
|
|
mock.assert_called_with("GET", "https://example.com:84/v2/compute/qemu/images", auth=None, data=None, headers={'content-type': 'application/json'}, chunked=False)
|
|
|
|
|
|
|
|
assert images == [{"filename": "linux.qcow2", "path": "linux.qcow2"}, {"filename": "asa.qcow2", "path": "asa.qcow2"}]
|