gns3-server/tests/endpoints/controller/test_version.py

64 lines
2.0 KiB
Python
Raw Normal View History

2015-01-14 02:26:24 +02:00
# -*- coding: utf-8 -*-
#
# 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
2015-01-14 02:26:24 +02:00
from gns3server.version import __version__
2020-10-02 09:37:50 +03:00
@pytest.mark.asyncio
async def test_version_output(controller_api, config):
2015-03-16 11:18:37 +02:00
config.set("Server", "local", "true")
response = await controller_api.get('/version')
2020-10-02 09:37:50 +03:00
assert response.status_code == 200
2015-03-16 16:03:41 +02:00
assert response.json == {'local': True, 'version': __version__}
2015-01-14 02:26:24 +02:00
2020-10-02 09:37:50 +03:00
@pytest.mark.asyncio
async def test_version_input(controller_api):
params = {'version': __version__}
response = await controller_api.post('/version', params)
2020-10-02 09:37:50 +03:00
assert response.status_code == 200
2015-01-14 02:26:24 +02:00
assert response.json == {'version': __version__}
2020-10-02 09:37:50 +03:00
@pytest.mark.asyncio
async def test_version_invalid_input(controller_api):
2018-01-18 10:04:31 +02:00
params = {'version': "0.4.2"}
response = await controller_api.post('/version', params)
2020-10-02 09:37:50 +03:00
assert response.status_code == 409
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-10-02 09:37:50 +03:00
@pytest.mark.asyncio
async def test_version_invalid_input_schema(controller_api):
params = {'version': "0.4.2", "bla": "blu"}
response = await controller_api.post('/version', params)
2020-10-02 09:37:50 +03:00
assert response.status_code == 409
2015-01-14 02:26:24 +02:00
2020-10-02 09:37:50 +03:00
@pytest.mark.asyncio
async def test_version_invalid_json(controller_api):
params = "BOUM"
response = await controller_api.post('/version', params, raw=True)
2020-10-02 09:37:50 +03:00
assert response.status_code == 422