summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/validate_cmd_spec.rb
blob: 69ea7f4960aa00f9acb04430f9029ba44cf46aeb (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
80
81
require 'spec_helper'

describe Puppet::Parser::Functions.function(:validate_cmd) do
  let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

  # The subject of these examplres is the method itself.
  subject do
    # This makes sure the function is loaded within each test
    function_name = Puppet::Parser::Functions.function(:validate_cmd)
    scope.method(function_name)
  end

  context 'Using Puppet::Parser::Scope.new' do

    describe 'Garbage inputs' do
      inputs = [
        [ nil ],
        [ [ nil ] ],
        [ { 'foo' => 'bar' } ],
        [ { } ],
        [ '' ],
        [ "one", "one", "MSG to User", "4th arg" ],
      ]

      inputs.each do |input|
        it "validate_cmd(#{input.inspect}) should fail" do
          expect { subject.call [input] }.to raise_error Puppet::ParseError
        end
      end
    end

    describe 'Valid inputs' do
      inputs = [
        [ '/full/path/to/something', '/bin/echo' ],
        [ '/full/path/to/something', '/bin/cat' ],
      ]

      inputs.each do |input|
        it "validate_cmd(#{input.inspect}) should not fail" do
          expect { subject.call input }.not_to raise_error
        end
      end
    end

    describe "Valid inputs which should raise an exception without a message" do
      # The intent here is to make sure valid inputs raise exceptions when they
      # don't specify an error message to display.  This is the behvior in
      # 2.2.x and prior.
      inputs = [
        [ "hello", "/bin/false" ],
      ]

      inputs.each do |input|
        it "validate_cmd(#{input.inspect}) should fail" do
          expect { subject.call input }.to raise_error /validate_cmd.*?failed to validate content with command/
        end
      end
    end

    describe "Nicer Error Messages" do
      # The intent here is to make sure the function returns the 3rd argument
      # in the exception thrown
      inputs = [
        [ "hello", [ "bye", "later", "adios" ], "MSG to User" ],
        [ "greetings", "salutations", "Error, greetings does not match salutations" ],
      ]

      inputs.each do |input|
        it "validate_cmd(#{input.inspect}) should fail" do
          expect { subject.call input }.to raise_error /#{input[2]}/
        end
      end
    end

    describe "Test output message" do
      it "validate_cmd('whatever', 'kthnksbye') should fail" do
          expect { subject.call ['whatever', 'kthnksbye'] }.to raise_error /kthnksbye.* returned 1/
      end
    end
  end
end