summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/quick_actions/substitution_definition_spec.rb
blob: e4f25bc35a93a0e79c94d07dca4342f074fe5ab2 (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
40
41
42
43
44
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::QuickActions::SubstitutionDefinition do
  let(:content) do
    <<EOF
Hello! Let's do this!
/sub_name I like this stuff
EOF
  end
  subject do
    described_class.new(:sub_name, action_block: proc { |text| "#{text} foo" })
  end

  describe '#perform_substitution!' do
    it 'returns nil if content is nil' do
      expect(subject.perform_substitution(self, nil)).to be_nil
    end

    it 'performs the substitution by default' do
      expect(subject.perform_substitution(self, content)).to eq <<EOF
Hello! Let's do this!
I like this stuff foo
EOF
    end
  end

  describe '#match' do
    it 'checks the content for the command' do
      expect(subject.match(content)).to be_truthy
    end

    it 'returns the match data' do
      data = subject.match(content)
      expect(data).to be_a(MatchData)
      expect(data[1]).to eq('I like this stuff')
    end

    it 'is nil if content does not have the command' do
      expect(subject.match('blah')).to be_falsey
    end
  end
end