mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
155 lines
5.4 KiB
Python
155 lines
5.4 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/>.
|
|
#
|
|
from datetime import timedelta
|
|
from decimal import Decimal
|
|
|
|
import pytest
|
|
from django.core import mail as djmail
|
|
from django.db import transaction
|
|
from django.utils.timezone import now
|
|
from django_scopes import scope
|
|
|
|
from pretix.base.models import (
|
|
Event, Item, Order, OrderPosition, Organizer, User,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def event():
|
|
o = Organizer.objects.create(name='Dummy', slug='dummy')
|
|
event = Event.objects.create(
|
|
organizer=o, name='Dummy', slug='dummy',
|
|
date_from=now()
|
|
)
|
|
with scope(organizer=o):
|
|
yield event
|
|
|
|
|
|
@pytest.fixture
|
|
def order(event):
|
|
o = Order.objects.create(
|
|
code='FOO', event=event, email='dummy@dummy.test',
|
|
status=Order.STATUS_PENDING, locale='en',
|
|
datetime=now(), expires=now() + timedelta(days=10),
|
|
sales_channel=event.organizer.sales_channels.get(identifier="web"),
|
|
total=Decimal('46.00'),
|
|
)
|
|
tr19 = event.tax_rules.create(rate=Decimal('19.00'))
|
|
ticket = Item.objects.create(event=event, name='Early-bird ticket', tax_rule=tr19,
|
|
default_price=Decimal('23.00'), admission=True)
|
|
OrderPosition.objects.create(
|
|
order=o, item=ticket, variation=None,
|
|
price=Decimal("23.00"), attendee_name_parts={'full_name': "Peter"}, positionid=1
|
|
)
|
|
return o
|
|
|
|
|
|
@pytest.fixture
|
|
def team(event):
|
|
return event.organizer.teams.create(all_events=True, can_view_orders=True)
|
|
|
|
|
|
@pytest.fixture
|
|
def user(team):
|
|
user = User.objects.create_user('dummy@dummy.dummy', 'dummy')
|
|
team.members.add(user)
|
|
return user
|
|
|
|
|
|
@pytest.fixture
|
|
def monkeypatch_on_commit(monkeypatch):
|
|
monkeypatch.setattr("django.db.transaction.on_commit", lambda t: t())
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_trigger_event_specific(event, order, user, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
user.notification_settings.create(
|
|
method='mail', event=event, action_type='pretix.event.order.paid', enabled=True
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.paid', {})
|
|
assert len(djmail.outbox) == 1
|
|
assert djmail.outbox[0].subject.endswith("DUMMY: Order FOO has been marked as paid.")
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_trigger_global(event, order, user, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
user.notification_settings.create(
|
|
method='mail', event=None, action_type='pretix.event.order.paid', enabled=True
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.paid', {})
|
|
assert len(djmail.outbox) == 1
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_trigger_global_wildcard(event, order, user, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
user.notification_settings.create(
|
|
method='mail', event=None, action_type='pretix.event.order.changed.*', enabled=True
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.changed.item', {})
|
|
assert len(djmail.outbox) == 1
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_enabled_global_ignored_specific(event, order, user, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
user.notification_settings.create(
|
|
method='mail', event=None, action_type='pretix.event.order.paid', enabled=True
|
|
)
|
|
user.notification_settings.create(
|
|
method='mail', event=event, action_type='pretix.event.order.paid', enabled=False
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.paid', {})
|
|
assert len(djmail.outbox) == 0
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_ignore_same_user(event, order, user, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
user.notification_settings.create(
|
|
method='mail', event=event, action_type='pretix.event.order.paid', enabled=True
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.paid', {}, user=user)
|
|
assert len(djmail.outbox) == 0
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_notification_ignore_insufficient_permissions(event, order, user, team, monkeypatch_on_commit):
|
|
djmail.outbox = []
|
|
team.can_view_orders = False
|
|
team.save()
|
|
user.notification_settings.create(
|
|
method='mail', event=event, action_type='pretix.event.order.paid', enabled=True
|
|
)
|
|
with transaction.atomic():
|
|
order.log_action('pretix.event.order.paid', {})
|
|
assert len(djmail.outbox) == 0
|
|
|
|
# TODO: Test email content
|