Esempio n. 1
0
        def bpPayRequest(self, *args, **kwargs):
            if raise_zeep_fault:
                raise exceptions.Fault('FAKE ZEEP FAULT')

            if raise_zeep_error:
                raise exceptions.Error('FAKE ZEEP ERROR')
            return returned_token
Esempio n. 2
0
        def SalePaymentRequest(self, *args, **kwargs):
            if raise_zeep_fault:
                raise exceptions.Fault("FAKE ZEEP FAULT")

            if raise_zeep_error:
                raise exceptions.Error("FAKE ZEEP ERROR")
            return Result
Esempio n. 3
0
        def RequestReconciliation(
            merchantConfigurationID, encryptedCredentials, payGateTranID
        ):
            if raise_zeep_error:  # pragma: nocover
                raise exceptions.Error("FAKE ZEEP ERROR")

            return reconcile_result
Esempio n. 4
0
        def RequestVerification(
            merchantConfigurationID, encryptedCredentials, payGateTranID
        ):
            if raise_zeep_error:
                raise exceptions.Error("FAKE ZEEP ERROR")

            return verify_result
Esempio n. 5
0
        def RequestOperation(merchantConfigurationID, encryptedRequest):
            token = returned_token

            if raise_zeep_fault:
                raise exceptions.Fault('FAKE ZEEP FAULT')

            if raise_zeep_error:
                raise exceptions.Error('FAKE ZEEP ERROR')
            return token
Esempio n. 6
0
        def ConfirmPayment(self, *args, **kwargs):
            if raise_zeep_error:
                raise exceptions.Error("FAKE ZEEP ERROR")

            return Result
Esempio n. 7
0
        def KicccPaymentsVerification(self, *args, **kwargs):
            if raise_zeep_error:
                raise exceptions.Error("FAKE ZEEP ERROR")

            return verify_result
Esempio n. 8
0
            def __init__(self, *args, **kwargs):
                if raise_zeep_fault:
                    raise exceptions.Fault("FAKE ZEEP FAULT")

                if raise_zeep_error:
                    raise exceptions.Error("FAKE ZEEP ERROR")
Esempio n. 9
0
        def bpVerifyRequest(self, *args, **kwargs):
            if raise_zeep_error:
                raise exceptions.Error('FAKE ZEEP ERROR')

            return verify_result
Esempio n. 10
0
 def __init__(self, *args, **kwargs):
     if raise_zeep_error:
         raise exceptions.Error('FAKE ZEEP ERROR')