summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/pagination/cursor_based_keyset_spec.rb
blob: dc62fcb44780b4d8856753a854fe57a34d037e3a (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Pagination::CursorBasedKeyset do
  subject { described_class }

  describe '.available_for_type?' do
    it 'returns true for Group' do
      expect(subject.available_for_type?(Group.all)).to be_truthy
    end

    it 'returns true for Ci::Build' do
      expect(subject.available_for_type?(Ci::Build.all)).to be_truthy
    end

    it 'return false for other types of relations' do
      expect(subject.available_for_type?(User.all)).to be_falsey
    end
  end

  describe '.enforced_for_type?' do
    subject { described_class.enforced_for_type?(relation) }

    context 'when relation is Group' do
      let(:relation) { Group.all }

      it { is_expected.to be true }
    end

    context 'when relation is AuditEvent' do
      let(:relation) { AuditEvent.all }

      it { is_expected.to be false }
    end

    context 'when relation is Ci::Build' do
      let(:relation) { Ci::Build.all }

      it { is_expected.to be false }
    end
  end

  describe '.available?' do
    let(:request_context) { double('request_context', params: { order_by: order_by, sort: sort }) }
    let(:cursor_based_request_context) { Gitlab::Pagination::Keyset::CursorBasedRequestContext.new(request_context) }

    context 'with order-by name asc' do
      let(:order_by) { :name }
      let(:sort) { :asc }

      it 'returns true for Group' do
        expect(subject.available?(cursor_based_request_context, Group.all)).to be_truthy
      end

      it 'return false for other types of relations' do
        expect(subject.available?(cursor_based_request_context, User.all)).to be_falsey
        expect(subject.available?(cursor_based_request_context, Ci::Build.all)).to be_falsey
      end
    end

    context 'with order-by id desc' do
      let(:order_by) { :id }
      let(:sort) { :desc }

      it 'returns true for Ci::Build' do
        expect(subject.available?(cursor_based_request_context, Ci::Build.all)).to be_truthy
      end

      it 'returns true for AuditEvent' do
        expect(subject.available?(cursor_based_request_context, AuditEvent.all)).to be_truthy
      end
    end

    context 'with other order-by columns' do
      let(:order_by) { :path }
      let(:sort) { :asc }

      it 'returns false for Group' do
        expect(subject.available?(cursor_based_request_context, Group.all)).to be_falsey
      end

      it 'return false for other types of relations' do
        expect(subject.available?(cursor_based_request_context, User.all)).to be_falsey
      end
    end
  end
end