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

responder_spec.rb « chat « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15ca3427ae8c9701de155163f447be007778c9b1 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Chat::Responder, feature_category: :integrations do
  describe '.responder_for' do
    context 'using a regular build' do
      it 'returns nil' do
        build = create(:ci_build)

        expect(described_class.responder_for(build)).to be_nil
      end
    end

    context 'using a chat build' do
      let_it_be(:pipeline) { create(:ci_pipeline) }
      let_it_be(:build) { create(:ci_build, pipeline: pipeline) }

      context "when response_url starts with 'https://hooks.slack.com/'" do
        before do
          pipeline.build_chat_data(response_url: 'https://hooks.slack.com/services/12345', chat_name_id: 'U123')
        end

        it { expect(described_class.responder_for(build)).to be_an_instance_of(Gitlab::Chat::Responder::Slack) }
      end

      context "when response_url does not start with 'https://hooks.slack.com/'" do
        before do
          pipeline.build_chat_data(response_url: 'https://mattermost.example.com/services/12345', chat_name_id: 'U123')
        end

        it { expect(described_class.responder_for(build)).to be_an_instance_of(Gitlab::Chat::Responder::Mattermost) }
      end
    end
  end
end