Sha256: dc041beacd03646d8adbb5ca4710627e824a8db3951cc316ce9edc76237997b7

Contents?: true

Size: 1.76 KB

Versions: 10

Compression:

Stored size: 1.76 KB

Contents

describe Onfido::Check do
  subject(:check) { described_class.new }
  let(:applicant_id) { '61f659cb-c90b-4067-808a-6136b5c01351' }

  describe '#create' do
    let(:params) { { type: 'express', reports: [{ name: 'identity' }] } }

    it 'creates a new check for an applicant' do
      response = check.create(applicant_id, params)
      expect(response['id']).not_to be_nil
    end
  end

  describe '#find' do
    let(:check_id) { '8546921-123123-123123' }

    it 'returns an existing check for the applicant' do
      response = check.find(applicant_id, check_id)
      expect(response['id']).to eq(check_id)
    end

    it "returns unexpanded reports" do
      response = check.find(applicant_id, check_id)
      expect(response['reports'].first).to be_a(String)
    end

    it 'allows you to expand the reports' do
      response = check.find(applicant_id, check_id, expand: "reports")
      expect(response['reports'].first).to be_a(Hash)
    end
  end

  describe '#all' do
    let(:check_id) { '8546921-123123-123123' }

    context 'with the default page and per page params' do
      it 'returns all existing checks for the applicant' do
        response = check.all(applicant_id)
        expect(response['checks'].size).to eq(1)
      end
    end

    it "returns unexpanded reports" do
      response = check.all(applicant_id)
      expect(response['checks'].first['reports'].first).to be_a(String)
    end

    it 'allows you to expand the reports' do
      response = check.all(applicant_id, expand: "reports")
      expect(response['checks'].first['reports'].first).to be_a(Hash)
    end
  end

  describe "#resume" do
    let(:check_id) { '8546921-123123-123123' }

    it 'returns success response' do
      expect { check.resume(check_id) }.not_to raise_error
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
onfido-0.14.0 spec/integrations/check_spec.rb
onfido-0.13.0 spec/integrations/check_spec.rb
onfido-0.12.0 spec/integrations/check_spec.rb
onfido-0.11.0 spec/integrations/check_spec.rb
onfido-0.10.0 spec/integrations/check_spec.rb
onfido-0.9.0 spec/integrations/check_spec.rb
onfido-0.8.4 spec/integrations/check_spec.rb
onfido-0.8.3 spec/integrations/check_spec.rb
onfido-0.8.2 spec/integrations/check_spec.rb
onfido-0.8.1 spec/integrations/check_spec.rb