summaryrefslogtreecommitdiffstats
path: root/spec/unit/node/facts.rb
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-06-23 15:51:08 -0700
committerMarkus Roberts <Markus@reality.com>2010-06-23 22:27:29 -0700
commit51b70c05167399eb2274fc1add18b6b18d31429d (patch)
tree1a33b11f0f589d6f5cd806d6da9de317887ca0e6 /spec/unit/node/facts.rb
parent9958c805dd90acadbb56ed3095e665d8afa990cd (diff)
downloadpuppet-51b70c05167399eb2274fc1add18b6b18d31429d.tar.gz
puppet-51b70c05167399eb2274fc1add18b6b18d31429d.tar.xz
puppet-51b70c05167399eb2274fc1add18b6b18d31429d.zip
[#3994] rename the specs to have _spec.rb at the end
Some spec files like active_record.rb had names that would confuse the load path and get loaded instead of the intended implentation when the spec was run from the same directory as the file. Author: Matt Robinson <matt@puppetlabs.com> Date: Fri Jun 11 15:29:33 2010 -0700
Diffstat (limited to 'spec/unit/node/facts.rb')
-rwxr-xr-xspec/unit/node/facts.rb102
1 files changed, 0 insertions, 102 deletions
diff --git a/spec/unit/node/facts.rb b/spec/unit/node/facts.rb
deleted file mode 100755
index 43532cc53..000000000
--- a/spec/unit/node/facts.rb
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/usr/bin/env ruby
-
-require File.dirname(__FILE__) + '/../../spec_helper'
-
-require 'puppet/node/facts'
-
-describe Puppet::Node::Facts, "when indirecting" do
- before do
- @facts = Puppet::Node::Facts.new("me")
- end
-
- it "should be able to convert all fact values to strings" do
- @facts.values["one"] = 1
- @facts.stringify
- @facts.values["one"].should == "1"
- end
-
- it "should add the node's certificate name as the 'clientcert' fact when adding local facts" do
- @facts.add_local_facts
- @facts.values["clientcert"].should == Puppet.settings[:certname]
- end
-
- it "should add the Puppet version as a 'clientversion' fact when adding local facts" do
- @facts.add_local_facts
- @facts.values["clientversion"].should == Puppet.version.to_s
- end
-
- it "should add the current environment as a fact if one is not set when adding local facts" do
- @facts.add_local_facts
- @facts.values["environment"].should == Puppet[:environment]
- end
-
- it "should not replace any existing environment fact when adding local facts" do
- @facts.values["environment"] = "foo"
- @facts.add_local_facts
- @facts.values["environment"].should == "foo"
- end
-
- it "should be able to downcase fact values" do
- Puppet.settings.stubs(:value).returns "eh"
- Puppet.settings.expects(:value).with(:downcasefacts).returns true
-
- @facts.values["one"] = "Two"
-
- @facts.downcase_if_necessary
- @facts.values["one"].should == "two"
- end
-
- it "should only try to downcase strings" do
- Puppet.settings.stubs(:value).returns "eh"
- Puppet.settings.expects(:value).with(:downcasefacts).returns true
-
- @facts.values["now"] = Time.now
-
- @facts.downcase_if_necessary
- @facts.values["now"].should be_instance_of(Time)
- end
-
- it "should not downcase facts if not configured to do so" do
- Puppet.settings.stubs(:value).returns "eh"
- Puppet.settings.expects(:value).with(:downcasefacts).returns false
-
- @facts.values["one"] = "Two"
- @facts.downcase_if_necessary
- @facts.values["one"].should == "Two"
- end
-
- describe "when indirecting" do
- before do
- @indirection = stub 'indirection', :request => mock('request'), :name => :facts
-
- # We have to clear the cache so that the facts ask for our indirection stub,
- # instead of anything that might be cached.
- Puppet::Util::Cacher.expire
-
- @facts = Puppet::Node::Facts.new("me", "one" => "two")
- end
-
- it "should redirect to the specified fact store for retrieval" do
- Puppet::Node::Facts.stubs(:indirection).returns(@indirection)
- @indirection.expects(:find)
- Puppet::Node::Facts.find(:my_facts)
- end
-
- it "should redirect to the specified fact store for storage" do
- Puppet::Node::Facts.stubs(:indirection).returns(@indirection)
- @indirection.expects(:save)
- @facts.save
- end
-
- it "should default to the 'facter' terminus" do
- Puppet::Node::Facts.indirection.terminus_class.should == :facter
- end
- end
-
- describe "when storing and retrieving" do
- it "should add metadata to the facts" do
- facts = Puppet::Node::Facts.new("me", "one" => "two", "three" => "four")
- facts.values[:_timestamp].should be_instance_of(Time)
- end
- end
-end