mirror of
https://github.com/pretix/pretix.git
synced 2026-04-24 23:32:33 +00:00
* add API endpoint /seats to event
* fix logging
* add Seat annotations
* add seats endpoint for subevents
* return ids of occupying objects instead of boolean flags
* wip
* include orderposition instead of order in seat info
* add API documentation
* Apply suggestions from code review
Co-authored-by: Raphael Michel <michel@rami.io>
* Apply suggestions from code review
* Clarify API docs
* add api examples
* add test cases
* require can_view_orders permission for retrieving seats
* improve permission handling
* Revert "improve permission handling"
This reverts commit f32b532cc6.
* improve permission handling (minimal version)
* formatting
* add permission tests
* fix bug
* update permission checks
* Apply suggestions from code review
Co-authored-by: Raphael Michel <michel@rami.io>
* add tests for permission checks
* add tests for expand=voucher and expand=cartposition
* remove unused parameter
* test query count
* codestyle
---------
Co-authored-by: Raphael Michel <michel@rami.io>
1395 lines
50 KiB
Python
1395 lines
50 KiB
Python
#
|
|
# This file is part of pretix (Community Edition).
|
|
#
|
|
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
|
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
|
# Public License as published by the Free Software Foundation in version 3 of the License.
|
|
#
|
|
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
|
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
|
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
|
# this file, see <https://pretix.eu/about/en/license>.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
|
# <https://www.gnu.org/licenses/>.
|
|
#
|
|
import copy
|
|
import datetime
|
|
from decimal import Decimal
|
|
from unittest import mock
|
|
|
|
import pytest
|
|
from django.core.files.base import ContentFile
|
|
from django.utils.timezone import now
|
|
from django_scopes import scopes_disabled
|
|
from tests.const import SAMPLE_PNG
|
|
|
|
from pretix.base.models import Question, SeatingPlan
|
|
from pretix.base.models.orders import CartPosition
|
|
|
|
|
|
@pytest.fixture
|
|
def item(event):
|
|
return event.items.create(name="Budget Ticket", default_price=23)
|
|
|
|
|
|
@pytest.fixture
|
|
def item2(event2):
|
|
return event2.items.create(name="Budget Ticket", default_price=23)
|
|
|
|
|
|
@pytest.fixture
|
|
def taxrule(event):
|
|
return event.tax_rules.create(rate=Decimal('19.00'))
|
|
|
|
|
|
@pytest.fixture
|
|
def question(event, item):
|
|
q = event.questions.create(question="T-Shirt size", type="S", identifier="ABC")
|
|
q.items.add(item)
|
|
q.options.create(answer="XL", identifier="LVETRWVU")
|
|
return q
|
|
|
|
|
|
@pytest.fixture
|
|
def question2(event2, item2):
|
|
q = event2.questions.create(question="T-Shirt size", type="S", identifier="ABC")
|
|
q.items.add(item2)
|
|
return q
|
|
|
|
|
|
@pytest.fixture
|
|
def quota(event, item):
|
|
q = event.quotas.create(name="Budget Quota", size=200)
|
|
q.items.add(item)
|
|
return q
|
|
|
|
|
|
TEST_CARTPOSITION_RES = {
|
|
'id': 1,
|
|
'cart_id': 'aaa@api',
|
|
'item': 1,
|
|
'variation': None,
|
|
'price': '23.00',
|
|
'attendee_name_parts': {'full_name': 'Peter'},
|
|
'attendee_name': 'Peter',
|
|
'attendee_email': None,
|
|
'voucher': None,
|
|
'addon_to': None,
|
|
'is_bundled': False,
|
|
'subevent': None,
|
|
'datetime': '2018-06-11T10:00:00Z',
|
|
'expires': '2018-06-11T10:00:00Z',
|
|
'includes_tax': True,
|
|
'seat': None,
|
|
'answers': []
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cp_list(token_client, organizer, event, item, taxrule, question):
|
|
testtime = datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
|
|
with mock.patch('django.utils.timezone.now') as mock_now:
|
|
mock_now.return_value = testtime
|
|
cr = CartPosition.objects.create(
|
|
event=event, cart_id="aaa", item=item,
|
|
price=23, attendee_name_parts={'full_name': 'Peter'},
|
|
datetime=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc),
|
|
expires=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
)
|
|
res = dict(TEST_CARTPOSITION_RES)
|
|
res["id"] = cr.pk
|
|
res["item"] = item.pk
|
|
|
|
resp = token_client.get('/api/v1/organizers/{}/events/{}/cartpositions/'.format(organizer.slug, event.slug))
|
|
assert resp.status_code == 200
|
|
assert [] == resp.data['results']
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cp_list_api(token_client, organizer, event, item, taxrule, question):
|
|
testtime = datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
|
|
with mock.patch('django.utils.timezone.now') as mock_now:
|
|
mock_now.return_value = testtime
|
|
cr = CartPosition.objects.create(
|
|
event=event, cart_id="aaa@api", item=item,
|
|
price=23, attendee_name_parts={'full_name': 'Peter'},
|
|
datetime=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc),
|
|
expires=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
)
|
|
res = dict(TEST_CARTPOSITION_RES)
|
|
res["id"] = cr.pk
|
|
res["item"] = item.pk
|
|
|
|
resp = token_client.get('/api/v1/organizers/{}/events/{}/cartpositions/'.format(organizer.slug, event.slug))
|
|
assert resp.status_code == 200
|
|
assert [res] == resp.data['results']
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cp_detail(token_client, organizer, event, item, taxrule, question):
|
|
testtime = datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
|
|
with mock.patch('django.utils.timezone.now') as mock_now:
|
|
mock_now.return_value = testtime
|
|
cr = CartPosition.objects.create(
|
|
event=event, cart_id="aaa@api", item=item,
|
|
price=23, attendee_name_parts={'full_name': 'Peter'},
|
|
datetime=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc),
|
|
expires=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
)
|
|
res = dict(TEST_CARTPOSITION_RES)
|
|
res["id"] = cr.pk
|
|
res["item"] = item.pk
|
|
resp = token_client.get('/api/v1/organizers/{}/events/{}/cartpositions/{}/'.format(organizer.slug, event.slug,
|
|
cr.pk))
|
|
assert resp.status_code == 200
|
|
assert res == resp.data
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cp_delete(token_client, organizer, event, item, taxrule, question):
|
|
testtime = datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
|
|
with mock.patch('django.utils.timezone.now') as mock_now:
|
|
mock_now.return_value = testtime
|
|
cr = CartPosition.objects.create(
|
|
event=event, cart_id="aaa@api", item=item,
|
|
price=23, attendee_name_parts={'full_name': 'Peter'},
|
|
datetime=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc),
|
|
expires=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
)
|
|
CartPosition.objects.create(
|
|
event=event, cart_id="aaa@api", item=item, addon_to=cr,
|
|
price=23, attendee_name_parts={'full_name': 'Peter'},
|
|
datetime=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc),
|
|
expires=datetime.datetime(2018, 6, 11, 10, 0, 0, 0, tzinfo=datetime.timezone.utc)
|
|
)
|
|
res = dict(TEST_CARTPOSITION_RES)
|
|
res["id"] = cr.pk
|
|
res["item"] = item.pk
|
|
resp = token_client.delete('/api/v1/organizers/{}/events/{}/cartpositions/{}/'.format(organizer.slug, event.slug,
|
|
cr.pk))
|
|
assert resp.status_code == 204
|
|
|
|
|
|
CARTPOS_CREATE_PAYLOAD = {
|
|
'cart_id': 'aaa@api',
|
|
'item': 1,
|
|
'variation': None,
|
|
'price': '23.00',
|
|
'attendee_name_parts': {'full_name': 'Peter'},
|
|
'attendee_email': None,
|
|
'addon_to': None,
|
|
'subevent': None,
|
|
'expires': '2018-06-11T10:00:00Z',
|
|
'includes_tax': True,
|
|
'sales_channel': 'web',
|
|
'answers': []
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp.price == Decimal('23.00')
|
|
assert cp.item == item
|
|
assert cp.attendee_name_parts == {'full_name': 'Peter'}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_name_optional(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['attendee_name'] = None
|
|
del res['attendee_name_parts']
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp.price == Decimal('23.00')
|
|
assert cp.item == item
|
|
assert cp.attendee_name_parts == {}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_legacy_name(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['attendee_name'] = 'Peter'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
del res['attendee_name_parts']
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp.price == Decimal('23.00')
|
|
assert cp.item == item
|
|
assert cp.attendee_name_parts == {'_legacy': 'Peter'}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_cart_id_noapi(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['cart_id'] = 'aaa'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_cart_id_optional(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
del res['cart_id']
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp.price == Decimal('23.00')
|
|
assert cp.item == item
|
|
assert len(cp.cart_id) > 48
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_subevent_validation(token_client, organizer, event, item, subevent, subevent2, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'subevent': ['You need to set a subevent.']}
|
|
|
|
res['subevent'] = subevent2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'subevent': ['The specified subevent does not belong to this event.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_item_validation(token_client, organizer, event, item, item2, quota, question):
|
|
item.active = False
|
|
item.save()
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'item': ['The specified item is not active.']}
|
|
item.active = True
|
|
item.save()
|
|
|
|
res['item'] = item2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'item': ['The specified item does not belong to this event.']}
|
|
|
|
with scopes_disabled():
|
|
var2 = item2.variations.create(value="A")
|
|
|
|
res['item'] = item.pk
|
|
res['variation'] = var2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'non_field_errors': ['You cannot specify a variation for this item.']}
|
|
|
|
with scopes_disabled():
|
|
var1 = item.variations.create(value="A")
|
|
res['item'] = item.pk
|
|
res['variation'] = var1.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'non_field_errors': ['The product "Budget Ticket" is not assigned to a quota.']}
|
|
|
|
quota.variations.add(var1)
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
|
|
res['variation'] = var2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'non_field_errors': ['The specified variation does not belong to the specified item.']}
|
|
|
|
res['variation'] = None
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'non_field_errors': ['You should specify a variation for this item.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_expires_optional(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
del res['expires']
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp.price == Decimal('23.00')
|
|
assert cp.item == item
|
|
assert cp.expires - now() > datetime.timedelta(minutes=25)
|
|
assert cp.expires - now() < datetime.timedelta(minutes=35)
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_answer_validation(token_client, organizer, event, item, quota, question, question2):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['answers'] = [{
|
|
"question": 1,
|
|
"answer": "S",
|
|
"options": []
|
|
}]
|
|
|
|
res['item'] = item.pk
|
|
res['answers'][0]['question'] = question2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [{'question': ['The specified question does not belong to this event.']}]}
|
|
|
|
res['answers'][0]['question'] = question.pk
|
|
res['answers'][0]['options'] = [question.options.first().pk]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {
|
|
'answers': [{'non_field_errors': ['You should not specify options if the question is not of a choice type.']}]}
|
|
|
|
question.type = Question.TYPE_CHOICE
|
|
question.save()
|
|
res['answers'][0]['options'] = []
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {
|
|
'answers': [{'non_field_errors': ['You need to specify options if the question is of a choice type.']}]}
|
|
|
|
with scopes_disabled():
|
|
question.options.create(answer="L")
|
|
res['answers'][0]['options'] = [
|
|
question.options.first().pk,
|
|
question.options.last().pk,
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [{'non_field_errors': ['You can specify at most one option for this question.']}]}
|
|
|
|
r = token_client.post(
|
|
'/api/v1/upload',
|
|
data={
|
|
'media_type': 'image/png',
|
|
'file': ContentFile(SAMPLE_PNG)
|
|
},
|
|
format='upload',
|
|
HTTP_CONTENT_DISPOSITION='attachment; filename="file.png"',
|
|
)
|
|
assert r.status_code == 201
|
|
file_id_png = r.data['id']
|
|
res['answers'][0]['options'] = []
|
|
res['answers'][0]['answer'] = file_id_png
|
|
question.type = Question.TYPE_FILE
|
|
question.save()
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.file
|
|
assert answ.answer.startswith("file://")
|
|
|
|
question.type = Question.TYPE_CHOICE_MULTIPLE
|
|
question.save()
|
|
res['answers'][0]['options'] = [
|
|
question.options.first().pk,
|
|
question.options.last().pk,
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.question == question
|
|
assert answ.answer == "XL, L"
|
|
|
|
question.type = Question.TYPE_NUMBER
|
|
question.save()
|
|
res['answers'][0]['options'] = []
|
|
res['answers'][0]['answer'] = '3.45'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "3.45"
|
|
|
|
question.type = Question.TYPE_NUMBER
|
|
question.save()
|
|
res['answers'][0]['options'] = []
|
|
res['answers'][0]['answer'] = 'foo'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [{'non_field_errors': ['A valid number is required.']}]}
|
|
|
|
question.type = Question.TYPE_BOOLEAN
|
|
question.save()
|
|
res['answers'][0]['options'] = []
|
|
res['answers'][0]['answer'] = 'True'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "True"
|
|
|
|
question.type = Question.TYPE_BOOLEAN
|
|
question.save()
|
|
res['answers'][0]['answer'] = '0'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "False"
|
|
|
|
question.type = Question.TYPE_BOOLEAN
|
|
question.save()
|
|
res['answers'][0]['answer'] = 'bla'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [{'non_field_errors': ['Please specify "true" or "false" for boolean questions.']}]}
|
|
|
|
question.type = Question.TYPE_DATE
|
|
question.save()
|
|
res['answers'][0]['answer'] = '2018-05-14'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "2018-05-14"
|
|
|
|
question.type = Question.TYPE_DATE
|
|
question.save()
|
|
res['answers'][0]['answer'] = 'bla'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {
|
|
'answers': [{'non_field_errors': ['Date has wrong format. Use one of these formats instead: YYYY-MM-DD.']}]}
|
|
|
|
question.type = Question.TYPE_DATETIME
|
|
question.save()
|
|
res['answers'][0]['answer'] = '2018-05-14T13:00:00Z'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "2018-05-14 13:00:00+00:00"
|
|
|
|
question.type = Question.TYPE_DATETIME
|
|
question.save()
|
|
res['answers'][0]['answer'] = 'bla'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [{'non_field_errors': [
|
|
'Datetime has wrong format. Use one of these formats instead: '
|
|
'YYYY-MM-DDThh:mm[:ss[.uuuuuu]][+HH:MM|-HH:MM|Z].']}]}
|
|
|
|
question.type = Question.TYPE_TIME
|
|
question.save()
|
|
res['answers'][0]['answer'] = '13:00:00'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
pos = CartPosition.objects.get(pk=resp.data['id'])
|
|
answ = pos.answers.first()
|
|
assert answ.answer == "13:00:00"
|
|
|
|
question.type = Question.TYPE_TIME
|
|
question.save()
|
|
res['answers'][0]['answer'] = 'bla'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'answers': [
|
|
{'non_field_errors': ['Time has wrong format. Use one of these formats instead: hh:mm[:ss[.uuuuuu]].']}]}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_quota_validation(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
|
|
quota.size = 0
|
|
quota.save()
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == ['There is not enough quota available on quota "Budget Quota" to perform the operation.']
|
|
|
|
|
|
@pytest.fixture
|
|
def seat(event, organizer, item):
|
|
SeatingPlan.objects.create(
|
|
name="Plan", organizer=organizer, layout="{}"
|
|
)
|
|
event.seat_category_mappings.create(
|
|
layout_category='Stalls', product=item
|
|
)
|
|
return event.seats.create(seat_number="A1", product=item, seat_guid="A1")
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_seat(token_client, organizer, event, item, quota, seat, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['expires'] = now() + datetime.timedelta(hours=1)
|
|
res['item'] = item.pk
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
p = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert p.seat == seat
|
|
|
|
resp = token_client.get('/api/v1/organizers/{}/events/{}/seats/{}/'.format(organizer.slug, event.slug, seat.pk))
|
|
assert resp.status_code == 200
|
|
assert resp.data['cartposition'] == p.pk
|
|
|
|
resp = token_client.get('/api/v1/organizers/{}/events/{}/seats/{}/?expand=cartposition'.format(organizer.slug, event.slug, seat.pk))
|
|
assert resp.status_code == 200
|
|
assert resp.data['cartposition']['id'] == p.pk
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_blocked_seat(token_client, organizer, event, item, quota, seat, question):
|
|
seat.blocked = True
|
|
seat.save()
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'seat': ['The selected seat "Seat A1" is not available.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_blocked_seat_allowed(token_client, organizer, event, item, quota, seat, question):
|
|
seat.blocked = True
|
|
seat.save()
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['seat'] = seat.seat_guid
|
|
res['sales_channel'] = 'bar'
|
|
event.settings.seating_allow_blocked_seats_for_channel = ['bar']
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_used_seat(token_client, organizer, event, item, quota, seat, question):
|
|
CartPosition.objects.create(
|
|
event=event, cart_id='aaa', item=item,
|
|
price=21.5, expires=now() + datetime.timedelta(minutes=10), seat=seat
|
|
)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'seat': ['The selected seat "Seat A1" is not available.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_unknown_seat(token_client, organizer, event, item, quota, seat, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['seat'] = seat.seat_guid + '_'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'seat': ['The specified seat does not exist.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_require_seat(token_client, organizer, event, item, quota, seat, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'seat': ['The specified product requires to choose a seat.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_unseated(token_client, organizer, event, item, quota, seat, question):
|
|
with scopes_disabled():
|
|
item2 = event.items.create(name="Budget Ticket", default_price=23)
|
|
quota.items.add(item2)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item2.pk
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'seat': ['The specified product does not allow to choose a seat.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_simple(token_client, organizer, event, item, quota, question):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 2
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp2 = CartPosition.objects.get(pk=resp.data['results'][1]['data']['id'])
|
|
assert cp1.price == Decimal('23.00')
|
|
assert cp2.price == Decimal('23.00')
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_partial_validation_failure(token_client, organizer, event, item, quota, question):
|
|
res1 = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res1['item'] = item.pk
|
|
res2 = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res2['item'] = -1
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res1,
|
|
res2
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
assert resp.data['results'][1]['errors'] == {'item': ['Invalid pk "-1" - object does not exist.']}
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 1
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
assert cp1.price == Decimal('23.00')
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_partial_quota_failure(token_client, organizer, event, item, quota, question):
|
|
quota.size = 1
|
|
quota.save()
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
assert resp.data['results'][1]['errors'] == {'non_field_errors': ['There is not enough quota available on quota "Budget Quota" to perform the operation.']}
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 1
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
assert cp1.price == Decimal('23.00')
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_partial_seat_failure(token_client, organizer, event, item, quota, question, seat):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['seat'] = seat.seat_guid
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
assert resp.data['results'][1]['errors'] == {'non_field_errors': ['You can not select the same seat multiple times.']}
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 1
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
assert cp1.price == Decimal('23.00')
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_by_code(token_client, organizer, event, item, quota, seat):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", seat=seat)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 201
|
|
with scopes_disabled():
|
|
cp1 = CartPosition.objects.get(pk=resp.data['id'])
|
|
assert cp1.voucher == voucher
|
|
assert cp1.seat == seat
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_unknown(token_client, organizer, event, item, quota):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = 'TEST'
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher does not exist.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_invalid_item(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
item2 = event.items.create(name="item2", default_price=0)
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item2)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher is not valid for the given item and variation.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_invalid_seat(token_client, organizer, event, item, quota, seat):
|
|
with scopes_disabled():
|
|
seat2 = event.seats.create(seat_number="A2", product=item, seat_guid="A2")
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, seat=seat2)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
res['seat'] = seat.seat_guid
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher is not valid for this seat.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_invalid_subevent(token_client, organizer, event, item, quota, subevent):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, subevent=subevent)
|
|
se2 = event.subevents.create(name="Foobar", date_from=subevent.date_from)
|
|
quota.subevent = se2
|
|
quota.save()
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
res['subevent'] = se2.pk
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher is not valid for this subevent.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_expired(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, valid_until=now() - datetime.timedelta(days=1))
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher is expired.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_with_voucher_redeemed(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, redeemed=1)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['voucher'] = voucher.code
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=res
|
|
)
|
|
assert resp.status_code == 400
|
|
assert resp.data == {'voucher': ['The specified voucher has already been used the maximum number of times.']}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_voucher(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, max_usages=3, redeemed=1)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['voucher'] = voucher.code
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 2
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp2 = CartPosition.objects.get(pk=resp.data['results'][1]['data']['id'])
|
|
assert cp1.voucher == voucher
|
|
assert cp2.voucher == voucher
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_voucher_redeemed(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
voucher = event.vouchers.create(code="FOOBAR", item=item, max_usages=3, redeemed=2)
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['voucher'] = voucher.code
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
assert resp.data['results'][1]['errors'] == {'voucher': ['The specified voucher has already been used the maximum number of times.']}
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 1
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
assert cp1.voucher == voucher
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_addon(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
addon_cat = event.categories.create(name='Addons')
|
|
addon_item = event.items.create(name='Workshop', default_price=2, category=addon_cat)
|
|
item.addons.create(addon_category=addon_cat)
|
|
q = event.quotas.create(name="Addon Quota", size=200)
|
|
q.items.add(addon_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['addons'] = [
|
|
{
|
|
'item': addon_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 4
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp1a = cp1.addons.get()
|
|
assert cp1a.pk == resp.data['results'][0]['data']['addons'][0]['id']
|
|
assert cp1a.item == addon_item
|
|
assert not cp1a.is_bundled
|
|
assert cp1a.attendee_name == "Peter's friend"
|
|
assert cp1a.cart_id == cp1.cart_id
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_addon_partially_available(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
addon_cat = event.categories.create(name='Addons')
|
|
addon_item = event.items.create(name='Workshop', default_price=2, category=addon_cat)
|
|
item.addons.create(addon_category=addon_cat)
|
|
q = event.quotas.create(name="Addon Quota", size=1)
|
|
q.items.add(addon_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['addons'] = [
|
|
{
|
|
'item': addon_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 2
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp1a = cp1.addons.get()
|
|
assert cp1a.item == addon_item
|
|
assert not cp1a.is_bundled
|
|
assert cp1a.attendee_name == "Peter's friend"
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_bundled(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
bundled_item = event.items.create(name='Workshop', default_price=2)
|
|
item.bundles.create(bundled_item=bundled_item)
|
|
q = event.quotas.create(name="Addon Quota", size=200)
|
|
q.items.add(bundled_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['bundled'] = [
|
|
{
|
|
'item': bundled_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 4
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp1a = cp1.addons.get()
|
|
assert cp1a.pk == resp.data['results'][0]['data']['bundled'][0]['id']
|
|
assert cp1a.item == bundled_item
|
|
assert cp1a.cart_id == cp1.cart_id
|
|
assert cp1a.is_bundled
|
|
assert cp1a.attendee_name == "Peter's friend"
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_bundled_partially_available(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
bundled_item = event.items.create(name='Workshop', default_price=2)
|
|
item.bundles.create(bundled_item=bundled_item)
|
|
q = event.quotas.create(name="Addon Quota", size=1)
|
|
q.items.add(bundled_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['bundled'] = [
|
|
{
|
|
'item': bundled_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res,
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert len(resp.data['results']) == 2
|
|
assert resp.data['results'][0]['success']
|
|
assert not resp.data['results'][1]['success']
|
|
|
|
with scopes_disabled():
|
|
assert CartPosition.objects.count() == 2
|
|
cp1 = CartPosition.objects.get(pk=resp.data['results'][0]['data']['id'])
|
|
cp1a = cp1.addons.get()
|
|
assert cp1a.item == bundled_item
|
|
assert cp1a.is_bundled
|
|
assert cp1a.attendee_name == "Peter's friend"
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_bundled_without_configuration(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
bundled_item = event.items.create(name='Workshop', default_price=2)
|
|
q = event.quotas.create(name="Addon Quota", size=1)
|
|
q.items.add(bundled_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['bundled'] = [
|
|
{
|
|
'item': bundled_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert resp.data == {
|
|
'results': [
|
|
{
|
|
'data': None,
|
|
'success': False,
|
|
'errors': {
|
|
'bundled': ['The product "Workshop" can not be used as an bundled product for "Budget Ticket".']
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_with_addon_without_configuration(token_client, organizer, event, item, quota):
|
|
with scopes_disabled():
|
|
bundled_item = event.items.create(name='Workshop', default_price=2)
|
|
q = event.quotas.create(name="Addon Quota", size=1)
|
|
q.items.add(bundled_item)
|
|
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['addons'] = [
|
|
{
|
|
'item': bundled_item.pk,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert resp.data == {
|
|
'results': [
|
|
{
|
|
'data': None,
|
|
'success': False,
|
|
'errors': {
|
|
'addons': ['The product "Workshop" can not be used as an add-on product for "Budget Ticket".']
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_cartpos_create_bulk_validation_error_in_addon(token_client, organizer, event, item, quota):
|
|
res = copy.deepcopy(CARTPOS_CREATE_PAYLOAD)
|
|
res['item'] = item.pk
|
|
res['expires'] = (now() + datetime.timedelta(days=1)).isoformat()
|
|
res['addons'] = [
|
|
{
|
|
'item': -1,
|
|
'variation': None,
|
|
'price': '1.00',
|
|
'attendee_name_parts': {'full_name': 'Peter\'s friend'},
|
|
'attendee_email': None,
|
|
'subevent': None,
|
|
'includes_tax': True,
|
|
'answers': []
|
|
}
|
|
]
|
|
resp = token_client.post(
|
|
'/api/v1/organizers/{}/events/{}/cartpositions/bulk_create/'.format(
|
|
organizer.slug, event.slug
|
|
), format='json', data=[
|
|
res
|
|
]
|
|
)
|
|
assert resp.status_code == 200
|
|
assert resp.data == {
|
|
'results': [
|
|
{
|
|
'data': None,
|
|
'success': False,
|
|
'errors': {
|
|
'addons': [{'item': ['Invalid pk "-1" - object does not exist.']}]
|
|
}
|
|
}
|
|
]
|
|
}
|