1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-20 23:08:55 +00:00
gns3-server/tests/handlers/api/controller/test_version.py

59 lines
1.9 KiB
Python
Raw Normal View History

2015-01-14 00:26:24 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 GNS3 Technologies Inc.
2015-01-14 00:26:24 +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-03-16 09:18:37 +00:00
2015-01-14 00:26:24 +00:00
from gns3server.version import __version__
async def test_version_output(controller_api, config):
2015-03-16 09:18:37 +00:00
config.set("Server", "local", "true")
response = await controller_api.get('/version')
2015-03-16 14:03:41 +00:00
assert response.status == 200
assert response.json == {'local': True, 'version': __version__}
2015-01-14 00:26:24 +00:00
async def test_version_input(controller_api):
params = {'version': __version__}
response = await controller_api.post('/version', params)
2015-01-14 00:26:24 +00:00
assert response.status == 200
assert response.json == {'version': __version__}
async def test_version_invalid_input(controller_api):
2018-01-18 08:04:31 +00:00
params = {'version': "0.4.2"}
response = await controller_api.post('/version', params)
assert response.status == 409
2018-01-18 08:04:31 +00:00
assert response.json == {'message': 'Client version 0.4.2 is not the same as server version {}'.format(__version__),
2015-02-02 00:22:31 +00:00
'status': 409}
2015-01-14 00:26:24 +00:00
async def test_version_invalid_input_schema(controller_api):
params = {'version': "0.4.2", "bla": "blu"}
response = await controller_api.post('/version', params)
2015-01-14 00:26:24 +00:00
assert response.status == 400
async def test_version_invalid_json(controller_api):
params = "BOUM"
response = await controller_api.post('/version', params, raw=True)
2015-01-14 00:26:24 +00:00
assert response.status == 400