2016-06-01 13:39:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2016-06-01 13:39:46 +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/>.
|
|
|
|
|
2016-10-25 09:40:57 +00:00
|
|
|
import os
|
2016-06-01 13:39:46 +00:00
|
|
|
import pytest
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
from unittest.mock import MagicMock
|
2016-06-01 13:39:46 +00:00
|
|
|
from gns3server.web.web_server import WebServer
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
@pytest.fixture
|
2016-06-01 13:39:46 +00:00
|
|
|
def web_server():
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2016-06-01 13:39:46 +00:00
|
|
|
WebServer._instance = MagicMock()
|
|
|
|
yield WebServer._instance
|
|
|
|
WebServer._instance = None
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_shutdown_local(controller_api, web_server, config):
|
2018-10-15 10:05:49 +00:00
|
|
|
|
|
|
|
async def hello():
|
2016-06-01 13:39:46 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
web_server.shutdown_server.return_value = hello()
|
|
|
|
config.set("Server", "local", True)
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await controller_api.post('/shutdown')
|
2016-06-01 13:39:46 +00:00
|
|
|
assert response.status == 201
|
|
|
|
assert web_server.shutdown_server.called
|
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_shutdown_non_local(controller_api, web_server, config):
|
|
|
|
|
2016-06-01 13:39:46 +00:00
|
|
|
WebServer._instance = MagicMock()
|
|
|
|
config.set("Server", "local", False)
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await controller_api.post('/shutdown')
|
2016-06-01 13:39:46 +00:00
|
|
|
assert response.status == 403
|
|
|
|
assert not web_server.shutdown_server.called
|
2016-10-25 09:40:57 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_debug(controller_api, config, tmpdir):
|
2016-10-25 10:00:17 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
config._main_config_file = str(tmpdir / "test.conf")
|
2016-11-18 15:38:27 +00:00
|
|
|
config.set("Server", "local", True)
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await controller_api.post('/debug')
|
2016-10-25 09:40:57 +00:00
|
|
|
assert response.status == 201
|
|
|
|
debug_dir = os.path.join(config.config_dir, "debug")
|
|
|
|
assert os.path.exists(debug_dir)
|
|
|
|
assert os.path.exists(os.path.join(debug_dir, "controller.txt"))
|
2016-11-18 15:38:27 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_debug_non_local(controller_api, config, tmpdir):
|
2016-11-18 15:38:27 +00:00
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
config._main_config_file = str(tmpdir / "test.conf")
|
2016-11-18 15:38:27 +00:00
|
|
|
config.set("Server", "local", False)
|
2020-06-16 04:29:03 +00:00
|
|
|
response = await controller_api.post('/debug')
|
2016-11-18 15:38:27 +00:00
|
|
|
assert response.status == 403
|
2020-01-17 08:50:17 +00:00
|
|
|
|
|
|
|
|
2020-06-16 04:29:03 +00:00
|
|
|
async def test_statistics_output(controller_api):
|
|
|
|
|
|
|
|
response = await controller_api.get('/statistics')
|
2020-01-17 08:50:17 +00:00
|
|
|
assert response.status == 200
|