summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/graphql/mutation_shared_examples.rb
blob: 022d41c0bdd1beadf158fc8c7e8082fe310efd9d (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
# frozen_string_literal: true

# Shared example for expecting top-level errors.
# See https://graphql-ruby.org/mutations/mutation_errors#raising-errors
#
#   { errors: [] }
#
# There must be a method or let called `mutation` defined that executes
# the mutation.
RSpec.shared_examples 'a mutation that returns top-level errors' do |errors:|
  it do
    post_graphql_mutation(mutation, current_user: current_user)

    error_messages = graphql_errors.map { |e| e['message'] }

    expect(error_messages).to eq(errors)
  end
end

# Shared example for expecting schema-level errors.
# See https://graphql-ruby.org/mutations/mutation_errors#errors-as-data
#
#   { data: { mutationName: { errors: [] } } }
#
# There must be:
# - a method or let called `mutation` defined that executes the mutation
# - a `mutation_response` method defined that returns the data of the mutation response.
RSpec.shared_examples 'a mutation that returns errors in the response' do |errors:|
  it do
    post_graphql_mutation(mutation, current_user: current_user)

    expect(mutation_response['errors']).to eq(errors)
  end
end