summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/pipeline/expression/lexeme/and_spec.rb
blob: 847d613dba356750b325d5772d17c3174abd11a4 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# frozen_string_literal: true

require 'fast_spec_helper'
require 'rspec-parameterized'

describe Gitlab::Ci::Pipeline::Expression::Lexeme::And do
  let(:left) { double('left', evaluate: nil) }
  let(:right) { double('right', evaluate: nil) }

  describe '.build' do
    it 'creates a new instance of the token' do
      expect(described_class.build('&&', left, right)).to be_a(described_class)
    end

    context 'with non-evaluable operands' do
      let(:left)  { double('left') }
      let(:right) { double('right') }

      it 'raises an operator error' do
        expect { described_class.build('&&', left, right) }.to raise_error Gitlab::Ci::Pipeline::Expression::Lexeme::Operator::OperatorError
      end
    end
  end

  describe '.type' do
    it 'is an operator' do
      expect(described_class.type).to eq :operator
    end
  end

  describe '.precedence' do
    it 'has a precedence' do
      expect(described_class.precedence).to be_an Integer
    end
  end

  describe '#evaluate' do
    let(:operator) { described_class.new(left, right) }

    subject { operator.evaluate }

    before do
      allow(left).to receive(:evaluate).and_return(left_value)
      allow(right).to receive(:evaluate).and_return(right_value)
    end

    context 'when left and right are truthy' do
      where(:left_value, :right_value) do
        [true, 1, 'a'].permutation(2).to_a
      end

      with_them do
        it { is_expected.to be_truthy }
        it { is_expected.to eq(right_value) }
      end
    end

    context 'when left or right is falsey' do
      where(:left_value, :right_value) do
        [true, false, nil].permutation(2).to_a
      end

      with_them do
        it { is_expected.to be_falsey }
      end
    end

    context 'when left and right are falsey' do
      where(:left_value, :right_value) do
        [false, nil].permutation(2).to_a
      end

      with_them do
        it { is_expected.to be_falsey }
        it { is_expected.to eq(left_value) }
      end
    end
  end
end