summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Topjian <joe@topjian.net>2012-09-04 17:16:05 +0000
committerJoe Topjian <joe@topjian.net>2012-09-04 17:16:05 +0000
commit4d3acd8faee57a38d08ae7d9c62154ff5806350a (patch)
treef5df1b50be72705c7c24638a014555ced1d6979c
parent5de1731151d0e4b50c99bb0adcb44d953e18d2c8 (diff)
downloadpuppet-inifile-4d3acd8faee57a38d08ae7d9c62154ff5806350a.tar.gz
puppet-inifile-4d3acd8faee57a38d08ae7d9c62154ff5806350a.tar.bz2
Added tests for sections with colons
-rw-r--r--spec/unit/puppet/provider/ini_setting/ruby_spec.rb107
1 files changed, 107 insertions, 0 deletions
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))