2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Ci::RunnersFinder do
|
|
|
|
context 'admin' do
|
|
|
|
let_it_be(:admin) { create(:user, :admin) }
|
|
|
|
|
|
|
|
describe '#execute' do
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'with 2 runners' do
|
|
|
|
let_it_be(:runner1) { create(:ci_runner, active: true) }
|
|
|
|
let_it_be(:runner2) { create(:ci_runner, active: false) }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
context 'with empty params' do
|
|
|
|
it 'returns all runners' do
|
|
|
|
expect(Ci::Runner).to receive(:with_tags).and_call_original
|
|
|
|
expect(described_class.new(current_user: admin, params: {}).execute).to match_array [runner1, runner2]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with preload param set to :tag_name true' do
|
|
|
|
it 'requests tags' do
|
|
|
|
expect(Ci::Runner).to receive(:with_tags).and_call_original
|
|
|
|
expect(described_class.new(current_user: admin, params: { preload: { tag_name: true } }).execute).to match_array [runner1, runner2]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with preload param set to :tag_name false' do
|
|
|
|
it 'does not request tags' do
|
|
|
|
expect(Ci::Runner).not_to receive(:with_tags)
|
|
|
|
expect(described_class.new(current_user: admin, params: { preload: { tag_name: false } }).execute).to match_array [runner1, runner2]
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'filtering' do
|
|
|
|
context 'by search term' do
|
|
|
|
it 'calls Ci::Runner.search' do
|
|
|
|
expect(Ci::Runner).to receive(:search).with('term').and_call_original
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
described_class.new(current_user: admin, params: { search: 'term' }).execute
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by status' do
|
|
|
|
Ci::Runner::AVAILABLE_STATUSES.each do |status|
|
|
|
|
it "calls the corresponding :#{status} scope on Ci::Runner" do
|
|
|
|
expect(Ci::Runner).to receive(status.to_sym).and_call_original
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
described_class.new(current_user: admin, params: { status_status: status }).execute
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by runner type' do
|
|
|
|
it 'calls the corresponding scope on Ci::Runner' do
|
|
|
|
expect(Ci::Runner).to receive(:project_type).and_call_original
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
described_class.new(current_user: admin, params: { type_type: 'project_type' }).execute
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by tag_name' do
|
|
|
|
it 'calls the corresponding scope on Ci::Runner' do
|
|
|
|
expect(Ci::Runner).to receive(:tagged_with).with(%w[tag1 tag2]).and_call_original
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
described_class.new(current_user: admin, params: { tag_name: %w[tag1 tag2] }).execute
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'sorting' do
|
2021-09-04 01:27:46 +05:30
|
|
|
let_it_be(:runner1) { create :ci_runner, created_at: '2018-07-12 07:00', contacted_at: 1.minute.ago }
|
|
|
|
let_it_be(:runner2) { create :ci_runner, created_at: '2018-07-12 08:00', contacted_at: 3.minutes.ago }
|
|
|
|
let_it_be(:runner3) { create :ci_runner, created_at: '2018-07-12 09:00', contacted_at: 2.minutes.ago }
|
|
|
|
|
|
|
|
subject do
|
|
|
|
described_class.new(current_user: admin, params: params).execute
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'sorts by created_at descending' do
|
|
|
|
it 'sorts by created_at descending' do
|
|
|
|
is_expected.to eq [runner3, runner2, runner1]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
context 'without sort param' do
|
2021-09-04 01:27:46 +05:30
|
|
|
let(:params) { {} }
|
|
|
|
|
|
|
|
it_behaves_like 'sorts by created_at descending'
|
|
|
|
end
|
|
|
|
|
|
|
|
%w(created_date created_at_desc).each do |sort|
|
|
|
|
context "with sort param equal to #{sort}" do
|
|
|
|
let(:params) { { sort: sort } }
|
|
|
|
|
|
|
|
it_behaves_like 'sorts by created_at descending'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with sort param equal to created_at_asc' do
|
|
|
|
let(:params) { { sort: 'created_at_asc' } }
|
|
|
|
|
|
|
|
it 'sorts by created_at ascending' do
|
|
|
|
is_expected.to eq [runner1, runner2, runner3]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with sort param equal to contacted_asc' do
|
|
|
|
let(:params) { { sort: 'contacted_asc' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
it 'sorts by contacted_at ascending' do
|
|
|
|
is_expected.to eq [runner2, runner3, runner1]
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
context 'with sort param equal to contacted_desc' do
|
|
|
|
let(:params) { { sort: 'contacted_desc' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
it 'sorts by contacted_at descending' do
|
|
|
|
is_expected.to eq [runner1, runner3, runner2]
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by non admin user' do
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'returns no runners' do
|
|
|
|
user = create :user
|
|
|
|
create :ci_runner, active: true
|
|
|
|
create :ci_runner, active: false
|
|
|
|
|
|
|
|
expect(described_class.new(current_user: user, params: {}).execute).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'when user is nil' do
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'returns no runners' do
|
|
|
|
user = nil
|
|
|
|
create :ci_runner, active: true
|
|
|
|
create :ci_runner, active: false
|
|
|
|
|
|
|
|
expect(described_class.new(current_user: user, params: {}).execute).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'group' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
let_it_be(:sub_group_1) { create(:group, parent: group) }
|
|
|
|
let_it_be(:sub_group_2) { create(:group, parent: group) }
|
|
|
|
let_it_be(:sub_group_3) { create(:group, parent: sub_group_1) }
|
|
|
|
let_it_be(:sub_group_4) { create(:group, parent: sub_group_3) }
|
|
|
|
let_it_be(:project) { create(:project, group: group) }
|
|
|
|
let_it_be(:project_2) { create(:project, group: group) }
|
|
|
|
let_it_be(:project_3) { create(:project, group: sub_group_1) }
|
|
|
|
let_it_be(:project_4) { create(:project, group: sub_group_2) }
|
|
|
|
let_it_be(:project_5) { create(:project, group: sub_group_3) }
|
|
|
|
let_it_be(:project_6) { create(:project, group: sub_group_4) }
|
|
|
|
let_it_be(:runner_group) { create(:ci_runner, :group, contacted_at: 12.minutes.ago) }
|
|
|
|
let_it_be(:runner_sub_group_1) { create(:ci_runner, :group, active: false, contacted_at: 11.minutes.ago) }
|
|
|
|
let_it_be(:runner_sub_group_2) { create(:ci_runner, :group, contacted_at: 10.minutes.ago) }
|
|
|
|
let_it_be(:runner_sub_group_3) { create(:ci_runner, :group, contacted_at: 9.minutes.ago) }
|
|
|
|
let_it_be(:runner_sub_group_4) { create(:ci_runner, :group, contacted_at: 8.minutes.ago) }
|
|
|
|
let_it_be(:runner_project_1) { create(:ci_runner, :project, contacted_at: 7.minutes.ago, projects: [project])}
|
|
|
|
let_it_be(:runner_project_2) { create(:ci_runner, :project, contacted_at: 6.minutes.ago, projects: [project_2])}
|
|
|
|
let_it_be(:runner_project_3) { create(:ci_runner, :project, contacted_at: 5.minutes.ago, description: 'runner_project_search', projects: [project, project_2])}
|
|
|
|
let_it_be(:runner_project_4) { create(:ci_runner, :project, contacted_at: 4.minutes.ago, projects: [project_3])}
|
|
|
|
let_it_be(:runner_project_5) { create(:ci_runner, :project, contacted_at: 3.minutes.ago, tag_list: %w[runner_tag], projects: [project_4])}
|
|
|
|
let_it_be(:runner_project_6) { create(:ci_runner, :project, contacted_at: 2.minutes.ago, projects: [project_5])}
|
|
|
|
let_it_be(:runner_project_7) { create(:ci_runner, :project, contacted_at: 1.minute.ago, projects: [project_6])}
|
|
|
|
|
|
|
|
let(:params) { {} }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.runners << runner_group
|
|
|
|
sub_group_1.runners << runner_sub_group_1
|
|
|
|
sub_group_2.runners << runner_sub_group_2
|
|
|
|
sub_group_3.runners << runner_sub_group_3
|
|
|
|
sub_group_4.runners << runner_sub_group_4
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
subject { described_class.new(current_user: user, group: group, params: params).execute }
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'with user as group owner' do
|
2020-06-23 00:09:42 +05:30
|
|
|
before do
|
|
|
|
group.add_owner(user)
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'passing no params' do
|
|
|
|
it 'returns all descendant runners' do
|
|
|
|
expect(subject).to eq([runner_project_7, runner_project_6, runner_project_5,
|
|
|
|
runner_project_4, runner_project_3, runner_project_2,
|
|
|
|
runner_project_1, runner_sub_group_4, runner_sub_group_3,
|
|
|
|
runner_sub_group_2, runner_sub_group_1, runner_group])
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'with sort param' do
|
|
|
|
let(:params) { { sort: 'contacted_asc' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
it 'sorts by specified attribute' do
|
|
|
|
expect(subject).to eq([runner_group, runner_sub_group_1, runner_sub_group_2,
|
|
|
|
runner_sub_group_3, runner_sub_group_4, runner_project_1,
|
|
|
|
runner_project_2, runner_project_3, runner_project_4,
|
|
|
|
runner_project_5, runner_project_6, runner_project_7])
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'filtering' do
|
|
|
|
context 'by search term' do
|
|
|
|
let(:params) { { search: 'runner_project_search' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
it 'returns correct runner' do
|
|
|
|
expect(subject).to eq([runner_project_3])
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by status' do
|
|
|
|
let(:params) { { status_status: 'paused' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
it 'returns correct runner' do
|
|
|
|
expect(subject).to eq([runner_sub_group_1])
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by tag_name' do
|
|
|
|
let(:params) { { tag_name: %w[runner_tag] } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
it 'returns correct runner' do
|
|
|
|
expect(subject).to eq([runner_project_5])
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'by runner type' do
|
|
|
|
let(:params) { { type_type: 'project_type' } }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
it 'returns correct runners' do
|
|
|
|
expect(subject).to eq([runner_project_7, runner_project_6,
|
|
|
|
runner_project_5, runner_project_4,
|
|
|
|
runner_project_3, runner_project_2, runner_project_1])
|
|
|
|
end
|
|
|
|
end
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'when user is not group owner' do
|
2020-06-23 00:09:42 +05:30
|
|
|
where(:user_permission) do
|
|
|
|
[:maintainer, :developer, :reporter, :guest]
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
before do
|
|
|
|
create(:group_member, user_permission, group: group, user: user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns no runners' do
|
|
|
|
expect(subject).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'when user has no access' do
|
2020-06-23 00:09:42 +05:30
|
|
|
it 'returns no runners' do
|
|
|
|
expect(subject).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'when user is nil' do
|
2020-06-23 00:09:42 +05:30
|
|
|
let_it_be(:user) { nil }
|
|
|
|
|
|
|
|
it 'returns no runners' do
|
|
|
|
expect(subject).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#sort_key' do
|
|
|
|
subject { described_class.new(current_user: user, group: group, params: params).sort_key }
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
context 'without params' do
|
2021-09-04 01:27:46 +05:30
|
|
|
it 'returns created_at_desc' do
|
|
|
|
expect(subject).to eq('created_at_desc')
|
2020-06-23 00:09:42 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with params' do
|
|
|
|
let(:params) { { sort: 'contacted_asc' } }
|
|
|
|
|
|
|
|
it 'returns contacted_asc' do
|
|
|
|
expect(subject).to eq('contacted_asc')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|