Sha256: 6dffdca27ebd7e55106fa971babe078be1b3bad8bfca59ced222ebfc8270e979
Contents?: true
Size: 1.96 KB
Versions: 37
Compression:
Stored size: 1.96 KB
Contents
describe MangoPay::PayIn::Card::Web, type: :feature do include_context 'payins' def check_type_and_status(payin) expect(payin['Type']).to eq('PAYIN') expect(payin['Nature']).to eq('REGULAR') expect(payin['PaymentType']).to eq('CARD') expect(payin['ExecutionType']).to eq('WEB') # not SUCCEEDED yet: waiting for processing expect(payin['Status']).to eq('CREATED') expect(payin['ResultCode']).to be_nil expect(payin['ResultMessage']).to be_nil expect(payin['ExecutionDate']).to be_nil end describe 'CREATE' do it 'creates a card web payin' do created = new_payin_card_web expect(created['Id']).not_to be_nil check_type_and_status(created) end end describe 'CREATE with PaylineV2' do it 'creates a card web payin with payline v2' do created = new_payin_card_web_payline expect(created['Id']).not_to be_nil expect(created['RedirectURL']).to include('https://www.maysite.com/payline_template/') check_type_and_status(created) end end describe 'EXTENDED' do context 'when resource not exists' do it 'fetches extended information' do expect { MangoPay::PayIn::Card::Web.extended(1000000) }.to \ raise_error(MangoPay::ResponseError) end end end describe 'FETCH' do it 'fetches a payin' do created = new_payin_card_web fetched = MangoPay::PayIn.fetch(created['Id']) expect(fetched['Id']).to eq(created['Id']) expect(fetched['CreationDate']).to eq(created['CreationDate']) expect(fetched['CreditedFunds']).to eq(created['CreditedFunds']) expect(fetched['CreditedWalletId']).to eq(created['CreditedWalletId']) check_type_and_status(created) check_type_and_status(fetched) end end describe 'FETCH Refunds' do it "fetches the pay-in's refunds" do payin = new_payin_card_web refunds = MangoPay::PayIn.refunds(payin['Id']) expect(refunds).to be_an(Array) end end end
Version data entries
37 entries across 37 versions & 1 rubygems