# frozen_string_literal: true require 'spec_helper' RSpec.describe 'getting job information' do include GraphqlHelpers let_it_be(:job) { create(:ci_build, :success, name: 'job1') } let(:query) do graphql_query_for(:jobs) end context 'when user is admin' do let_it_be(:current_user) { create(:admin) } it 'has full access to all jobs', :aggregate_failure do post_graphql(query, current_user: current_user) expect(graphql_data_at(:jobs, :count)).to eq(1) expect(graphql_data_at(:jobs, :nodes)).to contain_exactly(a_graphql_entity_for(job)) end context 'when filtered by status' do let_it_be(:pending_job) { create(:ci_build, :pending) } let_it_be(:failed_job) { create(:ci_build, :failed) } it 'gets pending jobs', :aggregate_failure do post_graphql(graphql_query_for(:jobs, { statuses: :PENDING }), current_user: current_user) expect(graphql_data_at(:jobs, :count)).to eq(1) expect(graphql_data_at(:jobs, :nodes)).to contain_exactly(a_graphql_entity_for(pending_job)) end it 'gets pending and failed jobs', :aggregate_failure do post_graphql(graphql_query_for(:jobs, { statuses: [:PENDING, :FAILED] }), current_user: current_user) expect(graphql_data_at(:jobs, :count)).to eq(2) expect(graphql_data_at(:jobs, :nodes)).to match_array([a_graphql_entity_for(pending_job), a_graphql_entity_for(failed_job)]) end end end context 'if the user is not an admin' do let_it_be(:current_user) { create(:user) } it 'has no access to the jobs', :aggregate_failure do post_graphql(query, current_user: current_user) expect(graphql_data_at(:jobs, :count)).to eq(0) expect(graphql_data_at(:jobs, :nodes)).to match_array([]) end end end