2015-01-24 22:32:58 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-06-16 04:29:03 +00:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2015-01-24 22:32:58 +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/>.
|
|
|
|
|
2015-05-26 09:35:06 +00:00
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
2020-12-02 08:09:08 +00:00
|
|
|
from fastapi import FastAPI, status
|
|
|
|
from httpx import AsyncClient
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
from gns3server.version import __version__
|
2020-12-02 08:09:08 +00:00
|
|
|
from gns3server.compute.project import Project
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.asyncio
|
2015-01-24 22:32:58 +00:00
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_udp_allocation(app: FastAPI, compute_client: AsyncClient, compute_project: Project) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.post(app.url_path_for("compute:allocate_udp_port", project_id=compute_project.id), json={})
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_201_CREATED
|
|
|
|
assert response.json()['udp_port'] is not None
|
2015-01-24 22:32:58 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_interfaces(app: FastAPI, compute_client: AsyncClient) -> None:
|
2020-06-16 04:29:03 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:network_interfaces"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert isinstance(response.json(), list)
|
2020-10-02 06:37:50 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_version_output(app: FastAPI, compute_client: AsyncClient) -> None:
|
2020-10-02 06:37:50 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:compute_version"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|
2022-03-30 10:38:34 +00:00
|
|
|
assert response.json() == {'version': __version__}
|
2020-10-02 06:37:50 +00:00
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_compute_authentication(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
|
|
|
|
|
|
|
|
|
2020-10-02 06:37:50 +00:00
|
|
|
# @pytest.mark.asyncio
|
|
|
|
# async def test_debug_output(compute_api):
|
|
|
|
#
|
|
|
|
# response = await compute_api.get('/debug')
|
|
|
|
# assert response.status_code == 200
|
|
|
|
|
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
async def test_statistics_output(app: FastAPI, compute_client: AsyncClient) -> None:
|
2020-10-02 06:37:50 +00:00
|
|
|
|
2021-11-18 08:07:10 +00:00
|
|
|
response = await compute_client.get(app.url_path_for("compute:compute_statistics"))
|
2020-12-02 08:09:08 +00:00
|
|
|
assert response.status_code == status.HTTP_200_OK
|