mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-27 12:30:13 +03:00
94 lines
3.5 KiB
Python
94 lines
3.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020 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/>.
|
|
|
|
from unittest.mock import patch, MagicMock
|
|
import pytest
|
|
|
|
from fastapi import FastAPI, status
|
|
from httpx import AsyncClient
|
|
|
|
from gns3server.version import __version__
|
|
from gns3server.compute.project import Project
|
|
from gns3server.config import Config
|
|
from gns3server.schemas.config import ServerSettings
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
|
class TestComputeRoutes:
|
|
|
|
async def test_udp_allocation(
|
|
self,
|
|
app: FastAPI,
|
|
compute_client: AsyncClient,
|
|
compute_project: Project
|
|
) -> None:
|
|
|
|
response = await compute_client.post(app.url_path_for("compute:allocate_udp_port", project_id=compute_project.id), json={})
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
assert response.json()['udp_port'] is not None
|
|
|
|
|
|
async def test_interfaces(self, app: FastAPI, compute_client: AsyncClient) -> None:
|
|
|
|
response = await compute_client.get(app.url_path_for("compute:network_interfaces"))
|
|
assert response.status_code == status.HTTP_200_OK
|
|
assert isinstance(response.json(), list)
|
|
|
|
|
|
async def test_version_output(self, app: FastAPI, compute_client: AsyncClient) -> None:
|
|
|
|
response = await compute_client.get(app.url_path_for("compute:compute_version"))
|
|
assert response.status_code == status.HTTP_200_OK
|
|
assert response.json() == {'version': __version__}
|
|
|
|
|
|
async def test_compute_authentication(self, app: FastAPI, compute_client: AsyncClient) -> None:
|
|
|
|
response = await compute_client.get(app.url_path_for("compute:compute_version"), auth=("admin", "invalid_password"))
|
|
assert response.status_code == status.HTTP_401_UNAUTHORIZED
|
|
|
|
|
|
# @pytest.mark.asyncio
|
|
# async def test_debug_output(compute_api):
|
|
#
|
|
# response = await compute_api.get('/debug')
|
|
# assert response.status_code == 200
|
|
|
|
|
|
async def test_statistics_output(self, app: FastAPI, compute_client: AsyncClient) -> None:
|
|
|
|
response = await compute_client.get(app.url_path_for("compute:compute_statistics"))
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
|
|
async def test_compute_auth_disabled(self, app: FastAPI, compute_client: AsyncClient) -> None:
|
|
|
|
mock_settings = MagicMock()
|
|
mock_server_settings = MagicMock()
|
|
mock_server_settings.enable_http_auth = False
|
|
mock_server_settings.compute_username = "gns3"
|
|
mock_server_settings.compute_password.get_secret_value.return_value = "testpass"
|
|
mock_settings.settings.Server = mock_server_settings
|
|
|
|
with patch("gns3server.api.routes.compute.dependencies.authentication.Config.instance", return_value=mock_settings):
|
|
response = await compute_client.get(
|
|
app.url_path_for("compute:compute_version"),
|
|
auth=("wrong_user", "wrong_password")
|
|
)
|
|
assert response.status_code == status.HTTP_200_OK
|