summaryrefslogtreecommitdiff
path: root/spec/graphql/mutations/base_mutation_spec.rb
blob: 6b366b0c2346ed5d8526bcd7c527d1518935b706 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ::Mutations::BaseMutation do
  include GraphqlHelpers

  describe 'argument nullability' do
    let_it_be(:user) { create(:user) }
    let_it_be(:context)  { { current_user: user } }

    subject(:mutation) { mutation_class.new(object: nil, context: context, field: nil) }

    describe 'when using a mutation with correct argument declarations' do
      context 'when argument is nullable and required' do
        let(:mutation_class) do
          Class.new(described_class) do
            graphql_name 'BaseMutation'
            argument :foo, GraphQL::Types::String, required: :nullable
          end
        end

        specify do
          expect { subject.ready? }.to raise_error(ArgumentError, /must be provided: foo/)
        end

        specify do
          expect { subject.ready?(foo: nil) }.not_to raise_error
        end

        specify do
          expect { subject.ready?(foo: "bar") }.not_to raise_error
        end
      end

      context 'when argument is required and NOT nullable' do
        let(:mutation_class) do
          Class.new(described_class) do
            graphql_name 'BaseMutation'
            argument :foo, GraphQL::Types::String, required: true
          end
        end

        specify do
          expect { subject.ready? }.to raise_error(ArgumentError, /must be provided/)
        end

        specify do
          expect { subject.ready?(foo: nil) }.to raise_error(ArgumentError, /must be provided/)
        end

        specify do
          expect { subject.ready?(foo: "bar") }.not_to raise_error
        end
      end
    end
  end
end