2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Ci::Build::Rules::Rule do
|
2019-12-04 20:38:33 +05:30
|
|
|
let(:seed) do
|
|
|
|
double('build seed',
|
|
|
|
to_resource: ci_build,
|
2021-04-17 20:07:23 +05:30
|
|
|
variables: ci_build.scoped_variables
|
2019-12-04 20:38:33 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:pipeline) { create(:ci_pipeline) }
|
|
|
|
let(:ci_build) { build(:ci_build, pipeline: pipeline) }
|
|
|
|
let(:rule) { described_class.new(rule_hash) }
|
|
|
|
|
|
|
|
describe '#matches?' do
|
|
|
|
subject { rule.matches?(pipeline, seed) }
|
|
|
|
|
|
|
|
context 'with one matching clause' do
|
|
|
|
let(:rule_hash) do
|
|
|
|
{ if: '$VAR == null', when: 'always' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with two matching clauses' do
|
|
|
|
let(:rule_hash) do
|
|
|
|
{ if: '$VAR == null', changes: '**/*', when: 'always' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(true) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a matching and non-matching clause' do
|
|
|
|
let(:rule_hash) do
|
|
|
|
{ if: '$VAR != null', changes: '$VAR == null', when: 'always' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with two non-matching clauses' do
|
|
|
|
let(:rule_hash) do
|
|
|
|
{ if: '$VAR != null', changes: 'README', when: 'always' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to eq(false) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|