From 4d3acd8faee57a38d08ae7d9c62154ff5806350a Mon Sep 17 00:00:00 2001 From: Joe Topjian Date: Tue, 4 Sep 2012 17:16:05 +0000 Subject: Added tests for sections with colons --- spec/unit/puppet/provider/ini_setting/ruby_spec.rb | 107 +++++++++++++++++++++ 1 file changed, 107 insertions(+) diff --git a/spec/unit/puppet/provider/ini_setting/ruby_spec.rb b/spec/unit/puppet/provider/ini_setting/ruby_spec.rb index d26c78d..2dbbf55 100644 --- a/spec/unit/puppet/provider/ini_setting/ruby_spec.rb +++ b/spec/unit/puppet/provider/ini_setting/ruby_spec.rb @@ -43,6 +43,8 @@ master = true foo= foovalue2 baz=bazvalue url = http://192.168.1.1:8080 +[section:sub] +subby=bar #another comment ; yet another comment EOS @@ -67,6 +69,36 @@ master = true foo= foovalue2 baz=bazvalue url = http://192.168.1.1:8080 +yahoo = yippee +[section:sub] +subby=bar + #another comment + ; yet another comment + EOS +) + end + + it "should add a missing setting to the correct section with colon" do + resource = Puppet::Type::Ini_setting.new(common_params.merge( + :section => 'section:sub', :setting => 'yahoo', :value => 'yippee')) + provider = described_class.new(resource) + provider.exists?.should == false + provider.create + validate_file(<<-EOS +# This is a comment +[section1] +; This is also a comment +foo=foovalue + +bar = barvalue +master = true +[section2] + +foo= foovalue2 +baz=bazvalue +url = http://192.168.1.1:8080 +[section:sub] +subby=bar #another comment ; yet another comment yahoo = yippee @@ -93,6 +125,35 @@ master = true foo= foovalue2 baz = bazvalue2 url = http://192.168.1.1:8080 +[section:sub] +subby=bar + #another comment + ; yet another comment + EOS + ) + end + + it "should modify an existing setting with a different value - with colon in section" do + resource = Puppet::Type::Ini_setting.new(common_params.merge( + :section => 'section:sub', :setting => 'subby', :value => 'foo')) + provider = described_class.new(resource) + provider.exists?.should == false + provider.create + validate_file(<<-EOS +# This is a comment +[section1] +; This is also a comment +foo=foovalue + +bar = barvalue +master = true +[section2] + +foo= foovalue2 +baz=bazvalue +url = http://192.168.1.1:8080 +[section:sub] +subby = foo #another comment ; yet another comment EOS @@ -119,6 +180,8 @@ master = true foo= foovalue2 baz=bazvalue url = http://192.168.0.1:8080 +[section:sub] +subby=bar #another comment ; yet another comment EOS @@ -151,6 +214,8 @@ master = true foo= foovalue2 baz=bazvalue url = http://192.168.1.1:8080 +[section:sub] +subby=bar #another comment ; yet another comment @@ -160,6 +225,36 @@ huzzah = shazaam ) end + it "should add a new section if the section does not exist - with colon" do + resource = Puppet::Type::Ini_setting.new(common_params.merge( + :section => "section:subsection", :setting => 'huzzah', :value => 'shazaam')) + provider = described_class.new(resource) + provider.exists?.should == false + provider.create + validate_file(<<-EOS +# This is a comment +[section1] +; This is also a comment +foo=foovalue + +bar = barvalue +master = true +[section2] + +foo= foovalue2 +baz=bazvalue +url = http://192.168.1.1:8080 +[section:sub] +subby=bar + #another comment + ; yet another comment + +[section:subsection] +huzzah = shazaam + EOS + ) + end + it "should add a new section if no sections exists" do resource = Puppet::Type::Ini_setting.new(common_params.merge( :section => "section1", :setting => 'setting1', :value => 'hellowworld', :path => emptyfile)) @@ -172,6 +267,18 @@ setting1 = hellowworld ", emptyfile) end + it "should add a new section with colon if no sections exists" do + resource = Puppet::Type::Ini_setting.new(common_params.merge( + :section => "section:subsection", :setting => 'setting1', :value => 'hellowworld', :path => emptyfile)) + provider = described_class.new(resource) + provider.exists?.should == false + provider.create + validate_file(" +[section:subsection] +setting1 = hellowworld +", emptyfile) + end + it "should be able to handle variables of any type" do resource = Puppet::Type::Ini_setting.new(common_params.merge( :section => "section1", :setting => 'master', :value => true)) -- cgit v1.2.3