forked from redhat-openstack/openstack-puppet-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from bmjen/ensure-newline
readd ensure_newline param and tests for backwards compatibility
- Loading branch information
Showing
4 changed files
with
138 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
require 'spec_helper_acceptance' | ||
|
||
describe 'concat ensure_newline parameter' do | ||
basedir = default.tmpdir('concat') | ||
context '=> false' do | ||
before(:all) do | ||
pp = <<-EOS | ||
file { '#{basedir}': | ||
ensure => directory | ||
} | ||
EOS | ||
|
||
apply_manifest(pp) | ||
end | ||
pp = <<-EOS | ||
concat { '#{basedir}/file': | ||
ensure_newline => false, | ||
} | ||
concat::fragment { '1': | ||
target => '#{basedir}/file', | ||
content => '1', | ||
} | ||
concat::fragment { '2': | ||
target => '#{basedir}/file', | ||
content => '2', | ||
} | ||
EOS | ||
|
||
it 'applies the manifest twice with no stderr' do | ||
apply_manifest(pp, :catch_failures => true) | ||
apply_manifest(pp, :catch_changes => true) | ||
end | ||
|
||
describe file("#{basedir}/file") do | ||
it { should be_file } | ||
its(:content) { should match '12' } | ||
end | ||
end | ||
|
||
context '=> true' do | ||
pp = <<-EOS | ||
concat { '#{basedir}/file': | ||
ensure_newline => true, | ||
} | ||
concat::fragment { '1': | ||
target => '#{basedir}/file', | ||
content => '1', | ||
} | ||
concat::fragment { '2': | ||
target => '#{basedir}/file', | ||
content => '2', | ||
} | ||
EOS | ||
|
||
it 'applies the manifest twice with no stderr' do | ||
apply_manifest(pp, :catch_failures => true) | ||
apply_manifest(pp, :catch_changes => true) | ||
end | ||
|
||
describe file("#{basedir}/file") do | ||
it { should be_file } | ||
its(:content) { | ||
should match /1\n2\n/ | ||
} | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters