File: fact_rabbitmq_version_spec.rb

package info (click to toggle)
puppet-module-puppetlabs-rabbitmq 8.5.0-10
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,192 kB
  • sloc: ruby: 5,227; sh: 10; makefile: 4
file content (30 lines) | stat: -rw-r--r-- 1,021 bytes parent folder | download | duplicates (4)
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
require 'spec_helper'

describe Facter::Util::Fact do
  before do
    Facter.clear
  end

  describe 'rabbitmq_version' do
    context 'with value' do
      it do
        Facter::Util::Resolution.expects(:which).with('rabbitmqadmin').returns(true)
        Facter::Core::Execution.expects(:execute).with('rabbitmqadmin --version 2>&1').returns('rabbitmqadmin 3.6.0')
        expect(Facter.fact(:rabbitmq_version).value).to eq('3.6.0')
      end
    end
    context 'with invalid value' do
      it do
        Facter::Util::Resolution.expects(:which).with('rabbitmqadmin').returns(true)
        Facter::Core::Execution.expects(:execute).with('rabbitmqadmin --version 2>&1').returns('rabbitmqadmin %%VSN%%')
        expect(Facter.fact(:rabbitmq_version).value).to be_nil
      end
    end
    context 'rabbitmqadmin is not in path' do
      it do
        Facter::Util::Resolution.expects(:which).with('rabbitmqadmin').returns(false)
        expect(Facter.fact(:rabbitmq_version).value).to be_nil
      end
    end
  end
end