summaryrefslogtreecommitdiff
path: root/spec/lib/bulk_imports/pipeline/extracted_data_spec.rb
blob: 25c5178227ae47cd94bccdac77db2dbaf5b2a300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BulkImports::Pipeline::ExtractedData do
  let(:data) { 'data' }
  let(:has_next_page) { true }
  let(:cursor) { 'cursor' }
  let(:page_info) do
    {
      'has_next_page' => has_next_page,
      'end_cursor' => cursor
    }
  end

  subject { described_class.new(data: data, page_info: page_info) }

  describe '#has_next_page?' do
    context 'when next page is present' do
      it 'returns true' do
        expect(subject.has_next_page?).to eq(true)
      end
    end

    context 'when next page is not present' do
      let(:has_next_page) { false }

      it 'returns false' do
        expect(subject.has_next_page?).to eq(false)
      end
    end
  end

  describe '#next_page' do
    it 'returns next page cursor information' do
      expect(subject.next_page).to eq(cursor)
    end
  end

  describe '#each' do
    context 'when block is present' do
      it 'yields each data item' do
        expect { |b| subject.each(&b) }.to yield_control
      end
    end

    context 'when block is not present' do
      it 'returns enumerator' do
        expect(subject.each).to be_instance_of(Enumerator)
      end
    end
  end
end