# # This file is part of pretix (Community Edition). # # Copyright (C) 2014-2020 Raphael Michel and contributors # Copyright (C) 2020-today pretix 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 . # # 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 # . # import json from datetime import timedelta from decimal import Decimal import pytest from django.utils.timezone import now from django_scopes import scope from pretix.base.models import ( Event, Order, OrderPayment, OrderRefund, Organizer, Team, User, ) @pytest.fixture def env(): o = Organizer.objects.create(name='Dummy', slug='dummy', plugins='pretix.plugins.banktransfer') event = Event.objects.create( organizer=o, name='Dummy', slug='dummy', date_from=now(), plugins='pretix.plugins.banktransfer,pretix.plugins.paypal' ) user = User.objects.create_user('dummy@dummy.dummy', 'dummy') t = Team.objects.create(organizer=event.organizer, all_event_permissions=True) t.members.add(user) t.limit_events.add(event) order = Order.objects.create( code='1Z3AS', event=event, email='admin@localhost', status=Order.STATUS_PAID, datetime=now(), expires=now() + timedelta(days=10), sales_channel=o.sales_channels.get(identifier="web"), total=23 ) payment = OrderPayment.objects.create( order=order, amount=Decimal("23"), provider='banktransfer', state=OrderPayment.PAYMENT_STATE_CONFIRMED, info=json.dumps({ 'payer': "Abc Def", 'iban': "DE27520521540534534466", 'bic': "HELADEF1MEG", }) ) return event, user, payment @pytest.mark.django_db def test_perform_refund(client, env): event, user, payment = env client.login(email='dummy@dummy.dummy', password='dummy') assert not OrderRefund.objects.exists() url = "/control/event/dummy/dummy/orders/1Z3AS/refund" r = client.post(url, { f"refund-{payment.id}": "23.00", "start-mode": "full", "last_known_refund_id": 0, "perform": True, }) assert r.status_code == 302 with scope(organizer=event.organizer): assert OrderRefund.objects.exists() refund = OrderRefund.objects.first() assert refund.payment == payment assert refund.info_data == { 'payer': "Abc Def", 'iban': "DE27520521540534534466", 'bic': "HELADEF1MEG", } @pytest.mark.django_db def test_cannot_perform_refund_with_invalid_iban(client, env): event, user, payment = env payment.info_data = { 'payer': "Abc Def", 'iban': "DE27520521540534534467", # invalid IBAN 'bic': "HELADEF1MEG", } payment.save() assert not payment.payment_provider.payment_refund_supported(payment) client.login(email='dummy@dummy.dummy', password='dummy') url = "/control/event/dummy/dummy/orders/1Z3AS/refund" r = client.post(url, { f"refund-{payment.id}": "23.00", "start-mode": "full", "last_known_refund_id": 0, "perform": True, }) assert r.status_code == 200 # no successfull POST with scope(organizer=event.organizer): assert not OrderRefund.objects.exists() @pytest.mark.django_db def test_can_perform_refund_without_valid_bic(client, env): event, user, payment = env payment.info_data = { 'payer': "Abc Def", 'iban': "DE27520521540534534466", 'bic': "TROLOLOL", } payment.save() assert payment.payment_provider.payment_refund_supported(payment)