debian-mirror-gitlab/spec/requests/api/graphql/mutations/notes/destroy_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.3 KiB
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-03-04 22:38:38 +05:30
RSpec.describe 'Destroying a Note', feature_category: :team_planning do
2019-09-30 21:07:59 +05:30
include GraphqlHelpers
2023-03-04 22:38:38 +05:30
let(:noteable) { create(:work_item, :issue) }
let!(:note) { create(:note, noteable: noteable, project: noteable.project) }
let(:global_note_id) { GitlabSchema.id_from_object(note).to_s }
let(:variables) { { id: global_note_id } }
let(:mutation) { graphql_mutation(:destroy_note, variables) }
2019-09-30 21:07:59 +05:30
def mutation_response
graphql_mutation_response(:destroy_note)
end
context 'when the user does not have permission' do
let(:current_user) { create(:user) }
2020-11-24 15:15:51 +05:30
it_behaves_like 'a mutation that returns a top-level access error'
2019-09-30 21:07:59 +05:30
it 'does not destroy the Note' do
expect do
post_graphql_mutation(mutation, current_user: current_user)
end.not_to change { Note.count }
end
end
context 'when the user has permission' do
let(:current_user) { note.author }
it_behaves_like 'a Note mutation when the given resource id is not for a Note'
it 'destroys the Note' do
expect do
post_graphql_mutation(mutation, current_user: current_user)
end.to change { Note.count }.by(-1)
end
it 'returns an empty Note' do
post_graphql_mutation(mutation, current_user: current_user)
expect(mutation_response).to have_key('note')
expect(mutation_response['note']).to be_nil
end
2023-03-04 22:38:38 +05:30
context 'when note is system' do
let!(:note) { create(:note, :system) }
it 'does not destroy system note' do
expect do
post_graphql_mutation(mutation, current_user: current_user)
end.not_to change { Note.count }
end
end
context 'without notes widget' do
before do
stub_const('WorkItems::Type::BASE_TYPES', { issue: { name: 'NoNotesWidget', enum_value: 0 } })
stub_const('WorkItems::Type::WIDGETS_FOR_TYPE', { issue: [::WorkItems::Widgets::Description] })
end
it 'does not update the Note' do
expect do
post_graphql_mutation(mutation, current_user: current_user)
end.to not_change { Note.count }
end
it_behaves_like 'a mutation that returns top-level errors',
errors: [Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR]
end
2019-09-30 21:07:59 +05:30
end
end