debian-mirror-gitlab/spec/requests/api/graphql/mutations/alert_management/http_integration/reset_token_spec.rb
2021-01-29 00:20:46 +05:30

45 lines
1.2 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Resetting a token on an existing 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_reset_token, variables) do
<<~QL
clientMutationId
errors
integration {
id
token
}
QL
end
end
let(:mutation_response) { graphql_mutation_response(:http_integration_reset_token) }
before do
project.add_maintainer(user)
end
it 'updates the integration' do
previous_token = integration.token
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['token']).not_to eq(previous_token)
expect(integration_response['token']).to eq(integration.reload.token)
end
end