debian-mirror-gitlab/spec/graphql/resolvers/concerns/resolves_pipelines_spec.rb

90 lines
2.8 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe ResolvesPipelines do
2018-11-08 19:23:39 +05:30
include GraphqlHelpers
subject(:resolver) do
Class.new(Resolvers::BaseResolver) do
include ResolvesPipelines
def resolve(**args)
resolve_pipelines(object, args)
end
end
end
let(:current_user) { create(:user) }
2020-01-01 13:55:28 +05:30
2020-04-08 14:13:33 +05:30
let_it_be(:project) { create(:project, :private) }
let_it_be(:pipeline) { create(:ci_pipeline, project: project) }
let_it_be(:failed_pipeline) { create(:ci_pipeline, :failed, project: project) }
2021-12-11 22:18:48 +05:30
let_it_be(:success_pipeline) { create(:ci_pipeline, :success, project: project) }
2020-04-08 14:13:33 +05:30
let_it_be(:ref_pipeline) { create(:ci_pipeline, project: project, ref: 'awesome-feature') }
let_it_be(:sha_pipeline) { create(:ci_pipeline, project: project, sha: 'deadbeef') }
2021-12-11 22:18:48 +05:30
let_it_be(:all_pipelines) do
[
pipeline,
failed_pipeline,
success_pipeline,
ref_pipeline,
sha_pipeline
]
end
2018-11-08 19:23:39 +05:30
before do
project.add_developer(current_user)
end
2021-12-11 22:18:48 +05:30
it { is_expected.to have_graphql_arguments(:status, :scope, :ref, :sha, :source) }
2018-11-08 19:23:39 +05:30
it 'finds all pipelines' do
2021-12-11 22:18:48 +05:30
expect(resolve_pipelines).to contain_exactly(*all_pipelines)
2018-11-08 19:23:39 +05:30
end
it 'allows filtering by status' do
expect(resolve_pipelines(status: 'failed')).to contain_exactly(failed_pipeline)
end
2021-12-11 22:18:48 +05:30
it 'allows filtering by scope' do
expect(resolve_pipelines(scope: 'finished')).to contain_exactly(failed_pipeline, success_pipeline)
end
2018-11-08 19:23:39 +05:30
it 'allows filtering by ref' do
expect(resolve_pipelines(ref: 'awesome-feature')).to contain_exactly(ref_pipeline)
end
it 'allows filtering by sha' do
expect(resolve_pipelines(sha: 'deadbeef')).to contain_exactly(sha_pipeline)
end
2021-11-11 11:23:49 +05:30
context 'filtering by source' do
let_it_be(:source_pipeline) { create(:ci_pipeline, project: project, source: 'web') }
2022-03-02 08:16:31 +05:30
it 'does filter by source' do
expect(resolve_pipelines(source: 'web')).to contain_exactly(source_pipeline)
2021-11-11 11:23:49 +05:30
end
2022-03-02 08:16:31 +05:30
it 'returns all the pipelines' do
expect(resolve_pipelines).to contain_exactly(*all_pipelines, source_pipeline)
2021-11-11 11:23:49 +05:30
end
end
2018-11-08 19:23:39 +05:30
it 'does not return any pipelines if the user does not have access' do
expect(resolve_pipelines({}, {})).to be_empty
end
2019-07-31 22:56:46 +05:30
it 'increases field complexity based on arguments' do
2021-10-27 15:23:28 +05:30
field = Types::BaseField.new(name: 'test', type: GraphQL::Types::String, resolver_class: resolver, null: false, max_page_size: 1)
2019-07-31 22:56:46 +05:30
expect(field.to_graphql.complexity.call({}, {}, 1)).to eq 2
expect(field.to_graphql.complexity.call({}, { sha: 'foo' }, 1)).to eq 4
expect(field.to_graphql.complexity.call({}, { sha: 'ref' }, 1)).to eq 4
end
2018-11-08 19:23:39 +05:30
def resolve_pipelines(args = {}, context = { current_user: current_user })
resolve(resolver, obj: project, args: args, ctx: context)
end
end