Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/chat_commands/merge_request_search_spec.rb')
-rw-r--r--spec/lib/gitlab/chat_commands/merge_request_search_spec.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/lib/gitlab/chat_commands/merge_request_search_spec.rb b/spec/lib/gitlab/chat_commands/merge_request_search_spec.rb
new file mode 100644
index 00000000000..4cb4563e589
--- /dev/null
+++ b/spec/lib/gitlab/chat_commands/merge_request_search_spec.rb
@@ -0,0 +1,36 @@
+require 'spec_helper'
+
+describe Gitlab::ChatCommands::MergeRequestSearch, service: true do
+ describe '#execute' do
+ let!(:merge_request) { create(:merge_request, title: 'The bird is the word') }
+ let(:project) { merge_request.source_project }
+ let(:user) { merge_request.author }
+ let(:regex_match) { described_class.match("mergerequest search #{merge_request.title}") }
+
+ before { project.team << [user, :master] }
+
+ subject { described_class.new(project, user, {}).execute(regex_match) }
+
+ context 'the merge request exists' do
+ it 'returns the merge request' do
+ expect(subject[:response_type]).to be :in_channel
+ expect(subject[:text]).to match merge_request.title
+ end
+ end
+
+ context 'no results can be found' do
+ let(:regex_match) { described_class.match("mergerequest search 12334") }
+
+ it "returns a 404 message" do
+ expect(subject[:response_type]).to be :ephemeral
+ expect(subject[:text]).to start_with '404 not found!'
+ end
+ end
+ end
+
+ describe 'self.match' do
+ it 'matches a valid query' do
+ expect(described_class.match("mergerequest search my title here")).to be_truthy
+ end
+ end
+end