Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reverse_payment #146

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lib/checkout_sdk/payments/base_payments_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ def void_payment(payment_id, void_request = nil, idempotency_key = nil)
void_request,
idempotency_key)
end

# @param [String] payment_id
# @param [Hash, ReverseRequest] reverse_request
# @param [String, nil] idempotency_key
def reverse_payment(payment_id, reverse_request = nil, idempotency_key = nil)
api_client.invoke_post(build_path(PAYMENTS_PATH, payment_id, 'reversals'),
sdk_authorization,
reverse_request,
idempotency_key)
end
end
end
end
14 changes: 14 additions & 0 deletions lib/checkout_sdk/payments/reverse_request.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# frozen_string_literal: true

module CheckoutSdk
module Payments
# @!attribute reference
# @return [String]
# @!attribute metadata
# @return [Hash{String => Object}]
class ReverseRequest
attr_accessor :reference,
:metadata
end
end
end
35 changes: 35 additions & 0 deletions spec/checkout_sdk/payments/reverse_payments_integration_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
RSpec.describe CheckoutSdk::Payments do
include PaymentsHelper

describe '.reverse_payment' do
context 'when attempt payment' do
it 'reverse payment' do
payment_response = make_card_payment

request = CheckoutSdk::Payments::ReverseRequest.new
request.reference = SecureRandom.uuid

response = default_sdk.payments.reverse_payment(payment_response.id, request)
assert_response(response, %w[reference
action_id
_links])
end

it 'reverse payment idempotent' do
payment_response = make_card_payment

request = CheckoutSdk::Payments::ReverseRequest.new

request.reference = SecureRandom.uuid
idempotency_key = new_idempotency_key

proc = lambda { default_sdk.payments.reverse_payment(payment_response.id, request, idempotency_key) }
proc2 = lambda { default_sdk.payments.reverse_payment(payment_response.id, request, idempotency_key) }

reverse_response_1 = retriable(proc)
reverse_response_2 = retriable(proc2)
expect(reverse_response_1.action_id).to eq(reverse_response_2.action_id)
end
end
end
end
Loading