Includes: - Odoo 19 framework (odoo/) - 27 custom EnCoach addons (new_project/custom_addons/) - encoach_core, encoach_api, encoach_lms_api, encoach_adaptive_api - encoach_exam, encoach_taxonomy, encoach_adaptive, encoach_assignment - encoach_ai, encoach_ai_grading, encoach_ai_generation, encoach_ai_media - encoach_courseware, encoach_communication, encoach_subscription - encoach_notification, encoach_approval, encoach_branding - encoach_classroom, encoach_registration, encoach_stats - encoach_faq, encoach_ticket, encoach_training, encoach_resources - encoach_adaptive_ai, encoach_sis - 21 OpenEduCat Enterprise modules (new_project/enterprise-19/) - 14 OpenEduCat Community modules (new_project/openeducat_erp-19.0/) - Configuration: odoo.conf, requirements.txt, scripts - 200+ REST API endpoints with JWT authentication - SRS and test documentation Made-with: Cursor
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
import base64
|
|
import json
|
|
|
|
from odoo.addons.payment.tests.common import PaymentCommon
|
|
|
|
|
|
class RedsysCommon(PaymentCommon):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
cls.redsys = cls._prepare_provider('redsys', update_values={
|
|
'redsys_merchant_code': '99999999',
|
|
'redsys_merchant_terminal': '777',
|
|
'redsys_secret_key': 'a1b2c3d4e5f6g7h8a1b2c3d4e5f6g7h8',
|
|
})
|
|
cls.provider = cls.redsys
|
|
cls.merchant_parameters = {
|
|
'Ds_Order': 'Test Transaction',
|
|
'Ds_Amount': cls.amount * 100, # In minor units
|
|
'Ds_Currency': 978, # EUR
|
|
'Ds_Card_Brand': '1', # VISA
|
|
'Ds_Response': '0000', # Payment accepted
|
|
}
|
|
cls.encoded_merchant_parameter = base64.b64encode(
|
|
json.dumps(cls.merchant_parameters).encode()
|
|
).decode()
|
|
cls.payment_data = {
|
|
'Ds_MerchantParameters': cls.encoded_merchant_parameter,
|
|
'Ds_Signature': 'upzUj96lLgOEUP5lvaj7lz0Se4MXmc5_GoJ32ACqZ3A=',
|
|
}
|