2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.shared_context 'email shared context' do
|
2021-03-08 18:12:59 +05:30
|
|
|
let(:mail_key) { '59d8df8370b7e95c5a49fbf86aeb2c93' }
|
2016-09-13 17:45:13 +05:30
|
|
|
let(:receiver) { Gitlab::Email::Receiver.new(email_raw) }
|
2021-03-08 18:12:59 +05:30
|
|
|
let(:markdown) { '![image](uploads/image.png)' }
|
2016-09-13 17:45:13 +05:30
|
|
|
|
|
|
|
def setup_attachment
|
|
|
|
allow_any_instance_of(Gitlab::Email::AttachmentUploader).to receive(:execute).and_return(
|
|
|
|
[
|
|
|
|
{
|
2021-03-08 18:12:59 +05:30
|
|
|
url: 'uploads/image.png',
|
|
|
|
alt: 'image',
|
2016-09-13 17:45:13 +05:30
|
|
|
markdown: markdown
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
def email_fixture(path)
|
|
|
|
fixture_file(path).gsub('project_id', project.project_id.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def service_desk_fixture(path, slug: nil, key: 'mykey')
|
|
|
|
slug ||= project.full_path_slug.to_s
|
|
|
|
fixture_file(path).gsub('project_slug', slug).gsub('project_key', key)
|
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.shared_examples 'reply processing shared examples' do
|
2021-03-08 18:12:59 +05:30
|
|
|
context 'when the user could not be found' do
|
2016-09-13 17:45:13 +05:30
|
|
|
before do
|
2021-01-03 14:25:43 +05:30
|
|
|
user.destroy!
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
it 'raises a UserNotFoundError' do
|
2016-09-13 17:45:13 +05:30
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::UserNotFoundError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
context 'when the user is not authorized to the project' do
|
2016-09-13 17:45:13 +05:30
|
|
|
before do
|
|
|
|
project.update_attribute(:visibility_level, Project::PRIVATE)
|
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
it 'raises a ProjectNotFound' do
|
2016-09-13 17:45:13 +05:30
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::ProjectNotFound)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.shared_examples 'checks permissions on noteable examples' do
|
2021-03-08 18:12:59 +05:30
|
|
|
context 'when user has access' do
|
|
|
|
before do
|
|
|
|
project.add_reporter(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a comment' do
|
|
|
|
expect { receiver.execute }.to change { noteable.notes.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user does not have access' do
|
|
|
|
it 'raises UserNotAuthorizedError' do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::UserNotAuthorizedError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.shared_examples 'note handler shared examples' do |forwardable|
|
2021-03-08 18:12:59 +05:30
|
|
|
context 'when the noteable could not be found' do
|
|
|
|
before do
|
|
|
|
noteable.destroy!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises a NoteableNotFoundError' do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::NoteableNotFoundError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the note could not be saved' do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Note).to receive(:persisted?).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an InvalidNoteError' do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::InvalidNoteError)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'because the note was update commands only' do
|
|
|
|
let!(:email_raw) { update_commands_only }
|
|
|
|
|
|
|
|
context 'and current user cannot update noteable' do
|
2021-04-29 21:17:54 +05:30
|
|
|
it 'does not raise an error' do
|
|
|
|
expect { receiver.execute }.not_to raise_error
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and current user can update noteable' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
it 'does not raise an error' do
|
2021-03-08 18:12:59 +05:30
|
|
|
expect { receiver.execute }.to change { noteable.resource_state_events.count }.by(1)
|
|
|
|
|
|
|
|
expect(noteable.reload).to be_closed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the note contains quick actions' do
|
|
|
|
let!(:email_raw) { commands_in_reply }
|
|
|
|
|
|
|
|
context 'and current user cannot update the noteable' do
|
|
|
|
it 'only executes the commands that the user can perform' do
|
|
|
|
expect { receiver.execute }
|
|
|
|
.to change { noteable.notes.user.count }.by(1)
|
|
|
|
.and change { user.todos_pending_count }.from(0).to(1)
|
|
|
|
|
|
|
|
expect(noteable.reload).to be_open
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and current user can update noteable' do
|
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'posts a note and updates the noteable' do
|
|
|
|
expect(TodoService.new.todo_exist?(noteable, user)).to be_falsy
|
|
|
|
|
|
|
|
expect { receiver.execute }
|
|
|
|
.to change { noteable.notes.user.count }.by(1)
|
|
|
|
.and change { user.todos_pending_count }.from(0).to(1)
|
|
|
|
|
|
|
|
expect(noteable.reload).to be_closed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the reply is blank' do
|
|
|
|
let!(:email_raw) { no_content }
|
|
|
|
|
|
|
|
it 'raises an EmptyEmailError', unless: forwardable do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::EmptyEmailError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows email to only have quoted text', if: forwardable do
|
2022-07-16 23:28:13 +05:30
|
|
|
expect { receiver.execute }.not_to raise_error
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when discussion is locked' do
|
|
|
|
before do
|
|
|
|
noteable.update_attribute(:discussion_locked, true)
|
|
|
|
end
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
it_behaves_like 'checks permissions on noteable examples'
|
2021-03-08 18:12:59 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when everything is fine' do
|
|
|
|
before do
|
|
|
|
setup_attachment
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds all attachments' do
|
|
|
|
expect_next_instance_of(Gitlab::Email::AttachmentUploader) do |uploader|
|
|
|
|
expect(uploader).to receive(:execute).with(upload_parent: project, uploader_class: FileUploader).and_return(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
url: 'uploads/image.png',
|
|
|
|
alt: 'image',
|
|
|
|
markdown: markdown
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
receiver.execute
|
|
|
|
|
|
|
|
note = noteable.notes.last
|
|
|
|
expect(note.note).to include(markdown)
|
|
|
|
expect(note.note).to include('Jake out')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the service desk' do
|
|
|
|
let(:project) { create(:project, :public, service_desk_enabled: true) }
|
|
|
|
let(:support_bot) { User.support_bot }
|
|
|
|
let(:noteable) { create(:issue, project: project, author: support_bot, title: 'service desk issue') }
|
|
|
|
let!(:note) { create(:note, project: project, noteable: noteable) }
|
|
|
|
let(:email_raw) { with_quick_actions }
|
|
|
|
|
|
|
|
let!(:sent_notification) do
|
2021-04-29 21:17:54 +05:30
|
|
|
allow(Gitlab::ServiceDesk).to receive(:enabled?).with(project: project).and_return(true)
|
2021-03-08 18:12:59 +05:30
|
|
|
SentNotification.record_note(note, support_bot.id, mail_key)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'is enabled' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::ServiceDesk).to receive(:enabled?).with(project: project).and_return(true)
|
|
|
|
project.project_feature.update!(issues_access_level: issues_access_level)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issues are enabled for everyone' do
|
|
|
|
let(:issues_access_level) { ProjectFeature::ENABLED }
|
|
|
|
|
|
|
|
it 'creates a comment' do
|
|
|
|
expect { receiver.execute }.to change { noteable.notes.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when quick actions are present' do
|
|
|
|
before do
|
|
|
|
receiver.execute
|
|
|
|
noteable.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when author is a support_bot', unless: forwardable do
|
|
|
|
it 'encloses quick actions with code span markdown' do
|
|
|
|
note = Note.last
|
|
|
|
expect(note.note).to include("Jake out\n\n`/close`\n`/title test`")
|
|
|
|
expect(noteable.title).to eq('service desk issue')
|
|
|
|
expect(noteable).to be_opened
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when author is a normal user', if: forwardable do
|
|
|
|
it 'extracted the quick actions' do
|
|
|
|
note = Note.last
|
|
|
|
expect(note.note).to include('Jake out')
|
|
|
|
expect(note.note).not_to include("`/close`\n`/title test`")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issues are protected members only' do
|
|
|
|
let(:issues_access_level) { ProjectFeature::PRIVATE }
|
|
|
|
|
|
|
|
before do
|
|
|
|
if recipient.support_bot?
|
|
|
|
@changed_by = 1
|
|
|
|
else
|
|
|
|
@changed_by = 2
|
|
|
|
project.add_developer(recipient)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates a comment' do
|
|
|
|
expect { receiver.execute }.to change { noteable.notes.count }.by(@changed_by)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issues are disabled' do
|
|
|
|
let(:issues_access_level) { ProjectFeature::DISABLED }
|
|
|
|
|
|
|
|
it 'does not create a comment' do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::UserNotAuthorizedError)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'is disabled', unless: forwardable do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::ServiceDesk).to receive(:enabled?).and_return(false)
|
|
|
|
allow(Gitlab::ServiceDesk).to receive(:enabled?).with(project: project).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not create a comment' do
|
|
|
|
expect { receiver.execute }.to raise_error(Gitlab::Email::ProjectNotFound)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|