blob: 607fdefdfd0f0f324c2518f426282b9c3e88d744 (
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
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/indirector/node/plain'
describe Puppet::Node::Plain do
let(:nodename) { "mynode" }
let(:fact_values) { {:afact => "a value"} }
let(:facts) { Puppet::Node::Facts.new(nodename, fact_values) }
let(:environment) { Puppet::Node::Environment.create(:myenv, []) }
let(:request) { Puppet::Indirector::Request.new(:node, :find, nodename, nil, :environment => environment) }
let(:node_indirection) { Puppet::Node::Plain.new }
before do
Puppet::Node::Facts.indirection.expects(:find).with(nodename, :environment => environment).returns(facts)
end
it "merges facts into the node" do
node_indirection.find(request).parameters.should include(fact_values)
end
it "should set the node environment from the request" do
node_indirection.find(request).environment.should == environment
end
end
|