summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/alert_management/http_integration/destroy_spec.rb
blob: 1ecb5c76b57f9b37c7f1cb7dae2520af52d9598c (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Removing an HTTP Integration' do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:integration) { create(:alert_management_http_integration, project: project) }

  let(:mutation) do
    variables = {
      id: GitlabSchema.id_from_object(integration).to_s
    }
    graphql_mutation(:http_integration_destroy, variables) do
      <<~QL
         clientMutationId
         errors
         integration {
           id
           type
           name
           active
           token
           url
           apiUrl
         }
      QL
    end
  end

  let(:mutation_response) { graphql_mutation_response(:http_integration_destroy) }

  before do
    project.add_maintainer(user)
  end

  it 'removes the integration' do
    post_graphql_mutation(mutation, current_user: user)

    integration_response = mutation_response['integration']

    expect(response).to have_gitlab_http_status(:success)
    expect(integration_response['id']).to eq(GitlabSchema.id_from_object(integration).to_s)
    expect(integration_response['type']).to eq('HTTP')
    expect(integration_response['name']).to eq(integration.name)
    expect(integration_response['active']).to eq(integration.active)
    expect(integration_response['token']).to eq(integration.token)
    expect(integration_response['url']).to eq(integration.url)
    expect(integration_response['apiUrl']).to eq(nil)

    expect { integration.reload }.to raise_error ActiveRecord::RecordNotFound
  end
end