This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/tests/test_device_find.py

147 lines
5.5 KiB
Python
Raw Normal View History

2018-06-12 14:50:05 +00:00
import pytest
2018-09-21 09:25:22 +00:00
from teal.utils import compiled
2018-06-12 14:50:05 +00:00
2018-06-14 13:14:23 +00:00
from ereuse_devicehub.client import UserClient
from ereuse_devicehub.db import db
from ereuse_devicehub.devicehub import Devicehub
2018-06-26 13:35:13 +00:00
from ereuse_devicehub.resources.device.models import Desktop, Device, Laptop, SolidStateDrive
from ereuse_devicehub.resources.device.views import Filters, Sorting
2018-06-26 13:35:13 +00:00
from ereuse_devicehub.resources.enums import ComputerChassis
2018-07-17 17:00:07 +00:00
from ereuse_devicehub.resources.event.models import Snapshot
2018-08-03 18:07:05 +00:00
from tests import conftest
2018-09-29 10:24:22 +00:00
from tests.conftest import file
2018-06-12 14:50:05 +00:00
2018-08-03 18:07:05 +00:00
@pytest.mark.usefixtures(conftest.app_context.__name__)
def test_device_filters():
2018-06-12 14:50:05 +00:00
schema = Filters()
q = schema.load({
2018-06-14 13:14:23 +00:00
'type': ['Computer', 'Laptop'],
2018-06-12 14:50:05 +00:00
'manufacturer': 'Dell',
'rating': {
'rating': [3, 6],
'appearance': [2, 4]
},
'tag': {
'id': ['bcn-', 'activa-02']
}
})
s, params = compiled(Device, q)
# Order between query clauses can change
2018-06-26 13:35:13 +00:00
assert '(device.type IN (%(type_1)s, %(type_2)s, %(type_3)s, %(type_4)s) ' \
'OR device.type IN (%(type_5)s))' in s
2018-06-12 14:50:05 +00:00
assert 'device.manufacturer ILIKE %(manufacturer_1)s' in s
assert 'rate.rating BETWEEN %(rating_1)s AND %(rating_2)s' in s
assert 'rate.appearance BETWEEN %(appearance_1)s AND %(appearance_2)s' in s
assert '(tag.id ILIKE %(id_1)s OR tag.id ILIKE %(id_2)s)' in s
2018-06-14 13:14:23 +00:00
# type_x can be assigned at different values
# ex: type_1 can be 'Desktop' in one execution but the next one 'Laptop'
2018-06-26 13:35:13 +00:00
assert set(params.keys()) == {'id_2', 'appearance_1', 'type_1', 'type_4', 'rating_2', 'type_5',
'type_3', 'type_2', 'appearance_2', 'id_1', 'rating_1',
'manufacturer_1'}
assert set(params.values()) == {2.0, 'Laptop', 4.0, 3.0, 6.0, 'Desktop', 'activa-02%',
'Server', 'Dell%', 'Computer', 'bcn-%'}
2018-06-12 14:50:05 +00:00
2018-08-03 18:07:05 +00:00
@pytest.mark.usefixtures(conftest.app_context.__name__)
def test_device_sort():
2018-06-14 13:14:23 +00:00
schema = Sorting()
r = next(schema.load({'created': True}))
assert str(r) == 'device.created ASC'
@pytest.fixture()
def device_query_dummy(app: Devicehub):
2018-06-14 13:14:23 +00:00
with app.app_context():
2018-09-29 10:24:22 +00:00
devices = ( # The order matters ;-)
2018-06-26 13:35:13 +00:00
Desktop(serial_number='s1',
model='ml1',
manufacturer='mr1',
chassis=ComputerChassis.Tower),
Laptop(serial_number='s3',
model='ml3',
manufacturer='mr3',
chassis=ComputerChassis.Detachable),
Desktop(serial_number='s2',
model='ml2',
manufacturer='mr2',
chassis=ComputerChassis.Microtower),
2018-06-14 13:14:23 +00:00
SolidStateDrive(serial_number='s4', model='ml4', manufacturer='mr4')
2018-09-29 10:24:22 +00:00
)
devices[-1].parent = devices[0] # s4 in s1
db.session.add_all(devices)
2018-06-14 13:14:23 +00:00
db.session.commit()
@pytest.mark.usefixtures(device_query_dummy.__name__)
def test_device_query_no_filters(user: UserClient):
i, _ = user.get(res=Device)
assert tuple(d['type'] for d in i['items']) == (
'Desktop', 'Laptop', 'Desktop', 'SolidStateDrive'
2018-06-14 13:14:23 +00:00
)
@pytest.mark.usefixtures(device_query_dummy.__name__)
def test_device_query_filter_type(user: UserClient):
i, _ = user.get(res=Device, query=[('filter', {'type': ['Desktop', 'Laptop']})])
assert tuple(d['type'] for d in i['items']) == ('Desktop', 'Laptop', 'Desktop')
2018-06-14 13:14:23 +00:00
@pytest.mark.usefixtures(device_query_dummy.__name__)
def test_device_query_filter_sort(user: UserClient):
i, _ = user.get(res=Device, query=[
2018-06-14 13:14:23 +00:00
('sort', {'created': Sorting.ASCENDING}),
('filter', {'type': ['Computer']})
])
assert tuple(d['type'] for d in i['items']) == ('Desktop', 'Laptop', 'Desktop')
2018-07-17 17:00:07 +00:00
def test_device_query(user: UserClient):
2018-07-17 17:00:07 +00:00
"""Checks result of inventory."""
2018-08-03 18:07:05 +00:00
user.post(conftest.file('basic.snapshot'), res=Snapshot)
i, _ = user.get(res=Device)
pc = next(d for d in i['items'] if d['type'] == 'Desktop')
2018-07-17 17:00:07 +00:00
assert len(pc['events']) == 4
assert len(pc['components']) == 3
assert not pc['tags']
2018-09-21 09:25:22 +00:00
@pytest.mark.xfail(reason='Functionality not yet developed.')
def test_device_lots_query(user: UserClient):
2018-09-21 09:25:22 +00:00
pass
2018-09-29 10:24:22 +00:00
def test_device_query_search(user: UserClient):
2018-09-29 10:24:22 +00:00
# todo improve
user.post(file('basic.snapshot'), res=Snapshot)
user.post(file('computer-monitor.snapshot'), res=Snapshot)
user.post(file('real-eee-1001pxd.snapshot.11'), res=Snapshot)
i, _ = user.get(res=Device, query=[('search', 'desktop')])
assert i['items'][0]['id'] == 1
i, _ = user.get(res=Device, query=[('search', 'intel')])
assert len(i['items']) == 1
2018-09-29 10:24:22 +00:00
@pytest.mark.xfail(reason='No dictionary yet that knows asustek = asus')
def test_device_query_search_synonyms_asus(user: UserClient):
2018-09-29 10:24:22 +00:00
user.post(file('real-eee-1001pxd.snapshot.11'), res=Snapshot)
i, _ = user.get(res=Device, query=[('search', 'asustek')])
assert len(i['items']) == 1
i, _ = user.get(res=Device, query=[('search', 'asus')])
assert len(i['items']) == 1
2018-09-29 10:24:22 +00:00
@pytest.mark.xfail(reason='No dictionary yet that knows hp = hewlett packard')
def test_device_query_search_synonyms_intel(user: UserClient):
2018-09-29 10:24:22 +00:00
s = file('real-hp.snapshot.11')
s['device']['model'] = 'foo' # The model had the word 'HP' in it
user.post(s, res=Snapshot)
i, _ = user.get(res=Device, query=[('search', 'hewlett packard')])
assert len(i['items']) == 1
i, _ = user.get(res=Device, query=[('search', 'hewlett')])
assert len(i['items']) == 1
i, _ = user.get(res=Device, query=[('search', 'hp')])
assert len(i['items']) == 1