debian-mirror-gitlab/spec/frontend/fixtures/runner.rb

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

199 lines
5.8 KiB
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Runner (JavaScript fixtures)' do
include AdminModeHelper
include ApiHelpers
include JavaScriptFixturesHelpers
include GraphqlHelpers
let_it_be(:admin) { create(:admin) }
let_it_be(:group) { create(:group) }
let_it_be(:project) { create(:project, :repository, :public) }
2022-04-04 11:22:00 +05:30
let_it_be(:project_2) { create(:project, :repository, :public) }
2021-09-04 01:27:46 +05:30
2022-08-27 11:52:29 +05:30
let_it_be(:runner) { create(:ci_runner, :instance, description: 'My Runner', version: '1.0.0') }
let_it_be(:group_runner) { create(:ci_runner, :group, groups: [group], version: '2.0.0') }
let_it_be(:group_runner_2) { create(:ci_runner, :group, groups: [group], version: '2.0.0') }
let_it_be(:project_runner) { create(:ci_runner, :project, projects: [project, project_2], version: '2.0.0') }
let_it_be(:build) { create(:ci_build, runner: runner) }
2021-09-04 01:27:46 +05:30
2023-01-13 00:05:48 +05:30
query_path = 'ci/runner/graphql/'
fixtures_path = 'graphql/ci/runner/'
2021-09-04 01:27:46 +05:30
after(:all) do
remove_repository(project)
end
2022-07-23 23:45:48 +05:30
before do
2022-08-27 11:52:29 +05:30
allow_next_instance_of(::Gitlab::Ci::RunnerUpgradeCheck) do |instance|
allow(instance).to receive(:check_runner_upgrade_suggestion)
2023-04-23 21:23:45 +05:30
.and_return([nil, :unavailable])
2022-08-27 11:52:29 +05:30
end
2022-07-23 23:45:48 +05:30
end
2022-08-27 11:52:29 +05:30
describe 'as admin', GraphQL::Query do
2021-11-11 11:23:49 +05:30
before do
sign_in(admin)
enable_admin_mode!(admin)
end
2022-08-27 11:52:29 +05:30
describe 'all_runners.query.graphql', type: :request do
2022-08-13 15:12:31 +05:30
all_runners_query = 'list/all_runners.query.graphql'
2021-09-04 01:27:46 +05:30
2022-03-02 08:16:31 +05:30
let_it_be(:query) do
2022-08-13 15:12:31 +05:30
get_graphql_query_as_string("#{query_path}#{all_runners_query}")
2022-03-02 08:16:31 +05:30
end
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
it "#{fixtures_path}#{all_runners_query}.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: admin, variables: {})
2021-09-04 01:27:46 +05:30
2022-03-02 08:16:31 +05:30
expect_graphql_errors_to_be_empty
end
2021-09-04 01:27:46 +05:30
2022-08-13 15:12:31 +05:30
it "#{fixtures_path}#{all_runners_query}.paginated.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: admin, variables: { first: 2 })
expect_graphql_errors_to_be_empty
end
2021-09-04 01:27:46 +05:30
end
2022-08-27 11:52:29 +05:30
describe 'all_runners_count.query.graphql', type: :request do
2022-08-13 15:12:31 +05:30
all_runners_count_query = 'list/all_runners_count.query.graphql'
2021-09-04 01:27:46 +05:30
2022-03-02 08:16:31 +05:30
let_it_be(:query) do
2022-08-13 15:12:31 +05:30
get_graphql_query_as_string("#{query_path}#{all_runners_count_query}")
2022-03-02 08:16:31 +05:30
end
2022-08-13 15:12:31 +05:30
it "#{fixtures_path}#{all_runners_count_query}.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: admin, variables: {})
2021-11-11 11:23:49 +05:30
2022-03-02 08:16:31 +05:30
expect_graphql_errors_to_be_empty
end
2021-09-04 01:27:46 +05:30
end
2022-08-27 11:52:29 +05:30
describe 'runner.query.graphql', type: :request do
2022-07-16 23:28:13 +05:30
runner_query = 'show/runner.query.graphql'
2021-09-04 01:27:46 +05:30
2022-03-02 08:16:31 +05:30
let_it_be(:query) do
2022-05-07 20:08:51 +05:30
get_graphql_query_as_string("#{query_path}#{runner_query}")
2022-03-02 08:16:31 +05:30
end
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{runner_query}.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: admin, variables: {
2022-08-27 11:52:29 +05:30
id: runner.to_global_id.to_s
2022-03-02 08:16:31 +05:30
})
expect_graphql_errors_to_be_empty
end
2022-04-04 11:22:00 +05:30
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{runner_query}.with_group.json" do
2022-04-04 11:22:00 +05:30
post_graphql(query, current_user: admin, variables: {
id: group_runner.to_global_id.to_s
})
expect_graphql_errors_to_be_empty
end
end
2022-08-27 11:52:29 +05:30
describe 'runner_projects.query.graphql', type: :request do
2022-07-16 23:28:13 +05:30
runner_projects_query = 'show/runner_projects.query.graphql'
2022-04-04 11:22:00 +05:30
let_it_be(:query) do
2022-05-07 20:08:51 +05:30
get_graphql_query_as_string("#{query_path}#{runner_projects_query}")
2022-04-04 11:22:00 +05:30
end
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{runner_projects_query}.json" do
2022-04-04 11:22:00 +05:30
post_graphql(query, current_user: admin, variables: {
id: project_runner.to_global_id.to_s
})
expect_graphql_errors_to_be_empty
end
end
2022-08-27 11:52:29 +05:30
describe 'runner_jobs.query.graphql', type: :request do
2022-07-16 23:28:13 +05:30
runner_jobs_query = 'show/runner_jobs.query.graphql'
let_it_be(:query) do
get_graphql_query_as_string("#{query_path}#{runner_jobs_query}")
end
it "#{fixtures_path}#{runner_jobs_query}.json" do
post_graphql(query, current_user: admin, variables: {
2022-08-27 11:52:29 +05:30
id: runner.to_global_id.to_s
2022-07-16 23:28:13 +05:30
})
expect_graphql_errors_to_be_empty
end
end
2022-08-27 11:52:29 +05:30
describe 'runner_form.query.graphql', type: :request do
2022-07-16 23:28:13 +05:30
runner_jobs_query = 'edit/runner_form.query.graphql'
2022-04-04 11:22:00 +05:30
let_it_be(:query) do
2022-05-07 20:08:51 +05:30
get_graphql_query_as_string("#{query_path}#{runner_jobs_query}")
2022-04-04 11:22:00 +05:30
end
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{runner_jobs_query}.json" do
2022-04-04 11:22:00 +05:30
post_graphql(query, current_user: admin, variables: {
2022-08-27 11:52:29 +05:30
id: runner.to_global_id.to_s
2022-04-04 11:22:00 +05:30
})
expect_graphql_errors_to_be_empty
end
2021-09-04 01:27:46 +05:30
end
end
2021-11-11 11:23:49 +05:30
2022-08-27 11:52:29 +05:30
describe 'as group owner', GraphQL::Query do
2021-11-11 11:23:49 +05:30
let_it_be(:group_owner) { create(:user) }
before do
group.add_owner(group_owner)
end
2022-08-27 11:52:29 +05:30
describe 'group_runners.query.graphql', type: :request do
2022-05-07 20:08:51 +05:30
group_runners_query = 'list/group_runners.query.graphql'
2022-03-02 08:16:31 +05:30
let_it_be(:query) do
2022-05-07 20:08:51 +05:30
get_graphql_query_as_string("#{query_path}#{group_runners_query}")
2022-03-02 08:16:31 +05:30
end
2021-11-11 11:23:49 +05:30
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{group_runners_query}.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: group_owner, variables: {
groupFullPath: group.full_path
})
2021-11-11 11:23:49 +05:30
2022-03-02 08:16:31 +05:30
expect_graphql_errors_to_be_empty
end
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{group_runners_query}.paginated.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: group_owner, variables: {
groupFullPath: group.full_path,
first: 1
})
expect_graphql_errors_to_be_empty
end
2021-11-11 11:23:49 +05:30
end
2022-08-27 11:52:29 +05:30
describe 'group_runners_count.query.graphql', type: :request do
2022-05-07 20:08:51 +05:30
group_runners_count_query = 'list/group_runners_count.query.graphql'
2022-03-02 08:16:31 +05:30
let_it_be(:query) do
2022-05-07 20:08:51 +05:30
get_graphql_query_as_string("#{query_path}#{group_runners_count_query}")
2022-03-02 08:16:31 +05:30
end
2022-05-07 20:08:51 +05:30
it "#{fixtures_path}#{group_runners_count_query}.json" do
2022-03-02 08:16:31 +05:30
post_graphql(query, current_user: group_owner, variables: {
groupFullPath: group.full_path
})
2021-11-11 11:23:49 +05:30
2022-03-02 08:16:31 +05:30
expect_graphql_errors_to_be_empty
end
2021-11-11 11:23:49 +05:30
end
end
2021-09-04 01:27:46 +05:30
end