summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/graphql/mount_mutation_spec.rb
blob: d6b932e08d206f2c2d91cf441c882072e5d30c4a (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
63
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe Gitlab::Graphql::MountMutation do
  let_it_be(:mutation) do
    Class.new(Mutations::BaseMutation) do
      graphql_name 'TestMutation'

      argument :foo, GraphQL::STRING_TYPE, required: false
      field :bar, GraphQL::STRING_TYPE, null: true
    end
  end

  describe '.mount_mutation' do
    subject(:field) do
      mutation_type = mutation_type_factory do |f|
        f.mount_mutation(mutation)
      end

      mutation_type.get_field('testMutation').to_graphql
    end

    it 'mounts a mutation' do
      expect(field.mutation).to be_present
    end
  end

  describe '.mount_aliased_mutation' do
    subject(:field) do
      mutation_type = mutation_type_factory do |f|
        f.mount_aliased_mutation('MyAlias', mutation)
      end

      mutation_type.get_field('myAlias').to_graphql
    end

    it 'mounts a mutation' do
      expect(field.mutation).to be_present
    end

    it 'has a correct `graphql_name`' do
      expect(field.mutation.graphql_name).to eq('MyAlias')
    end

    it 'has a correct type' do
      expect(field.type.name).to eq('MyAliasPayload')
    end

    it 'has a correct input argument' do
      expect(field.arguments['input'].type.unwrap.name).to eq('MyAliasInput')
    end
  end

  def mutation_type_factory
    Class.new(GraphQL::Schema::Object) do
      include Gitlab::Graphql::MountMutation

      graphql_name 'MutationType'

      yield(self) if block_given?
    end
  end
end