Odoo18-Base/addons/payment_asiapay/tests/common.py
2025-03-10 11:12:23 +07:00

36 lines
1.2 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.addons.payment.tests.common import PaymentCommon
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
class AsiaPayCommon(AccountTestInvoicingCommon, PaymentCommon):
@classmethod
def setUpClass(cls, chart_template_ref=None):
super().setUpClass(chart_template_ref=chart_template_ref)
cls.asiapay = cls._prepare_provider('asiapay', update_values={
'asiapay_merchant_id': '123456789',
'asiapay_currency_id': cls.currency_euro,
'asiapay_secure_hash_secret': 'coincoin_motherducker',
'asiapay_secure_hash_function': 'sha1',
})
cls.provider = cls.asiapay
cls.redirect_notification_data = {
'Ref': cls.reference,
}
cls.webhook_notification_data = {
'src': 'dummy',
'prc': 'dummy',
'successcode': '0',
'Ref': cls.reference,
'PayRef': 'dummy',
'Cur': cls.currency.name,
'Amt': cls.amount,
'payerAuth': 'dummy',
'secureHash': '3e5bf55d9a23969130a6686db7aa4f0230956d0a',
}