summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/milestone_spec.rb
blob: 59de116fa2b940f4d51baa9c76bfa6b291417d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Querying a Milestone' do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:milestone) { create(:milestone, project: project) }

  let(:query) do
    graphql_query_for('milestone', { id: milestone.to_global_id.to_s }, 'title')
  end

  subject { graphql_data['milestone'] }

  before do
    post_graphql(query, current_user: current_user)
  end

  context 'when the user has access to the milestone' do
    before_all do
      project.add_guest(current_user)
    end

    it_behaves_like 'a working graphql query'

    it { is_expected.to include('title' => milestone.name) }
  end

  context 'when the user does not have access to the milestone' do
    it_behaves_like 'a working graphql query'

    it { is_expected.to be_nil }
  end

  context 'when ID argument is missing' do
    let(:query) do
      graphql_query_for('milestone', {}, 'title')
    end

    it 'raises an exception' do
      expect(graphql_errors).to include(a_hash_including('message' => "Field 'milestone' is missing required arguments: id"))
    end
  end
end