105 lines
4.0 KiB
Python
105 lines
4.0 KiB
Python
import pytest
|
|
|
|
from ereuse_devicehub.client import UserClient
|
|
from ereuse_devicehub.db import db
|
|
from ereuse_devicehub.devicehub import Devicehub
|
|
from ereuse_devicehub.resources.device.models import Desktop, Device, Laptop, SolidStateDrive
|
|
from ereuse_devicehub.resources.enums import ComputerChassis
|
|
from ereuse_devicehub.resources.event.models import Snapshot
|
|
from ereuse_devicehub.resources.inventory import Filters, Inventory, Sorting
|
|
from teal.utils import compiled
|
|
from tests import conftest
|
|
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
|
def test_inventory_filters():
|
|
schema = Filters()
|
|
q = schema.load({
|
|
'type': ['Computer', 'Laptop'],
|
|
'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
|
|
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
|
|
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
|
|
|
|
# type_x can be assigned at different values
|
|
# ex: type_1 can be 'Desktop' in one execution but the next one 'Laptop'
|
|
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-%'}
|
|
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
|
def test_inventory_sort():
|
|
schema = Sorting()
|
|
r = next(schema.load({'created': True}))
|
|
assert str(r) == 'device.created ASC'
|
|
|
|
|
|
@pytest.fixture()
|
|
def inventory_query_dummy(app: Devicehub):
|
|
with app.app_context():
|
|
db.session.add_all(( # The order matters ;-)
|
|
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),
|
|
SolidStateDrive(serial_number='s4', model='ml4', manufacturer='mr4')
|
|
))
|
|
db.session.commit()
|
|
|
|
|
|
@pytest.mark.usefixtures(inventory_query_dummy.__name__)
|
|
def test_inventory_query_no_filters(user: UserClient):
|
|
i, _ = user.get(res=Inventory)
|
|
assert tuple(d['type'] for d in i['devices']) == (
|
|
'SolidStateDrive', 'Desktop', 'Laptop', 'Desktop'
|
|
)
|
|
|
|
|
|
@pytest.mark.usefixtures(inventory_query_dummy.__name__)
|
|
def test_inventory_query_filter_type(user: UserClient):
|
|
i, _ = user.get(res=Inventory, query=[('filter', {'type': ['Desktop', 'Laptop']})])
|
|
assert tuple(d['type'] for d in i['devices']) == ('Desktop', 'Laptop', 'Desktop')
|
|
|
|
|
|
@pytest.mark.usefixtures(inventory_query_dummy.__name__)
|
|
def test_inventory_query_filter_sort(user: UserClient):
|
|
i, _ = user.get(res=Inventory, query=[
|
|
('sort', {'created': Sorting.ASCENDING}),
|
|
('filter', {'type': ['Computer']})
|
|
])
|
|
assert tuple(d['type'] for d in i['devices']) == ('Desktop', 'Laptop', 'Desktop')
|
|
|
|
|
|
def test_inventory_query(user: UserClient):
|
|
"""Checks result of inventory."""
|
|
user.post(conftest.file('basic.snapshot'), res=Snapshot)
|
|
i, _ = user.get(res=Inventory)
|
|
pc = next(d for d in i['devices'] if d['type'] == 'Desktop')
|
|
assert len(pc['events']) == 4
|
|
assert len(pc['components']) == 3
|
|
assert not pc['tags']
|