2018-04-27 17:16:43 +00:00
|
|
|
import pytest
|
2018-04-10 15:06:39 +00:00
|
|
|
|
2018-06-24 14:57:49 +00:00
|
|
|
from ereuse_devicehub.client import Client
|
2022-04-29 16:23:05 +00:00
|
|
|
from ereuse_devicehub.devicehub import Devicehub
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
2020-07-07 15:17:41 +00:00
|
|
|
@pytest.mark.mvp
|
|
|
|
def test_dummy(_app: Devicehub):
|
|
|
|
"""Tests the dummy cli command."""
|
|
|
|
runner = _app.test_cli_runner()
|
|
|
|
runner.invoke('dummy', '--yes')
|
|
|
|
with _app.app_context():
|
|
|
|
_app.db.drop_all()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.mvp
|
2018-04-27 17:16:43 +00:00
|
|
|
def test_dependencies():
|
|
|
|
with pytest.raises(ImportError):
|
|
|
|
# Simplejson has a different signature than stdlib json
|
|
|
|
# should be fixed though
|
|
|
|
# noinspection PyUnresolvedReferences
|
2022-05-11 11:14:11 +00:00
|
|
|
import simplejson # noqa: F401
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
# noinspection PyArgumentList
|
2020-07-07 15:17:41 +00:00
|
|
|
@pytest.mark.mvp
|
2018-06-24 14:57:49 +00:00
|
|
|
def test_api_docs(client: Client):
|
|
|
|
"""Tests /apidocs correct initialization."""
|
|
|
|
docs, _ = client.get('/apidocs')
|
|
|
|
assert set(docs['paths'].keys()) == {
|
2022-04-29 16:23:05 +00:00
|
|
|
'/',
|
2020-07-15 11:11:50 +00:00
|
|
|
'/actions/',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/allocates/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/apidocs',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/deallocates/',
|
2020-07-15 11:11:50 +00:00
|
|
|
'/deliverynotes/',
|
2018-06-24 14:57:49 +00:00
|
|
|
'/devices/',
|
2020-07-15 11:11:50 +00:00
|
|
|
'/devices/static/{filename}',
|
2021-01-08 16:37:52 +00:00
|
|
|
'/documents/actions/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/documents/check/',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/documents/devices/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/documents/erasures/',
|
2021-02-19 11:53:42 +00:00
|
|
|
'/documents/internalstats/',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/documents/lots/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/documents/stamps/',
|
|
|
|
'/documents/static/{filename}',
|
|
|
|
'/documents/stock/',
|
|
|
|
'/documents/wbconf/{wbtype}',
|
|
|
|
'/inventory/action/add/',
|
|
|
|
'/inventory/action/allocate/add/',
|
|
|
|
'/inventory/action/datawipe/add/',
|
|
|
|
'/inventory/action/trade/add/',
|
|
|
|
'/inventory/device/',
|
|
|
|
'/inventory/device/add/',
|
|
|
|
'/inventory/device/{id}/',
|
|
|
|
'/inventory/export/{export_id}/',
|
|
|
|
'/inventory/lot/add/',
|
|
|
|
'/inventory/lot/{id}/',
|
|
|
|
'/inventory/lot/{id}/del/',
|
|
|
|
'/inventory/lot/{lot_id}/device/',
|
|
|
|
'/inventory/lot/{lot_id}/device/add/',
|
|
|
|
'/inventory/lot/{lot_id}/trade-document/add/',
|
|
|
|
'/inventory/lot/{lot_id}/upload-snapshot/',
|
|
|
|
'/inventory/tag/devices/add/',
|
|
|
|
'/inventory/tag/devices/{id}/del/',
|
|
|
|
'/inventory/upload-snapshot/',
|
|
|
|
'/labels/',
|
|
|
|
'/labels/add/',
|
|
|
|
'/labels/print',
|
|
|
|
'/labels/unnamed/add/',
|
|
|
|
'/labels/{id}/',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/licences/',
|
|
|
|
'/lives/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/login/',
|
|
|
|
'/logout/',
|
2018-09-11 19:50:40 +00:00
|
|
|
'/lots/',
|
|
|
|
'/lots/{id}/children',
|
2018-09-20 09:51:25 +00:00
|
|
|
'/lots/{id}/devices',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/manufacturers/',
|
2021-02-11 20:04:18 +00:00
|
|
|
'/metrics/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/profile/',
|
|
|
|
'/set_password/',
|
2020-07-15 11:11:50 +00:00
|
|
|
'/tags/',
|
2018-10-16 06:46:55 +00:00
|
|
|
'/tags/{tag_id}/device/{device_id}',
|
2021-05-21 11:16:06 +00:00
|
|
|
'/trade-documents/',
|
2020-07-15 11:11:50 +00:00
|
|
|
'/users/',
|
2021-03-02 20:53:15 +00:00
|
|
|
'/users/login/',
|
|
|
|
'/users/logout/',
|
2022-04-29 16:23:05 +00:00
|
|
|
'/versions/',
|
2022-05-11 11:14:11 +00:00
|
|
|
'/workbench/settings/',
|
2018-06-24 14:57:49 +00:00
|
|
|
}
|
|
|
|
assert docs['info'] == {'title': 'Devicehub', 'version': '0.2'}
|
|
|
|
assert docs['components']['securitySchemes']['bearerAuth'] == {
|
|
|
|
'description': 'Basic scheme with token.',
|
|
|
|
'in': 'header',
|
|
|
|
'description:': 'HTTP Basic scheme',
|
|
|
|
'type': 'http',
|
|
|
|
'scheme': 'basic',
|
2022-04-29 16:23:05 +00:00
|
|
|
'name': 'Authorization',
|
2018-06-24 14:57:49 +00:00
|
|
|
}
|
2021-10-18 09:47:55 +00:00
|
|
|
assert len(docs['definitions']) == 132
|