summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/jira_import/import_users_spec.rb
blob: be0d843d5ff32666586f0206c349e608f80e74ed (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# frozen_string_literal: true

require 'spec_helper'

describe 'Importing Jira Users' do
  include JiraServiceHelper
  include GraphqlHelpers

  let_it_be(:user)    { create(:user) }
  let_it_be(:project) { create(:project) }
  let(:project_path)  { project.full_path }
  let(:start_at)      { 7 }

  let(:mutation) do
    variables = {
      start_at: start_at,
      project_path: project_path
    }

    graphql_mutation(:jira_import_users, variables)
  end

  def mutation_response
    graphql_mutation_response(:jira_import_users)
  end

  def jira_import
    mutation_response['jiraUsers']
  end

  context 'with anonymous user' do
    let(:current_user) { nil }

    it_behaves_like 'a mutation that returns top-level errors',
                    errors: [Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR]
  end

  context 'with user without permissions' do
    let(:current_user) { user }

    before do
      project.add_developer(current_user)
    end

    it_behaves_like 'a mutation that returns top-level errors',
                    errors: [Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR]
  end

  context 'when the user has permissions' do
    let(:current_user) { user }

    before do
      project.add_maintainer(current_user)
    end

    context 'when the project path is invalid' do
      let(:project_path) { 'foobar' }

      it 'returns an an error' do
        post_graphql_mutation(mutation, current_user: current_user)

        errors = json_response['errors']

        expect(errors.first['message']).to eq(Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR)
      end
    end

    context 'when all params and permissions are ok' do
      let(:importer) { instance_double(JiraImport::UsersImporter) }

      before do
        expect(JiraImport::UsersImporter).to receive(:new).with(current_user, project, 7)
          .and_return(importer)
      end

      context 'when service returns a successful response' do
        it 'returns imported users' do
          users = [{ jira_account_id: '12a', jira_display_name: 'user 1' }]
          result = ServiceResponse.success(payload: users)

          expect(importer).to receive(:execute).and_return(result)

          post_graphql_mutation(mutation, current_user: current_user)

          expect(jira_import.length).to eq(1)
          expect(jira_import.first['jiraAccountId']).to eq('12a')
          expect(jira_import.first['jiraDisplayName']).to eq('user 1')
        end
      end

      context 'when service returns an error response' do
        it 'returns an error messaege' do
          result = ServiceResponse.error(message: 'Some error')

          expect(importer).to receive(:execute).and_return(result)

          post_graphql_mutation(mutation, current_user: current_user)

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