Sha256: 19bc15a9b87f3a444cb0d1e68eb8f803c5c40b2e5b42d3afdfd3ae073b8e2218

Contents?: true

Size: 1.26 KB

Versions: 11

Compression:

Stored size: 1.26 KB

Contents

describe MangoPay::PayIn::DirectDebit::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('DIRECT_DEBIT')
    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 directdebit web payin' do
      created = new_payin_directdebit_web
      expect(created['Id']).not_to be_nil
      check_type_and_status(created)
    end
  end

  describe 'FETCH' do
    it 'fetches a payin' do
      created = new_payin_directdebit_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

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mangopay-3.0.25 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.23 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.21 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.20 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.19 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.18 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.17 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.16 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.15 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.14 spec/mangopay/payin_directdebit_web_spec.rb
mangopay-3.0.13 spec/mangopay/payin_directdebit_web_spec.rb