summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/node/exec_spec.rb
blob: 09f13ab90d3ad3fc4236234e29faf14ec36561f0 (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../../spec_helper'

require 'puppet/indirector/node/exec'

describe Puppet::Node::Exec do
    before do
        @indirection = mock 'indirection'
        Puppet.settings.stubs(:value).with(:external_nodes).returns("/echo")
        @searcher = Puppet::Node::Exec.new
    end

    describe "when constructing the command to run" do
        it "should use the external_node script as the command" do
            Puppet.expects(:[]).with(:external_nodes).returns("/bin/echo")
            @searcher.command.should == %w{/bin/echo}
        end

        it "should throw an exception if no external node command is set" do
            Puppet.expects(:[]).with(:external_nodes).returns("none")
            proc { @searcher.find(stub('request', :key => "foo")) }.should raise_error(ArgumentError)
        end
    end

    describe "when handling the results of the command" do
        before do
            @node = stub 'node', :fact_merge => nil
            @name = "yay"
            Puppet::Node.expects(:new).with(@name).returns(@node)
            @result = {}
            # Use a local variable so the reference is usable in the execute() definition.
            result = @result
            @searcher.meta_def(:execute) do |command|
                return YAML.dump(result)
            end

            @request = stub 'request', :key => @name
        end

        it "should translate the YAML into a Node instance" do
            # Use an empty hash
            @searcher.find(@request).should equal(@node)
        end

        it "should set the resulting parameters as the node parameters" do
            @result[:parameters] = {"a" => "b", "c" => "d"}
            @node.expects(:parameters=).with "a" => "b", "c" => "d"
            @searcher.find(@request)
        end

        it "should set the resulting classes as the node classes" do
            @result[:classes] = %w{one two}
            @node.expects(:classes=).with %w{one two}
            @searcher.find(@request)
        end

        it "should merge the node's facts with its parameters" do
            @node.expects(:fact_merge)
            @searcher.find(@request)
        end

        it "should set the node's environment if one is provided" do
            @result[:environment] = "yay"
            @node.expects(:environment=).with "yay"
            @searcher.find(@request)
        end
    end
end