74 lines
2.1 KiB
Ruby
74 lines
2.1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
RSpec.describe 'Moving an issue' do
|
||
|
include GraphqlHelpers
|
||
|
|
||
|
let_it_be(:user) { create(:user) }
|
||
|
let_it_be(:issue) { create(:issue) }
|
||
|
let_it_be(:target_project) { create(:project) }
|
||
|
|
||
|
let(:mutation) do
|
||
|
variables = {
|
||
|
project_path: issue.project.full_path,
|
||
|
target_project_path: target_project.full_path,
|
||
|
iid: issue.iid.to_s
|
||
|
}
|
||
|
|
||
|
graphql_mutation(:issue_move, variables,
|
||
|
<<-QL.strip_heredoc
|
||
|
clientMutationId
|
||
|
errors
|
||
|
issue {
|
||
|
title
|
||
|
}
|
||
|
QL
|
||
|
)
|
||
|
end
|
||
|
|
||
|
def mutation_response
|
||
|
graphql_mutation_response(:issue_move)
|
||
|
end
|
||
|
|
||
|
context 'when the user is not allowed to read source project' do
|
||
|
it 'returns an error' do
|
||
|
error = "The resource that you are attempting to access does not exist or you don't have permission to perform this action"
|
||
|
post_graphql_mutation(mutation, current_user: user)
|
||
|
|
||
|
expect(response).to have_gitlab_http_status(:success)
|
||
|
expect(graphql_errors).to include(a_hash_including('message' => error))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when the user is not allowed to move issue to target project' do
|
||
|
before do
|
||
|
issue.project.add_developer(user)
|
||
|
end
|
||
|
|
||
|
it 'returns an error' do
|
||
|
error = "Cannot move issue due to insufficient permissions!"
|
||
|
post_graphql_mutation(mutation, current_user: user)
|
||
|
|
||
|
expect(response).to have_gitlab_http_status(:success)
|
||
|
expect(mutation_response['errors'][0]).to eq(error)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'when the user is allowed to move issue' do
|
||
|
before do
|
||
|
issue.project.add_developer(user)
|
||
|
target_project.add_developer(user)
|
||
|
end
|
||
|
|
||
|
it 'moves the issue' do
|
||
|
post_graphql_mutation(mutation, current_user: user)
|
||
|
|
||
|
expect(response).to have_gitlab_http_status(:success)
|
||
|
expect(mutation_response.dig('issue', 'title')).to eq(issue.title)
|
||
|
expect(issue.reload.state).to eq('closed')
|
||
|
expect(target_project.issues.find_by_title(issue.title)).to be_present
|
||
|
end
|
||
|
end
|
||
|
end
|