summaryrefslogtreecommitdiff
path: root/spec/finders/admin/runners_finder_spec.rb
blob: 1e9793a5e0ada8a00d689fc7b4d62eec6429236b (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
# frozen_string_literal: true

require 'spec_helper'

describe Admin::RunnersFinder do
  describe '#execute' do
    context 'with empty params' do
      it 'returns all runners' do
        runner1 = create :ci_runner, active: true
        runner2 = create :ci_runner, active: false

        expect(described_class.new(params: {}).execute).to match_array [runner1, runner2]
      end
    end

    context 'filter by search term' do
      it 'calls Ci::Runner.search' do
        expect(Ci::Runner).to receive(:search).with('term').and_call_original

        described_class.new(params: { search: 'term' }).execute
      end
    end

    context 'filter by status' do
      it 'calls the corresponding scope on Ci::Runner' do
        expect(Ci::Runner).to receive(:paused).and_call_original

        described_class.new(params: { status_status: 'paused' }).execute
      end
    end

    context 'sort' do
      context 'without sort param' do
        it 'sorts by created_at' do
          runner1 = create :ci_runner, created_at: '2018-07-12 07:00'
          runner2 = create :ci_runner, created_at: '2018-07-12 08:00'
          runner3 = create :ci_runner, created_at: '2018-07-12 09:00'

          expect(described_class.new(params: {}).execute).to eq [runner3, runner2, runner1]
        end
      end

      context 'with sort param' do
        it 'sorts by specified attribute' do
          runner1 = create :ci_runner, contacted_at: 1.minute.ago
          runner2 = create :ci_runner, contacted_at: 3.minutes.ago
          runner3 = create :ci_runner, contacted_at: 2.minutes.ago

          expect(described_class.new(params: { sort: 'contacted_asc' }).execute).to eq [runner2, runner3, runner1]
        end
      end
    end

    context 'paginate' do
      it 'returns the runners for the specified page' do
        stub_const('Admin::RunnersFinder::NUMBER_OF_RUNNERS_PER_PAGE', 1)
        runner1 = create :ci_runner, created_at: '2018-07-12 07:00'
        runner2 = create :ci_runner, created_at: '2018-07-12 08:00'

        expect(described_class.new(params: { page: 1 }).execute).to eq [runner2]
        expect(described_class.new(params: { page: 2 }).execute).to eq [runner1]
      end
    end
  end
end