debian-mirror-gitlab/spec/requests/api/graphql/ci/runners_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

173 lines
5.1 KiB
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Query.runners' do
include GraphqlHelpers
let_it_be(:current_user) { create_default(:user, :admin) }
describe 'Query.runners' do
let_it_be(:project) { create(:project, :repository, :public) }
let_it_be(:instance_runner) { create(:ci_runner, :instance, version: 'abc', revision: '123', description: 'Instance runner', ip_address: '127.0.0.1') }
let_it_be(:project_runner) { create(:ci_runner, :project, active: false, version: 'def', revision: '456', description: 'Project runner', projects: [project], ip_address: '127.0.0.1') }
let(:runners_graphql_data) { graphql_data['runners'] }
let(:params) { {} }
let(:fields) do
<<~QUERY
nodes {
2022-07-23 23:45:48 +05:30
#{all_graphql_fields_for('CiRunner', excluded: %w[ownerProject])}
ownerProject {
id
}
2021-06-08 01:23:25 +05:30
}
QUERY
end
let(:query) do
%(
query {
runners(type:#{runner_type},status:#{status}) {
#{fields}
}
}
)
end
before do
2022-06-21 17:19:12 +05:30
allow(Gitlab::Ci::RunnerUpgradeCheck.instance).to receive(:check_runner_upgrade_status)
2021-06-08 01:23:25 +05:30
post_graphql(query, current_user: current_user)
end
shared_examples 'a working graphql query returning expected runner' do
it_behaves_like 'a working graphql query'
it 'returns expected runner' do
expect(runners_graphql_data['nodes'].map { |n| n['id'] }).to contain_exactly(expected_runner.to_global_id.to_s)
end
end
context 'runner_type is INSTANCE_TYPE and status is ACTIVE' do
let(:runner_type) { 'INSTANCE_TYPE' }
let(:status) { 'ACTIVE' }
let!(:expected_runner) { instance_runner }
it_behaves_like 'a working graphql query returning expected runner'
end
2022-07-16 23:28:13 +05:30
context 'runner_type is PROJECT_TYPE and status is NEVER_CONTACTED' do
2021-06-08 01:23:25 +05:30
let(:runner_type) { 'PROJECT_TYPE' }
2022-07-16 23:28:13 +05:30
let(:status) { 'NEVER_CONTACTED' }
2021-06-08 01:23:25 +05:30
let!(:expected_runner) { project_runner }
it_behaves_like 'a working graphql query returning expected runner'
end
2022-01-26 12:08:38 +05:30
context 'runner_type is PROJECT_TYPE and status is NEVER_CONTACTED' do
let(:runner_type) { 'PROJECT_TYPE' }
let(:status) { 'NEVER_CONTACTED' }
let!(:expected_runner) { project_runner }
it_behaves_like 'a working graphql query returning expected runner'
end
2021-06-08 01:23:25 +05:30
end
describe 'pagination' do
let(:data_path) { [:runners] }
def pagination_query(params)
graphql_query_for(:runners, params, "#{page_info} nodes { id }")
end
def pagination_results_data(runners)
runners.map { |runner| GitlabSchema.parse_gid(runner['id'], expected_type: ::Ci::Runner).model_id.to_i }
end
let_it_be(:runners) do
common_args = {
version: 'abc',
revision: '123',
ip_address: '127.0.0.1'
}
[
create(:ci_runner, :instance, created_at: 4.days.ago, contacted_at: 3.days.ago, **common_args),
create(:ci_runner, :instance, created_at: 30.hours.ago, contacted_at: 1.day.ago, **common_args),
create(:ci_runner, :instance, created_at: 1.day.ago, contacted_at: 1.hour.ago, **common_args),
create(:ci_runner, :instance, created_at: 2.days.ago, contacted_at: 2.days.ago, **common_args),
create(:ci_runner, :instance, created_at: 3.days.ago, contacted_at: 1.second.ago, **common_args)
]
end
context 'when sorted by contacted_at ascending' do
let(:ordered_runners) { runners.sort_by(&:contacted_at) }
it_behaves_like 'sorted paginated query' do
2021-11-18 22:05:49 +05:30
let(:sort_param) { :CONTACTED_ASC }
let(:first_param) { 2 }
let(:all_records) { ordered_runners.map(&:id) }
2021-06-08 01:23:25 +05:30
end
end
context 'when sorted by created_at' do
let(:ordered_runners) { runners.sort_by(&:created_at).reverse }
it_behaves_like 'sorted paginated query' do
2021-11-18 22:05:49 +05:30
let(:sort_param) { :CREATED_DESC }
let(:first_param) { 2 }
let(:all_records) { ordered_runners.map(&:id) }
2021-06-08 01:23:25 +05:30
end
end
end
end
2022-07-23 23:45:48 +05:30
RSpec.describe 'Group.runners' do
include GraphqlHelpers
let_it_be(:group) { create(:group) }
let_it_be(:group_owner) { create_default(:user) }
before do
group.add_owner(group_owner)
end
describe 'edges' do
let_it_be(:runner) do
create(:ci_runner, :group, active: false, version: 'def', revision: '456',
description: 'Project runner', groups: [group], ip_address: '127.0.0.1')
end
let(:query) do
%(
query($path: ID!) {
group(fullPath: $path) {
runners {
edges {
webUrl
editUrl
node { #{all_graphql_fields_for('CiRunner')} }
}
}
}
}
)
end
it 'contains custom edge information' do
r = GitlabSchema.execute(query,
context: { current_user: group_owner },
variables: { path: group.full_path })
edges = graphql_dig_at(r.to_h, :data, :group, :runners, :edges)
expect(edges).to contain_exactly(a_graphql_entity_for(web_url: be_present, edit_url: be_present))
end
end
end