debian-mirror-gitlab/spec/requests/api/graphql/mutations/todos/mark_done_spec.rb

101 lines
3.1 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'Marking todos done' do
2019-12-26 22:10:19 +05:30
include GraphqlHelpers
2021-08-04 16:29:09 +05:30
let_it_be(:project) { create(:project) }
let_it_be(:issue) { create(:issue, project: project) }
2019-12-26 22:10:19 +05:30
let_it_be(:current_user) { create(:user) }
let_it_be(:author) { create(:user) }
let_it_be(:other_user) { create(:user) }
2021-08-04 16:29:09 +05:30
let_it_be(:todo1) { create(:todo, user: current_user, author: author, state: :pending, target: issue) }
let_it_be(:todo2) { create(:todo, user: current_user, author: author, state: :done, target: issue) }
2019-12-26 22:10:19 +05:30
let_it_be(:other_user_todo) { create(:todo, user: other_user, author: author, state: :pending) }
let(:input) { { id: todo1.to_global_id.to_s } }
let(:mutation) do
graphql_mutation(:todo_mark_done, input,
<<-QL.strip_heredoc
clientMutationId
errors
todo {
id
state
}
QL
)
end
2021-08-04 16:29:09 +05:30
before_all do
project.add_developer(current_user)
end
2019-12-26 22:10:19 +05:30
def mutation_response
graphql_mutation_response(:todo_mark_done)
end
it 'marks a single todo as done' do
post_graphql_mutation(mutation, current_user: current_user)
expect(todo1.reload.state).to eq('done')
expect(todo2.reload.state).to eq('done')
expect(other_user_todo.reload.state).to eq('pending')
todo = mutation_response['todo']
expect(todo['id']).to eq(todo1.to_global_id.to_s)
expect(todo['state']).to eq('done')
end
context 'when todo is already marked done' do
let(:input) { { id: todo2.to_global_id.to_s } }
it 'has the expected response' do
post_graphql_mutation(mutation, current_user: current_user)
expect(todo1.reload.state).to eq('pending')
expect(todo2.reload.state).to eq('done')
expect(other_user_todo.reload.state).to eq('pending')
todo = mutation_response['todo']
expect(todo['id']).to eq(todo2.to_global_id.to_s)
expect(todo['state']).to eq('done')
end
end
context 'when todo does not belong to requesting user' do
let(:input) { { id: other_user_todo.to_global_id.to_s } }
2020-11-24 15:15:51 +05:30
it_behaves_like 'a mutation that returns a top-level access error'
2019-12-26 22:10:19 +05:30
2020-11-24 15:15:51 +05:30
it 'results in the correct todo states' do
post_graphql_mutation(mutation, current_user: current_user)
2019-12-26 22:10:19 +05:30
expect(todo1.reload.state).to eq('pending')
expect(todo2.reload.state).to eq('done')
expect(other_user_todo.reload.state).to eq('pending')
end
end
context 'when using an invalid gid' do
2021-01-03 14:25:43 +05:30
let(:input) { { id: GitlabSchema.id_from_object(author).to_s } }
let(:invalid_gid_error) { /"#{input[:id]}" does not represent an instance of #{todo1.class}/ }
2019-12-26 22:10:19 +05:30
it 'contains the expected error' do
post_graphql_mutation(mutation, current_user: current_user)
errors = json_response['errors']
expect(errors).not_to be_blank
2021-01-03 14:25:43 +05:30
expect(errors.first['message']).to match(invalid_gid_error)
2019-12-26 22:10:19 +05:30
expect(todo1.reload.state).to eq('pending')
expect(todo2.reload.state).to eq('done')
expect(other_user_todo.reload.state).to eq('pending')
end
end
end