summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/chat_commands/issue_search_spec.rb
blob: 3e54333528a96b759c99d176333cc35ee33d9fbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require 'spec_helper'

describe Gitlab::ChatCommands::IssueSearch, service: true do
  describe '#execute' do
    let!(:issue)    { create(:issue, title: 'The bird is the word') }
    let(:project)  { issue.project }
    let(:user)     { issue.author }
    let(:regex_match) { described_class.match("issue search bird is the") }

    before { project.team << [user, :master] }

    subject { described_class.new(project, user).execute(regex_match) }

    context 'without results' do
      let(:regex_match) { described_class.match("issue search no results for this one") }

      it "returns nil" do
        expect(subject[:response_type]).to be :ephemeral
        expect(subject[:text]).to start_with '404 not found!'
      end
    end

    context 'with 1 result' do
      it 'returns the issue' do
        expect(subject[:response_type]).to be :in_channel
        expect(subject[:text]).to match issue.title
      end
    end

    context 'with 2 or more results' do
      let!(:issue2) { create(:issue, project: project, title: 'bird is the word!') }

      it 'returns multiple resources' do
        expect(subject[:response_type]).to be :ephemeral
        expect(subject[:text]).to start_with 'Multiple results were found'
      end
    end
  end
end