Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_spec.rb « achievements « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bad61643141ddbafb70bba0bee8fb2bcf97e2fd (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Achievements::Create, feature_category: :users do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }

  let(:group) { create(:group) }
  let(:valid_params) do
    attributes_for(:achievement, namespace: group)
  end

  describe '#resolve' do
    subject(:resolve_mutation) do
      described_class.new(object: nil, context: { current_user: user }, field: nil).resolve(
        **valid_params,
        namespace_id: group.to_global_id
      )
    end

    context 'when the user does not have permission' do
      before do
        group.add_developer(user)
      end

      it 'raises an error' do
        expect { resolve_mutation }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
          .with_message(Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR)
      end
    end

    context 'when the user has permission' do
      before do
        group.add_maintainer(user)
      end

      context 'when the params are invalid' do
        it 'returns the validation error' do
          valid_params[:name] = nil

          expect(resolve_mutation[:errors]).to match_array(["Name can't be blank"])
        end
      end

      it 'creates contact with correct values' do
        expect(resolve_mutation[:achievement]).to have_attributes(valid_params)
      end
    end
  end

  specify { expect(described_class).to require_graphql_authorizations(:admin_achievement) }
end