fixing tests
This commit is contained in:
parent
4122ac165e
commit
ebe089499d
|
@ -176,10 +176,10 @@ def test_device_query_filter_lots(user: UserClient):
|
||||||
@pytest.mark.mvp
|
@pytest.mark.mvp
|
||||||
def test_device_query(user: UserClient):
|
def test_device_query(user: UserClient):
|
||||||
"""Checks result of inventory."""
|
"""Checks result of inventory."""
|
||||||
user.post(conftest.file('basic.snapshot'), res=Snapshot)
|
snapshot, _ = user.post(conftest.file('basic.snapshot'), res=Snapshot)
|
||||||
i, _ = user.get(res=Device)
|
i, _ = user.get(res=Device)
|
||||||
assert i['url'] == '/devices/'
|
assert i['url'] == '/devices/'
|
||||||
assert i['items'][0]['url'] == '/devices/1'
|
assert i['items'][0]['url'] == '/devices/{}'.format(snapshot['device']['id'])
|
||||||
pc = next(d for d in i['items'] if d['type'] == 'Desktop')
|
pc = next(d for d in i['items'] if d['type'] == 'Desktop')
|
||||||
assert len(pc['actions']) == 4
|
assert len(pc['actions']) == 4
|
||||||
assert len(pc['components']) == 3
|
assert len(pc['components']) == 3
|
||||||
|
@ -241,14 +241,14 @@ def test_device_search_regenerate_table(app: DeviceSearch, user: UserClient):
|
||||||
@pytest.mark.mvp
|
@pytest.mark.mvp
|
||||||
def test_device_query_search(user: UserClient):
|
def test_device_query_search(user: UserClient):
|
||||||
# todo improve
|
# todo improve
|
||||||
user.post(file('basic.snapshot'), res=Snapshot)
|
snapshot, _ = user.post(file('basic.snapshot'), res=Snapshot)
|
||||||
user.post(file('computer-monitor.snapshot'), res=Snapshot)
|
user.post(file('computer-monitor.snapshot'), res=Snapshot)
|
||||||
user.post(file('real-eee-1001pxd.snapshot.11'), res=Snapshot)
|
user.post(file('real-eee-1001pxd.snapshot.11'), res=Snapshot)
|
||||||
i, _ = user.get(res=Device, query=[('search', 'desktop')])
|
i, _ = user.get(res=Device, query=[('search', 'desktop')])
|
||||||
assert i['items'][0]['id'] == 1
|
assert i['items'][0]['id'] == snapshot['device']['id']
|
||||||
i, _ = user.get(res=Device, query=[('search', 'intel')])
|
i, _ = user.get(res=Device, query=[('search', 'intel')])
|
||||||
assert len(i['items']) == 1
|
assert len(i['items']) == 1
|
||||||
i, _ = user.get(res=Device, query=[('search', '1')])
|
i, _ = user.get(res=Device, query=[('search', snapshot['device']['id'])])
|
||||||
assert len(i['items']) == 1
|
assert len(i['items']) == 1
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -282,7 +282,7 @@ def test_tag_manual_link_search(app: Devicehub, user: UserClient):
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
desktop_id = desktop.id
|
desktop_id = desktop.id
|
||||||
user.put({}, res=Tag, item='foo-bar/device/{}'.format(desktop_id), status=204)
|
user.put({}, res=Tag, item='foo-bar/device/{}'.format(desktop_id), status=204)
|
||||||
device, _ = user.get(res=Device, item=1)
|
device, _ = user.get(res=Device, item=desktop_id)
|
||||||
assert device['tags'][0]['id'] == 'foo-bar'
|
assert device['tags'][0]['id'] == 'foo-bar'
|
||||||
|
|
||||||
# Device already linked
|
# Device already linked
|
||||||
|
|
|
@ -32,20 +32,24 @@ def test_workbench_server_condensed(user: UserClient):
|
||||||
user.post({'id': t['id']}, res=Tag)
|
user.post({'id': t['id']}, res=Tag)
|
||||||
|
|
||||||
snapshot, _ = user.post(res=em.Snapshot, data=s)
|
snapshot, _ = user.post(res=em.Snapshot, data=s)
|
||||||
|
pc_id = snapshot['device']['id']
|
||||||
|
cpu_id = snapshot['components'][3]['id']
|
||||||
|
ssd_id= snapshot['components'][4]['id']
|
||||||
|
hdd_id = snapshot['components'][5]['id']
|
||||||
actions = snapshot['actions']
|
actions = snapshot['actions']
|
||||||
assert {(action['type'], action['device']) for action in actions} == {
|
assert {(action['type'], action['device']) for action in actions} == {
|
||||||
('BenchmarkProcessorSysbench', 5),
|
('BenchmarkProcessorSysbench', cpu_id),
|
||||||
('StressTest', 1),
|
('StressTest', pc_id),
|
||||||
('EraseSectors', 6),
|
('EraseSectors', ssd_id),
|
||||||
('EreusePrice', 1),
|
('EreusePrice', pc_id),
|
||||||
('BenchmarkRamSysbench', 1),
|
('BenchmarkRamSysbench', pc_id),
|
||||||
('BenchmarkProcessor', 5),
|
('BenchmarkProcessor', cpu_id),
|
||||||
('Install', 6),
|
('Install', ssd_id),
|
||||||
('EraseSectors', 7),
|
('EraseSectors', hdd_id),
|
||||||
('BenchmarkDataStorage', 6),
|
('BenchmarkDataStorage', ssd_id),
|
||||||
('BenchmarkDataStorage', 7),
|
('BenchmarkDataStorage', hdd_id),
|
||||||
('TestDataStorage', 6),
|
('TestDataStorage', ssd_id),
|
||||||
('RateComputer', 1)
|
('RateComputer', pc_id)
|
||||||
}
|
}
|
||||||
assert snapshot['closed']
|
assert snapshot['closed']
|
||||||
assert snapshot['severity'] == 'Info'
|
assert snapshot['severity'] == 'Info'
|
||||||
|
|
Reference in New Issue