summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/build/rules/rule/clause/exists_spec.rb
blob: 10843a1435aa4ce4effdd6c403693b8395597fde (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
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Build::Rules::Rule::Clause::Exists do
  describe '#satisfied_by?' do
    let(:pipeline) { build(:ci_pipeline, project: project, sha: project.repository.head_commit.sha) }

    subject { described_class.new(globs).satisfied_by?(pipeline, nil) }

    it_behaves_like 'a glob matching rule' do
      let(:project) { create(:project, :custom_repo, files: files) }
    end

    context 'after pattern comparision limit is reached' do
      let(:globs) { ['*definitely_not_a_matching_glob*'] }
      let(:project) { create(:project, :repository) }

      before do
        stub_const('Gitlab::Ci::Build::Rules::Rule::Clause::Exists::MAX_PATTERN_COMPARISONS', 2)
        expect(File).to receive(:fnmatch?).twice.and_call_original
      end

      it { is_expected.to be_truthy }
    end
  end
end