forked from CGM_Public/pretix_original
113 lines
3.3 KiB
Python
113 lines
3.3 KiB
Python
import pytest
|
|
from django.utils.timezone import now
|
|
from django_scopes import scopes_disabled
|
|
|
|
from pretix.base.models import Device
|
|
|
|
|
|
@pytest.fixture
|
|
def device(organizer, event):
|
|
t = organizer.devices.create(
|
|
device_id=1,
|
|
name='Scanner',
|
|
hardware_brand="Zebra",
|
|
unique_serial="UOS3GNZ27O39V3QS",
|
|
initialization_token="frkso3m2w58zuw70",
|
|
hardware_model="TC25",
|
|
software_brand="pretixSCAN",
|
|
software_version="1.5.1",
|
|
initialized=now(),
|
|
all_events=False,
|
|
)
|
|
t.limit_events.add(event)
|
|
return t
|
|
|
|
|
|
TEST_DEV_RES = {
|
|
"device_id": 1,
|
|
"unique_serial": "UOS3GNZ27O39V3QS",
|
|
"initialization_token": "frkso3m2w58zuw70",
|
|
"all_events": False,
|
|
"limit_events": [
|
|
"dummy"
|
|
],
|
|
"revoked": False,
|
|
"name": "Scanner",
|
|
"created": "2020-09-18T14:17:40.971519Z",
|
|
"initialized": "2020-09-18T14:17:44.190021Z",
|
|
"hardware_brand": "Zebra",
|
|
"hardware_model": "TC25",
|
|
"software_brand": "pretixSCAN",
|
|
"software_version": "1.5.1",
|
|
"security_profile": "full"
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_device_list(token_client, organizer, event, device):
|
|
res = dict(TEST_DEV_RES)
|
|
res["created"] = device.created.isoformat().replace('+00:00', 'Z')
|
|
res["initialized"] = device.initialized.isoformat().replace('+00:00', 'Z')
|
|
|
|
resp = token_client.get('/api/v1/organizers/{}/devices/'.format(organizer.slug))
|
|
assert resp.status_code == 200
|
|
assert [res] == resp.data['results']
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_device_detail(token_client, organizer, event, device):
|
|
res = dict(TEST_DEV_RES)
|
|
res["created"] = device.created.isoformat().replace('+00:00', 'Z')
|
|
res["initialized"] = device.initialized.isoformat().replace('+00:00', 'Z')
|
|
resp = token_client.get('/api/v1/organizers/{}/devices/{}/'.format(organizer.slug, device.device_id))
|
|
assert resp.status_code == 200
|
|
assert res == resp.data
|
|
|
|
|
|
TEST_DEVICE_CREATE_PAYLOAD = {
|
|
"name": "Foobar",
|
|
"all_events": False,
|
|
"limit_events": ["dummy"],
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_device_create(token_client, organizer, event):
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/devices/'.format(organizer.slug),
|
|
TEST_DEVICE_CREATE_PAYLOAD,
|
|
format='json'
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
d = Device.objects.get(device_id=resp.data['device_id'])
|
|
assert list(d.limit_events.all()) == [event]
|
|
assert d.initialization_token
|
|
assert not d.initialized
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_device_update(token_client, organizer, event, device):
|
|
resp = token_client.patch(
|
|
'/api/v1/organizers/{}/devices/{}/'.format(organizer.slug, device.device_id),
|
|
{
|
|
'name': 'bla',
|
|
'hardware_brand': 'Foo'
|
|
},
|
|
format='json'
|
|
)
|
|
assert resp.status_code == 200
|
|
device.refresh_from_db()
|
|
assert device.hardware_brand == 'Zebra'
|
|
assert device.name == 'bla'
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_device_delete(token_client, organizer, event, device):
|
|
resp = token_client.delete(
|
|
'/api/v1/organizers/{}/devices/{}/'.format(organizer.slug, device.device_id),
|
|
)
|
|
assert resp.status_code == 405
|
|
with scopes_disabled():
|
|
assert organizer.devices.count() == 1
|