2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
RSpec.describe Integrations::ChatMessage::BaseMessage do
|
2020-03-13 15:44:24 +05:30
|
|
|
let(:base_message) { described_class.new(args) }
|
|
|
|
let(:args) { { project_url: 'https://gitlab-domain.com' } }
|
|
|
|
|
|
|
|
describe '#fallback' do
|
|
|
|
subject { base_message.fallback }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(base_message).to receive(:message).and_return(message)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without relative links' do
|
|
|
|
let(:message) { 'Just another *markdown* message' }
|
|
|
|
|
|
|
|
it { is_expected.to eq(message) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with relative links' do
|
|
|
|
let(:message) { 'Check this out ![Screenshot1](/uploads/Screenshot1.png)' }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Check this out https://gitlab-domain.com/uploads/Screenshot1.png') }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with multiple relative links' do
|
|
|
|
let(:message) { 'Check this out ![Screenshot1](/uploads/Screenshot1.png). And this ![Screenshot2](/uploads/Screenshot2.png)' }
|
|
|
|
|
|
|
|
it { is_expected.to eq('Check this out https://gitlab-domain.com/uploads/Screenshot1.png. And this https://gitlab-domain.com/uploads/Screenshot2.png') }
|
|
|
|
end
|
|
|
|
end
|
2022-01-12 12:59:36 +05:30
|
|
|
|
|
|
|
describe '#strip_markup' do
|
|
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
|
|
|
|
where(:input, :output) do
|
|
|
|
nil | nil
|
|
|
|
'' | ''
|
|
|
|
'[label](url)' | 'label(url)'
|
|
|
|
'<url|label>' | 'urllabel'
|
|
|
|
'<a href="url">label</a>' | 'a href="url"label/a'
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
it 'returns the expected output' do
|
|
|
|
expect(base_message.send(:strip_markup, input)).to eq(output)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|