summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/api/graphql/noteable_shared_examples.rb
blob: 9cf5bc04f65dc95b77963fb68154b36a48482dab (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

# Requires `query(fields)`, `path_to_noteable`, `project`, and `noteable` bindings
RSpec.shared_examples 'a noteable graphql type we can query' do
  let(:note_factory) { :note }
  let(:discussion_factory) { :discussion_note }

  describe '.discussions' do
    let(:fields) do
      "discussions { nodes { #{all_graphql_fields_for('Discussion')} } }"
    end

    def expected
      noteable.discussions.map do |discussion|
        include(
          'id' => global_id_of(discussion),
          'replyId' => global_id_of(discussion, id: discussion.reply_id),
          'createdAt' => discussion.created_at.iso8601,
          'notes' => include(
            'nodes' => have_attributes(size: discussion.notes.size)
          )
        )
      end
    end

    it 'can fetch discussions' do
      create(discussion_factory, project: project, noteable: noteable)

      post_graphql(query(fields), current_user: current_user)

      expect(graphql_data_at(*path_to_noteable, :discussions, :nodes))
        .to match_array(expected)
    end
  end

  describe '.notes' do
    let(:fields) do
      "notes { nodes { #{all_graphql_fields_for('Note', max_depth: 2)} } }"
    end

    def expected
      noteable.notes.map do |note|
        include(
          'id' => global_id_of(note),
          'project' => include('id' => global_id_of(project)),
          'author' => include('id' => global_id_of(note.author)),
          'createdAt' => note.created_at.iso8601,
          'body' => eq(note.note)
        )
      end
    end

    it 'can fetch notes' do
      create(note_factory, project: project, noteable: noteable)

      post_graphql(query(fields), current_user: current_user)

      expect(graphql_data_at(*path_to_noteable, :notes, :nodes))
        .to match_array(expected)
    end
  end
end