summaryrefslogtreecommitdiffstats
path: root/spec/unit
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2011-06-06 16:19:19 -0700
committerMatt Robinson <matt@puppetlabs.com>2011-06-06 16:19:19 -0700
commite0573603c5780e79c2461ece604c6388e4222504 (patch)
tree6e09e2fcbc4db7447dedc939fb4231c97423718e /spec/unit
parent4801e10c81264b20c2d35b0d44c10cfb0668d1b9 (diff)
parent4922409a2bdf3ad6a094762c9e2e60371ed16a1b (diff)
downloadpuppet-e0573603c5780e79c2461ece604c6388e4222504.tar.gz
puppet-e0573603c5780e79c2461ece604c6388e4222504.tar.xz
puppet-e0573603c5780e79c2461ece604c6388e4222504.zip
Merge branch '2.7.x'
* 2.7.x: (#7624) Manually fetch all properties in instances. (#7193) Fix path issues with acceptance tests that call old shell tests (#7632) Make secret_agent application compatible with secret_agent face (#7624) Auditing should not be enabled by default for purged resources. maint: Confine augeas specs to require the augeas feature (#2728) Add diff output for changes made by Augeas provider
Diffstat (limited to 'spec/unit')
-rwxr-xr-xspec/unit/provider/augeas/augeas_spec.rb107
1 files changed, 106 insertions, 1 deletions
diff --git a/spec/unit/provider/augeas/augeas_spec.rb b/spec/unit/provider/augeas/augeas_spec.rb
index 5bb98eadf..434a99d70 100755
--- a/spec/unit/provider/augeas/augeas_spec.rb
+++ b/spec/unit/provider/augeas/augeas_spec.rb
@@ -4,7 +4,6 @@ require 'spec_helper'
provider_class = Puppet::Type.type(:augeas).provider(:augeas)
describe provider_class do
-
describe "command parsing" do
before do
@resource = stub("resource")
@@ -252,6 +251,7 @@ describe provider_class do
it "should handle no filters" do
resource = stub("resource")
resource.stubs(:[]).returns(false).then.returns("").then.returns("")
+ resource.stubs(:noop?).returns(false)
augeas_stub = stub("augeas", :match => ["set", "of", "values"])
augeas_stub.stubs("close")
provider = provider_class.new(resource)
@@ -263,6 +263,7 @@ describe provider_class do
it "should return true when a get filter matches" do
resource = stub("resource")
resource.stubs(:[]).returns(false).then.returns("get path == value").then.returns("")
+ resource.stubs(:noop?).returns(false)
provider = provider_class.new(resource)
augeas_stub = stub("augeas", :get => "value")
augeas_stub.stubs("close")
@@ -285,6 +286,7 @@ describe provider_class do
it "should return true when a match filter matches" do
resource = stub("resource")
resource.stubs(:[]).returns(false).then.returns("match path size == 3").then.returns("")
+ resource.stubs(:noop?).returns(false)
provider = provider_class.new(resource)
augeas_stub = stub("augeas", :match => ["set", "of", "values"])
augeas_stub.stubs("close")
@@ -320,6 +322,7 @@ describe provider_class do
it "should return true when a size != the provided value" do
resource = stub("resource")
resource.stubs(:[]).returns(false).then.returns("match path size != 17").then.returns("")
+ resource.stubs(:noop?).returns(false)
provider = provider_class.new(resource)
augeas_stub = stub("augeas", :match => ["set", "of", "values"])
augeas_stub.stubs("close")
@@ -339,6 +342,107 @@ describe provider_class do
provider.stubs(:get_augeas_version).returns("0.3.5")
provider.need_to_run?.should == false
end
+
+ # Ticket 2728 (diff files)
+ describe "and Puppet[:show_diff] is set", :if => Puppet.features.augeas? do
+ before do
+ Puppet[:show_diff] = true
+
+ @resource = Puppet::Type.type(:augeas).new(:name => "test")
+ @provider = provider_class.new(@resource)
+ @augeas_stub = stub("augeas")
+ @provider.aug = @augeas_stub
+
+ @augeas_stub.stubs("get").with("/augeas/version").returns("0.7.2")
+ @augeas_stub.stubs(:set).returns(true)
+ @augeas_stub.stubs(:save).returns(true)
+ end
+
+ it "should call diff when a file is shown to have been changed" do
+ file = "/etc/hosts"
+
+ @resource[:context] = "/files"
+ @resource[:changes] = ["set #{file}/foo bar"]
+
+ @augeas_stub.stubs(:match).with("/augeas/events/saved").returns(["/augeas/events/saved"])
+ @augeas_stub.stubs(:get).with("/augeas/events/saved").returns(["/files#{file}"])
+ @augeas_stub.expects(:set).with("/augeas/save", "newfile")
+ @augeas_stub.expects(:close).never()
+
+ @provider.expects("diff").with("#{file}", "#{file}.augnew").returns("")
+ @provider.should be_need_to_run
+ end
+
+ it "should call diff for each file thats changed" do
+ file1 = "/etc/hosts"
+ file2 = "/etc/resolv.conf"
+
+ @resource[:context] = "/files"
+ @resource[:changes] = ["set #{file1}/foo bar", "set #{file2}/baz biz"]
+
+ @augeas_stub.stubs(:match).with("/augeas/events/saved").returns(["/augeas/events/saved[1]", "/augeas/events/saved[2]"])
+ @augeas_stub.stubs(:get).with("/augeas/events/saved[1]").returns(["/files#{file1}"])
+ @augeas_stub.stubs(:get).with("/augeas/events/saved[2]").returns(["/files#{file2}"])
+ @augeas_stub.expects(:set).with("/augeas/save", "newfile")
+ @augeas_stub.expects(:close).never()
+
+ @provider.expects(:diff).with("#{file1}", "#{file1}.augnew").returns("")
+ @provider.expects(:diff).with("#{file2}", "#{file2}.augnew").returns("")
+ @provider.should be_need_to_run
+ end
+
+ describe "and resource[:root] is set" do
+ it "should call diff when a file is shown to have been changed" do
+ root = "/tmp/foo"
+ file = "/etc/hosts"
+
+ @resource[:context] = "/files"
+ @resource[:changes] = ["set #{file}/foo bar"]
+ @resource[:root] = root
+
+ @augeas_stub.stubs(:match).with("/augeas/events/saved").returns(["/augeas/events/saved"])
+ @augeas_stub.stubs(:get).with("/augeas/events/saved").returns(["/files#{file}"])
+ @augeas_stub.expects(:set).with("/augeas/save", "newfile")
+ @augeas_stub.expects(:close).never()
+
+ @provider.expects(:diff).with("#{root}#{file}", "#{root}#{file}.augnew").returns("")
+ @provider.should be_need_to_run
+ end
+ end
+
+ it "should not call diff if no files change" do
+ file = "/etc/hosts"
+
+ @resource[:context] = "/files"
+ @resource[:changes] = ["set #{file}/foo bar"]
+
+ @augeas_stub.stubs(:match).with("/augeas/events/saved").returns([])
+ @augeas_stub.expects(:set).with("/augeas/save", "newfile")
+ @augeas_stub.expects(:get).with("/augeas/events/saved").never()
+ @augeas_stub.expects(:close)
+
+ @provider.expects(:diff).never()
+ @provider.should_not be_need_to_run
+ end
+
+ it "should cleanup when in noop mode" do
+ file = "/etc/hosts"
+
+ @resource[:noop] = true
+ @resource[:context] = "/files"
+ @resource[:changes] = ["set #{file}/foo bar"]
+
+ @augeas_stub.stubs(:match).with("/augeas/events/saved").returns(["/augeas/events/saved"])
+ @augeas_stub.stubs(:get).with("/augeas/events/saved").returns(["/files#{file}"])
+ @augeas_stub.expects(:set).with("/augeas/save", "newfile")
+ @augeas_stub.expects(:close)
+
+ File.expects(:delete).with(file + ".augnew")
+
+ @provider.expects(:diff).with("#{file}", "#{file}.augnew").returns("")
+ @provider.should be_need_to_run
+ end
+ end
end
describe "augeas execution integration" do
@@ -349,6 +453,7 @@ describe provider_class do
@augeas = stub("augeas")
@provider.aug= @augeas
@provider.stubs(:get_augeas_version).returns("0.3.5")
+ @augeas.stubs(:match).with("/augeas/events/saved")
end
it "should handle set commands" do