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

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

require 'fast_spec_helper'

RSpec.describe Atlassian::JiraIssueKeyExtractor, feature_category: :integrations do
  describe '.has_keys?' do
    subject { described_class.has_keys?(string) }

    context 'when string contains Jira issue keys' do
      let(:string) { 'Test some string TEST-01 with keys' }

      it { is_expected.to eq(true) }
    end

    context 'when string does not contain Jira issue keys' do
      let(:string) { 'string with no jira issue keys' }

      it { is_expected.to eq(false) }
    end
  end

  describe '#issue_keys' do
    subject { described_class.new('TEST-01 Some A-100 issue title OTHER-02 ABC!-1 that mentions Jira issue').issue_keys }

    it 'returns all valid Jira issue keys' do
      is_expected.to contain_exactly('TEST-01', 'OTHER-02')
    end

    context 'when multiple strings are passed in' do
      subject { described_class.new('TEST-01 Some A-100', 'issue title OTHER', '-02 ABC!-1 that mentions Jira issue').issue_keys }

      it 'returns all valid Jira issue keys in any of those string' do
        is_expected.to contain_exactly('TEST-01')
      end
    end
  end
end