2015-01-14 02:26:24 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-06-16 07:29:03 +03:00
|
|
|
# Copyright (C) 2020 GNS3 Technologies Inc.
|
2015-01-14 02:26:24 +02: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/>.
|
|
|
|
|
2020-10-02 09:37:50 +03:00
|
|
|
import pytest
|
2015-03-16 11:18:37 +02:00
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
from fastapi import FastAPI, status
|
|
|
|
from httpx import AsyncClient
|
|
|
|
|
2015-01-14 02:26:24 +02:00
|
|
|
from gns3server.version import __version__
|
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
2015-01-14 02:26:24 +02:00
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
async def test_version_output(app: FastAPI, client: AsyncClient, config) -> None:
|
2015-03-16 11:18:37 +02:00
|
|
|
|
2020-06-16 07:29:03 +03:00
|
|
|
config.set("Server", "local", "true")
|
2020-12-02 10:09:08 +02:00
|
|
|
response = await client.get(app.url_path_for("get_version"))
|
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert response.json() == {'local': True, 'version': __version__}
|
2015-01-14 02:26:24 +02:00
|
|
|
|
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
async def test_version_input(app: FastAPI, client: AsyncClient) -> None:
|
2020-06-16 07:29:03 +03:00
|
|
|
|
|
|
|
params = {'version': __version__}
|
2020-12-02 10:09:08 +02:00
|
|
|
response = await client.post(app.url_path_for("check_version"), json=params)
|
|
|
|
assert response.status_code == status.HTTP_200_OK
|
|
|
|
assert response.json() == {'version': __version__}
|
2015-01-14 02:26:24 +02:00
|
|
|
|
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
async def test_version_invalid_input(app: FastAPI, client: AsyncClient) -> None:
|
2018-01-18 10:04:31 +02:00
|
|
|
|
2020-06-16 07:29:03 +03:00
|
|
|
params = {'version': "0.4.2"}
|
2020-12-02 10:09:08 +02:00
|
|
|
response = await client.post(app.url_path_for("check_version"), json=params)
|
|
|
|
assert response.status_code == status.HTTP_409_CONFLICT
|
|
|
|
assert response.json() == {'message': 'Client version 0.4.2 is not the same as server version {}'.format(__version__)}
|
2015-01-14 02:26:24 +02:00
|
|
|
|
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
async def test_version_invalid_input_schema(app: FastAPI, client: AsyncClient) -> None:
|
2020-06-16 07:29:03 +03:00
|
|
|
|
|
|
|
params = {'version': "0.4.2", "bla": "blu"}
|
2020-12-02 10:09:08 +02:00
|
|
|
response = await client.post(app.url_path_for("check_version"), json=params)
|
|
|
|
assert response.status_code == status.HTTP_409_CONFLICT
|
2015-01-14 02:26:24 +02:00
|
|
|
|
|
|
|
|
2020-12-02 10:09:08 +02:00
|
|
|
async def test_version_invalid_json(app: FastAPI, client: AsyncClient) -> None:
|
2020-06-16 07:29:03 +03:00
|
|
|
|
|
|
|
params = "BOUM"
|
2020-12-02 10:09:08 +02:00
|
|
|
response = await client.post(app.url_path_for("check_version"), json=params)
|
|
|
|
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
|