2018-10-03 12:51:22 +00:00
|
|
|
|
import datetime
|
2018-05-13 13:13:12 +00:00
|
|
|
|
from datetime import timedelta
|
|
|
|
|
from uuid import UUID
|
|
|
|
|
|
2018-04-30 17:58:19 +00:00
|
|
|
|
import pytest
|
2018-06-10 16:47:49 +00:00
|
|
|
|
from colour import Color
|
2018-09-20 07:28:52 +00:00
|
|
|
|
from ereuse_utils.naming import Naming
|
2018-10-03 12:51:22 +00:00
|
|
|
|
from ereuse_utils.test import ANY
|
2018-05-30 10:49:40 +00:00
|
|
|
|
from pytest import raises
|
|
|
|
|
from sqlalchemy.util import OrderedSet
|
2018-09-20 07:28:52 +00:00
|
|
|
|
from teal.db import ResourceNotFound
|
2018-10-23 13:37:37 +00:00
|
|
|
|
from teal.enums import Layouts
|
2018-04-30 17:58:19 +00:00
|
|
|
|
|
2018-10-03 12:51:22 +00:00
|
|
|
|
from ereuse_devicehub.client import Client, UserClient
|
2018-04-10 15:06:39 +00:00
|
|
|
|
from ereuse_devicehub.db import db
|
|
|
|
|
from ereuse_devicehub.devicehub import Devicehub
|
2018-08-03 16:15:08 +00:00
|
|
|
|
from ereuse_devicehub.resources.agent.models import Person
|
2018-10-23 13:37:37 +00:00
|
|
|
|
from ereuse_devicehub.resources.device import models as d
|
2018-04-30 17:58:19 +00:00
|
|
|
|
from ereuse_devicehub.resources.device.exceptions import NeedsId
|
2018-04-27 17:16:43 +00:00
|
|
|
|
from ereuse_devicehub.resources.device.schemas import Device as DeviceS
|
2018-05-30 10:49:40 +00:00
|
|
|
|
from ereuse_devicehub.resources.device.sync import MismatchBetweenTags, MismatchBetweenTagsAndHid, \
|
|
|
|
|
Sync
|
2018-06-26 13:35:13 +00:00
|
|
|
|
from ereuse_devicehub.resources.enums import ComputerChassis, DisplayTech
|
2018-09-29 10:24:22 +00:00
|
|
|
|
from ereuse_devicehub.resources.event import models as m
|
2018-05-13 13:13:12 +00:00
|
|
|
|
from ereuse_devicehub.resources.event.models import Remove, Test
|
2018-05-30 10:49:40 +00:00
|
|
|
|
from ereuse_devicehub.resources.tag.model import Tag
|
2018-05-13 13:13:12 +00:00
|
|
|
|
from ereuse_devicehub.resources.user import User
|
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-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-11 16:58:48 +00:00
|
|
|
|
def test_device_model():
|
2018-04-27 17:16:43 +00:00
|
|
|
|
"""
|
|
|
|
|
Tests that the correctness of the device model and its relationships.
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(model='p1mo',
|
|
|
|
|
manufacturer='p1ma',
|
|
|
|
|
serial_number='p1s',
|
|
|
|
|
chassis=ComputerChassis.Tower)
|
|
|
|
|
net = d.NetworkAdapter(model='c1mo', manufacturer='c1ma', serial_number='c1s')
|
|
|
|
|
graphic = d.GraphicCard(model='c2mo', manufacturer='c2ma', memory=1500)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.components.add(net)
|
|
|
|
|
pc.components.add(graphic)
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.add(pc)
|
|
|
|
|
db.session.commit()
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop.query.one()
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert pc.serial_number == 'p1s'
|
2018-05-30 10:49:40 +00:00
|
|
|
|
assert pc.components == OrderedSet([net, graphic])
|
2018-10-23 13:37:37 +00:00
|
|
|
|
network_adapter = d.NetworkAdapter.query.one()
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert network_adapter.parent == pc
|
|
|
|
|
|
|
|
|
|
# Removing a component from pc doesn't delete the component
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.components.remove(net)
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.commit()
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Device.query.first() # this is the same as querying for d.Desktop directly
|
2018-05-30 10:49:40 +00:00
|
|
|
|
assert pc.components == {graphic}
|
2018-10-23 13:37:37 +00:00
|
|
|
|
network_adapter = d.NetworkAdapter.query.one()
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert network_adapter not in pc.components
|
|
|
|
|
assert network_adapter.parent is None
|
|
|
|
|
|
|
|
|
|
# Deleting the pc deletes everything
|
2018-10-23 13:37:37 +00:00
|
|
|
|
gcard = d.GraphicCard.query.one()
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.delete(pc)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.flush()
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert pc.id == 1
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.Desktop.query.first() is None
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.commit()
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.Desktop.query.first() is None
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert network_adapter.id == 2
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.NetworkAdapter.query.first() is not None, 'We removed the network adaptor'
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert gcard.id == 3, 'We should still hold a reference to a zombie graphic card'
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.GraphicCard.query.first() is None, 'We should have deleted it –it was inside the pc'
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-04-27 17:16:43 +00:00
|
|
|
|
def test_device_schema():
|
|
|
|
|
"""Ensures the user does not upload non-writable or extra fields."""
|
|
|
|
|
device_s = DeviceS()
|
2018-04-30 17:58:19 +00:00
|
|
|
|
device_s.load({'serialNumber': 'foo1', 'model': 'foo', 'manufacturer': 'bar2'})
|
2018-10-23 13:37:37 +00:00
|
|
|
|
device_s.dump(d.Device(id=1))
|
2018-04-30 17:58:19 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
def test_physical_properties():
|
2018-10-23 13:37:37 +00:00
|
|
|
|
c = d.Motherboard(slots=2,
|
|
|
|
|
usb=3,
|
|
|
|
|
serial_number='sn',
|
|
|
|
|
model='ml',
|
|
|
|
|
manufacturer='mr',
|
|
|
|
|
width=2.0,
|
|
|
|
|
color=Color())
|
|
|
|
|
pc = d.Desktop(chassis=ComputerChassis.Tower,
|
|
|
|
|
model='foo',
|
|
|
|
|
manufacturer='bar',
|
|
|
|
|
serial_number='foo-bar',
|
|
|
|
|
weight=2.8,
|
|
|
|
|
width=1.4,
|
|
|
|
|
height=2.1,
|
|
|
|
|
color=Color('LightSeaGreen'))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.components.add(c)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
db.session.add(pc)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
assert c.physical_properties == {
|
|
|
|
|
'usb': 3,
|
|
|
|
|
'serial_number': 'sn',
|
|
|
|
|
'pcmcia': None,
|
|
|
|
|
'model': 'ml',
|
|
|
|
|
'slots': 2,
|
|
|
|
|
'serial': None,
|
|
|
|
|
'firewire': None,
|
|
|
|
|
'manufacturer': 'mr',
|
|
|
|
|
'weight': None,
|
|
|
|
|
'height': None,
|
2018-06-10 16:47:49 +00:00
|
|
|
|
'width': 2.0,
|
|
|
|
|
'depth': None
|
2018-04-30 17:58:19 +00:00
|
|
|
|
}
|
2018-10-13 12:53:46 +00:00
|
|
|
|
assert pc.physical_properties == {
|
|
|
|
|
'model': 'foo',
|
|
|
|
|
'manufacturer': 'bar',
|
|
|
|
|
'serial_number': 'foo-bar',
|
|
|
|
|
'weight': 2.8,
|
|
|
|
|
'width': 1.4,
|
|
|
|
|
'height': 2.1,
|
|
|
|
|
'depth': None,
|
|
|
|
|
'chassis': ComputerChassis.Tower
|
|
|
|
|
}
|
2018-04-30 17:58:19 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
def test_component_similar_one():
|
2018-08-03 18:07:05 +00:00
|
|
|
|
snapshot = conftest.file('pc-components.db')
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = snapshot['device']
|
2018-04-30 17:58:19 +00:00
|
|
|
|
snapshot['components'][0]['serial_number'] = snapshot['components'][1]['serial_number'] = None
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**pc, components=OrderedSet(d.Component(**c) for c in snapshot['components']))
|
|
|
|
|
component1, component2 = pc.components # type: d.Component
|
2018-04-30 17:58:19 +00:00
|
|
|
|
db.session.add(pc)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.flush()
|
2018-04-30 17:58:19 +00:00
|
|
|
|
# Let's create a new component named 'A' similar to 1
|
2018-10-23 13:37:37 +00:00
|
|
|
|
componentA = d.Component(model=component1.model, manufacturer=component1.manufacturer)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
similar_to_a = componentA.similar_one(pc, set())
|
|
|
|
|
assert similar_to_a == component1
|
2018-10-23 13:37:37 +00:00
|
|
|
|
# d.Component B does not have the same model
|
|
|
|
|
componentB = d.Component(model='nope', manufacturer=component1.manufacturer)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
with pytest.raises(ResourceNotFound):
|
|
|
|
|
assert componentB.similar_one(pc, set())
|
|
|
|
|
# If we blacklist component A we won't get anything
|
|
|
|
|
with pytest.raises(ResourceNotFound):
|
|
|
|
|
assert componentA.similar_one(pc, blacklist={componentA.id})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures('auth_app_context')
|
|
|
|
|
def test_add_remove():
|
|
|
|
|
# Original state:
|
|
|
|
|
# pc has c1 and c2
|
|
|
|
|
# pc2 has c3
|
|
|
|
|
# c4 is not with any pc
|
2018-08-03 18:07:05 +00:00
|
|
|
|
values = conftest.file('pc-components.db')
|
2018-04-30 17:58:19 +00:00
|
|
|
|
pc = values['device']
|
2018-10-23 13:37:37 +00:00
|
|
|
|
c1, c2 = (d.Component(**c) for c in values['components'])
|
|
|
|
|
pc = d.Desktop(**pc, components=OrderedSet([c1, c2]))
|
2018-04-30 17:58:19 +00:00
|
|
|
|
db.session.add(pc)
|
2018-10-23 13:37:37 +00:00
|
|
|
|
c3 = d.Component(serial_number='nc1')
|
|
|
|
|
pc2 = d.Desktop(serial_number='s2',
|
|
|
|
|
components=OrderedSet([c3]),
|
|
|
|
|
chassis=ComputerChassis.Microtower)
|
|
|
|
|
c4 = d.Component(serial_number='c4s')
|
2018-04-30 17:58:19 +00:00
|
|
|
|
db.session.add(pc2)
|
|
|
|
|
db.session.add(c4)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
# Test:
|
|
|
|
|
# pc has only c3
|
|
|
|
|
events = Sync.add_remove(device=pc, components={c3, c4})
|
2018-05-13 13:13:12 +00:00
|
|
|
|
db.session.add_all(events)
|
|
|
|
|
db.session.commit() # We enforce the appliance of order_by
|
|
|
|
|
assert len(events) == 1
|
2018-04-30 17:58:19 +00:00
|
|
|
|
assert isinstance(events[0], Remove)
|
|
|
|
|
assert events[0].device == pc2
|
2018-05-30 10:49:40 +00:00
|
|
|
|
assert events[0].components == OrderedSet([c3])
|
2018-04-30 17:58:19 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_run_components_empty():
|
|
|
|
|
"""
|
|
|
|
|
Syncs a device that has an empty components list. The system should
|
|
|
|
|
remove all the components from the device.
|
|
|
|
|
"""
|
2018-08-03 18:07:05 +00:00
|
|
|
|
s = conftest.file('pc-components.db')
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**s['device'], components=OrderedSet(d.Component(**c) for c in s['components']))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(pc)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
# Create a new transient non-db synced object
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**s['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db_pc, _ = Sync().run(pc, components=OrderedSet())
|
|
|
|
|
assert not db_pc.components
|
|
|
|
|
assert not pc.components
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_run_components_none():
|
|
|
|
|
"""
|
|
|
|
|
Syncs a device that has a None components. The system should
|
|
|
|
|
keep all the components from the device.
|
|
|
|
|
"""
|
2018-08-03 18:07:05 +00:00
|
|
|
|
s = conftest.file('pc-components.db')
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**s['device'], components=OrderedSet(d.Component(**c) for c in s['components']))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(pc)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
# Create a new transient non-db synced object
|
2018-10-23 13:37:37 +00:00
|
|
|
|
transient_pc = d.Desktop(**s['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db_pc, _ = Sync().run(transient_pc, components=None)
|
|
|
|
|
assert db_pc.components
|
|
|
|
|
assert db_pc.components == pc.components
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-10-23 13:37:37 +00:00
|
|
|
|
def test_sync_execute_register_desktop_new_desktop_no_tag():
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
Syncs a new d.Desktop with HID and without a tag, creating it.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
:return:
|
|
|
|
|
"""
|
2018-04-30 17:58:19 +00:00
|
|
|
|
# Case 1: device does not exist on DB
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db_pc = Sync().execute_register(pc)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
assert pc.physical_properties == db_pc.physical_properties
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-09-30 10:29:33 +00:00
|
|
|
|
def test_sync_execute_register_desktop_existing_no_tag():
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
Syncs an existing d.Desktop with HID and without a tag.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-04-30 17:58:19 +00:00
|
|
|
|
db.session.add(pc)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(
|
2018-09-20 07:28:52 +00:00
|
|
|
|
**conftest.file('pc-components.db')['device']) # Create a new transient non-db object
|
2018-04-30 17:58:19 +00:00
|
|
|
|
# 1: device exists on DB
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db_pc = Sync().execute_register(pc)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
assert pc.physical_properties == db_pc.physical_properties
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-09-30 10:29:33 +00:00
|
|
|
|
def test_sync_execute_register_desktop_no_hid_no_tag():
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
Syncs a d.Desktop without HID and no tag.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
|
|
|
|
|
This should fail as we don't have a way to identify it.
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-04-30 17:58:19 +00:00
|
|
|
|
# 1: device has no HID
|
|
|
|
|
pc.hid = pc.model = None
|
|
|
|
|
with pytest.raises(NeedsId):
|
2018-05-30 10:49:40 +00:00
|
|
|
|
Sync().execute_register(pc)
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-09-30 10:29:33 +00:00
|
|
|
|
def test_sync_execute_register_desktop_tag_not_linked():
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
Syncs a new d.Desktop with HID and a non-linked tag.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
|
|
|
|
|
It is OK if the tag was not linked, it will be linked in this process.
|
|
|
|
|
"""
|
2018-09-30 10:29:33 +00:00
|
|
|
|
tag = Tag(id='foo')
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(tag)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
# Create a new transient non-db object
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'], tags=OrderedSet([Tag(id='foo')]))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
returned_pc = Sync().execute_register(pc)
|
|
|
|
|
assert returned_pc == pc
|
|
|
|
|
assert tag.device == pc, 'Tag has to be linked'
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.Desktop.query.one() == pc, 'd.Desktop had to be set to db'
|
2018-05-30 10:49:40 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_execute_register_no_hid_tag_not_linked(tag_id: str):
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
Validates registering a d.Desktop without HID and a non-linked tag.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
|
|
|
|
|
In this case it is ok still, as the non-linked tag proves that
|
2018-10-23 13:37:37 +00:00
|
|
|
|
the d.Desktop was not existing before (otherwise the tag would
|
|
|
|
|
be linked), and thus it creates a new d.Desktop.
|
2018-05-30 10:49:40 +00:00
|
|
|
|
"""
|
|
|
|
|
tag = Tag(id=tag_id)
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'], tags=OrderedSet([tag]))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
returned_pc = Sync().execute_register(pc)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
assert returned_pc == pc
|
|
|
|
|
db_tag = next(iter(returned_pc.tags))
|
|
|
|
|
# they are not the same tags though
|
|
|
|
|
# tag is a transient obj and db_tag the one from the db
|
|
|
|
|
# they have the same pk though
|
|
|
|
|
assert tag != db_tag, 'They are not the same tags though'
|
|
|
|
|
assert db_tag.id == tag.id
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert d.Desktop.query.one() == pc, 'd.Desktop had to be set to db'
|
2018-05-30 10:49:40 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_execute_register_tag_does_not_exist():
|
|
|
|
|
"""
|
|
|
|
|
Ensures not being able to register if the tag does not exist,
|
|
|
|
|
even if the device has HID or it existed before.
|
|
|
|
|
|
|
|
|
|
Tags have to be created before trying to link them through a Snapshot.
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(**conftest.file('pc-components.db')['device'], tags=OrderedSet([Tag('foo')]))
|
2018-05-30 10:49:40 +00:00
|
|
|
|
with raises(ResourceNotFound):
|
|
|
|
|
Sync().execute_register(pc)
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_execute_register_tag_linked_same_device():
|
|
|
|
|
"""
|
|
|
|
|
If the tag is linked to the device, regardless if it has HID,
|
|
|
|
|
the system should match the device through the tag.
|
|
|
|
|
(If it has HID it validates both HID and tag point at the same
|
|
|
|
|
device, this his checked in ).
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
orig_pc = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(Tag(id='foo', device=orig_pc))
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(
|
2018-09-20 07:28:52 +00:00
|
|
|
|
**conftest.file('pc-components.db')['device']) # Create a new transient non-db object
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.tags.add(Tag(id='foo'))
|
|
|
|
|
db_pc = Sync().execute_register(pc)
|
|
|
|
|
assert db_pc.id == orig_pc.id
|
|
|
|
|
assert len(db_pc.tags) == 1
|
|
|
|
|
assert next(iter(db_pc.tags)).id == 'foo'
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_execute_register_tag_linked_other_device_mismatch_between_tags():
|
|
|
|
|
"""
|
|
|
|
|
Checks that sync raises an error if finds that at least two passed-in
|
|
|
|
|
tags are not linked to the same device.
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc1 = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(Tag(id='foo-1', device=pc1))
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc2 = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc2.serial_number = 'pc2-serial'
|
|
|
|
|
pc2.hid = Naming.hid(pc2.manufacturer, pc2.serial_number, pc2.model)
|
|
|
|
|
db.session.add(Tag(id='foo-2', device=pc2))
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc1 = d.Desktop(
|
2018-09-20 07:28:52 +00:00
|
|
|
|
**conftest.file('pc-components.db')['device']) # Create a new transient non-db object
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc1.tags.add(Tag(id='foo-1'))
|
|
|
|
|
pc1.tags.add(Tag(id='foo-2'))
|
|
|
|
|
with raises(MismatchBetweenTags):
|
|
|
|
|
Sync().execute_register(pc1)
|
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
def test_sync_execute_register_mismatch_between_tags_and_hid():
|
|
|
|
|
"""
|
|
|
|
|
Checks that sync raises an error if it finds that the HID does
|
|
|
|
|
not point at the same device as the tag does.
|
|
|
|
|
|
|
|
|
|
In this case we set HID -> pc1 but tag -> pc2
|
|
|
|
|
"""
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc1 = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
db.session.add(Tag(id='foo-1', device=pc1))
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc2 = d.Desktop(**conftest.file('pc-components.db')['device'])
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc2.serial_number = 'pc2-serial'
|
|
|
|
|
pc2.hid = Naming.hid(pc2.manufacturer, pc2.serial_number, pc2.model)
|
|
|
|
|
db.session.add(Tag(id='foo-2', device=pc2))
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc1 = d.Desktop(
|
2018-09-20 07:28:52 +00:00
|
|
|
|
**conftest.file('pc-components.db')['device']) # Create a new transient non-db object
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc1.tags.add(Tag(id='foo-2'))
|
|
|
|
|
with raises(MismatchBetweenTagsAndHid):
|
|
|
|
|
Sync().execute_register(pc1)
|
2018-04-30 17:58:19 +00:00
|
|
|
|
|
2018-05-11 16:58:48 +00:00
|
|
|
|
|
|
|
|
|
def test_get_device(app: Devicehub, user: UserClient):
|
2018-10-23 13:37:37 +00:00
|
|
|
|
"""Checks GETting a d.Desktop with its components."""
|
2018-05-11 16:58:48 +00:00
|
|
|
|
with app.app_context():
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(model='p1mo',
|
|
|
|
|
manufacturer='p1ma',
|
|
|
|
|
serial_number='p1s',
|
|
|
|
|
chassis=ComputerChassis.Tower)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.components = OrderedSet([
|
2018-10-23 13:37:37 +00:00
|
|
|
|
d.NetworkAdapter(model='c1mo', manufacturer='c1ma', serial_number='c1s'),
|
|
|
|
|
d.GraphicCard(model='c2mo', manufacturer='c2ma', memory=1500)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
])
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.add(pc)
|
2018-05-13 13:13:12 +00:00
|
|
|
|
db.session.add(Test(device=pc,
|
|
|
|
|
elapsed=timedelta(seconds=4),
|
2018-06-10 16:47:49 +00:00
|
|
|
|
error=False,
|
2018-08-03 16:15:08 +00:00
|
|
|
|
agent=Person(name='Timmy'),
|
2018-05-13 13:13:12 +00:00
|
|
|
|
author=User(email='bar@bar.com')))
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.commit()
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc, _ = user.get(res=d.Device, item=1)
|
2018-05-13 13:13:12 +00:00
|
|
|
|
assert len(pc['events']) == 1
|
|
|
|
|
assert pc['events'][0]['type'] == 'Test'
|
|
|
|
|
assert pc['events'][0]['device'] == 1
|
|
|
|
|
assert pc['events'][0]['elapsed'] == 4
|
2018-06-10 16:47:49 +00:00
|
|
|
|
assert not pc['events'][0]['error']
|
2018-05-13 13:13:12 +00:00
|
|
|
|
assert UUID(pc['events'][0]['author'])
|
2018-05-11 16:58:48 +00:00
|
|
|
|
assert 'events_components' not in pc, 'events_components are internal use only'
|
|
|
|
|
assert 'events_one' not in pc, 'they are internal use only'
|
|
|
|
|
assert 'author' not in pc
|
|
|
|
|
assert tuple(c['id'] for c in pc['components']) == (2, 3)
|
|
|
|
|
assert pc['hid'] == 'p1ma-p1s-p1mo'
|
|
|
|
|
assert pc['model'] == 'p1mo'
|
|
|
|
|
assert pc['manufacturer'] == 'p1ma'
|
|
|
|
|
assert pc['serialNumber'] == 'p1s'
|
2018-10-23 13:37:37 +00:00
|
|
|
|
assert pc['type'] == d.Desktop.t
|
2018-05-11 16:58:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_devices(app: Devicehub, user: UserClient):
|
|
|
|
|
"""Checks GETting multiple devices."""
|
|
|
|
|
with app.app_context():
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Desktop(model='p1mo',
|
|
|
|
|
manufacturer='p1ma',
|
|
|
|
|
serial_number='p1s',
|
|
|
|
|
chassis=ComputerChassis.Tower)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
pc.components = OrderedSet([
|
2018-10-23 13:37:37 +00:00
|
|
|
|
d.NetworkAdapter(model='c1mo', manufacturer='c1ma', serial_number='c1s'),
|
|
|
|
|
d.GraphicCard(model='c2mo', manufacturer='c2ma', memory=1500)
|
2018-05-30 10:49:40 +00:00
|
|
|
|
])
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc1 = d.Desktop(model='p2mo',
|
|
|
|
|
manufacturer='p2ma',
|
|
|
|
|
serial_number='p2s',
|
|
|
|
|
chassis=ComputerChassis.Tower)
|
|
|
|
|
pc2 = d.Laptop(model='p3mo',
|
|
|
|
|
manufacturer='p3ma',
|
|
|
|
|
serial_number='p3s',
|
|
|
|
|
chassis=ComputerChassis.Netbook)
|
2018-05-11 16:58:48 +00:00
|
|
|
|
db.session.add_all((pc, pc1, pc2))
|
|
|
|
|
db.session.commit()
|
2018-10-23 13:37:37 +00:00
|
|
|
|
devices, _ = user.get(res=d.Device)
|
|
|
|
|
assert tuple(dev['id'] for dev in devices['items']) == (1, 2, 3, 4, 5)
|
|
|
|
|
assert tuple(dev['type'] for dev in devices['items']) == (
|
|
|
|
|
d.Desktop.t, d.Desktop.t, d.Laptop.t, d.NetworkAdapter.t, d.GraphicCard.t
|
2018-09-29 10:24:22 +00:00
|
|
|
|
)
|
2018-06-20 21:18:15 +00:00
|
|
|
|
|
|
|
|
|
|
2018-08-03 18:07:05 +00:00
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
2018-06-20 21:18:15 +00:00
|
|
|
|
def test_computer_monitor():
|
2018-10-23 13:37:37 +00:00
|
|
|
|
m = d.ComputerMonitor(technology=DisplayTech.LCD,
|
|
|
|
|
manufacturer='foo',
|
|
|
|
|
model='bar',
|
|
|
|
|
serial_number='foo-bar',
|
|
|
|
|
resolution_width=1920,
|
|
|
|
|
resolution_height=1080,
|
|
|
|
|
size=14.5)
|
2018-06-20 21:18:15 +00:00
|
|
|
|
db.session.add(m)
|
|
|
|
|
db.session.commit()
|
2018-06-26 13:35:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='Make test')
|
|
|
|
|
def test_mobile_meid():
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='Make test')
|
|
|
|
|
def test_mobile_imei():
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='Make test')
|
|
|
|
|
def test_computer_with_display():
|
|
|
|
|
pass
|
2018-09-29 10:24:22 +00:00
|
|
|
|
|
|
|
|
|
|
2018-09-30 17:40:28 +00:00
|
|
|
|
def test_manufacturer(user: UserClient):
|
2018-10-18 11:08:42 +00:00
|
|
|
|
m, r = user.get(res='Manufacturer', query=[('search', 'asus')])
|
2018-09-30 17:40:28 +00:00
|
|
|
|
assert m == {'items': [{'name': 'Asus', 'url': 'https://en.wikipedia.org/wiki/Asus'}]}
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert r.cache_control.public
|
|
|
|
|
assert r.expires > datetime.datetime.now()
|
2018-09-30 17:40:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='Develop functionality')
|
|
|
|
|
def test_manufacturer_enforced():
|
|
|
|
|
"""Ensures that non-computer devices can submit only
|
|
|
|
|
manufacturers from the Manufacturer table."""
|
2018-10-03 12:51:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_device_properties_format(app: Devicehub, user: UserClient):
|
|
|
|
|
user.post(file('asus-eee-1000h.snapshot.11'), res=m.Snapshot)
|
|
|
|
|
with app.app_context():
|
2018-10-23 13:37:37 +00:00
|
|
|
|
pc = d.Laptop.query.one() # type: d.Laptop
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert format(pc) == 'Laptop 1: model 1000h, S/N 94oaaq021116'
|
2018-10-16 14:30:10 +00:00
|
|
|
|
assert format(pc, 't') == 'Netbook 1000h'
|
|
|
|
|
assert format(pc, 's') == '(asustek computer inc.) S/N 94OAAQ021116'
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert pc.ram_size == 1024
|
|
|
|
|
assert pc.data_storage_size == 152627
|
|
|
|
|
assert pc.graphic_card_model == 'mobile 945gse express integrated graphics controller'
|
|
|
|
|
assert pc.processor_model == 'intel atom cpu n270 @ 1.60ghz'
|
2018-10-23 13:37:37 +00:00
|
|
|
|
net = next(c for c in pc.components if isinstance(c, d.NetworkAdapter))
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert format(net) == 'NetworkAdapter 2: model ar8121/ar8113/ar8114 ' \
|
|
|
|
|
'gigabit or fast ethernet, S/N 00:24:8c:7f:cf:2d'
|
|
|
|
|
assert format(net, 't') == 'NetworkAdapter ar8121/ar8113/ar8114 gigabit or fast ethernet'
|
2018-10-16 14:30:10 +00:00
|
|
|
|
assert format(net, 's') == '(qualcomm atheros) S/N 00:24:8C:7F:CF:2D – 100 Mbps'
|
2018-10-23 13:37:37 +00:00
|
|
|
|
hdd = next(c for c in pc.components if isinstance(c, d.DataStorage))
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert format(hdd) == 'HardDrive 7: model st9160310as, S/N 5sv4tqa6'
|
|
|
|
|
assert format(hdd, 't') == 'HardDrive st9160310as'
|
2018-10-16 14:30:10 +00:00
|
|
|
|
assert format(hdd, 's') == '(seagate) S/N 5SV4TQA6 – 152 GB'
|
2018-10-03 12:51:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_device_public(user: UserClient, client: Client):
|
|
|
|
|
s, _ = user.post(file('asus-eee-1000h.snapshot.11'), res=m.Snapshot)
|
2018-10-23 13:37:37 +00:00
|
|
|
|
html, _ = client.get(res=d.Device, item=s['device']['id'], accept=ANY)
|
2018-10-03 12:51:22 +00:00
|
|
|
|
assert 'intel atom cpu n270 @ 1.60ghz' in html
|
2018-10-16 14:30:10 +00:00
|
|
|
|
assert 'S/N 00:24:8C:7F:CF:2D – 100 Mbps' in html
|
2018-10-23 13:37:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
|
|
|
|
def test_computer_accessory_model():
|
|
|
|
|
sai = d.SAI()
|
|
|
|
|
db.session.add(sai)
|
|
|
|
|
keyboard = d.Keyboard(layout=Layouts.ES)
|
|
|
|
|
db.session.add(keyboard)
|
|
|
|
|
mouse = d.Mouse()
|
|
|
|
|
db.session.add(mouse)
|
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures(conftest.app_context.__name__)
|
|
|
|
|
def test_networking_model():
|
|
|
|
|
router = d.Router(speed=1000, wireless=True)
|
|
|
|
|
db.session.add(router)
|
|
|
|
|
switch = d.Switch(speed=1000, wireless=False)
|
|
|
|
|
db.session.add(switch)
|
|
|
|
|
db.session.commit()
|