# frozen_string_literal: true require 'spec_helper' RSpec.describe Gitlab::Pagination::Keyset::Pager do let(:relation) { Project.all.order(id: :asc) } let(:request) { double('request', page: page, apply_headers: nil) } let(:page) { Gitlab::Pagination::Keyset::Page.new(order_by: { id: :asc }, per_page: 3) } let(:next_page) { double('next page') } before_all do create_list(:project, 7) end describe '#paginate' do subject { described_class.new(request).paginate(relation) } it 'does not execute a query' do expect do subject end.not_to exceed_query_limit(0) end it 'applies a LIMIT' do expect(subject.limit_value).to eq(page.per_page) end it 'returns the limited relation' do expect(subject).to eq(relation.limit(page.per_page)) end context 'validating the order clause' do let(:page) { Gitlab::Pagination::Keyset::Page.new(order_by: { created_at: :asc }, per_page: 3) } it 'raises an error if has a different order clause than the page' do expect { subject }.to raise_error(ArgumentError, /order_by does not match/) end end end describe '#finalize' do let(:records) { relation.limit(page.per_page).load } subject { described_class.new(request).finalize(records) } it 'passes information about next page to request' do lower_bounds = records.last.slice(:id) expect(page).to receive(:next).with(lower_bounds).and_return(next_page) expect(request).to receive(:apply_headers).with(next_page) subject end context 'when retrieving the last page' do let(:relation) { Project.where('id > ?', Project.maximum(:id) - page.per_page).order(id: :asc) } it 'indicates there is another (likely empty) page' do lower_bounds = records.last.slice(:id) expect(page).to receive(:next).with(lower_bounds).and_return(next_page) expect(request).to receive(:apply_headers).with(next_page) subject end end context 'when retrieving an empty page' do let(:relation) { Project.where('id > ?', Project.maximum(:id) + 1).order(id: :asc) } it 'indicates this is the last page' do expect(request).not_to receive(:apply_headers) subject end end end end