2014-02-12 22:41:41 +01:00
|
|
|
require 'spec_helper_acceptance'
|
|
|
|
|
|
|
|
describe 'concat ensure_newline parameter' do
|
2014-02-27 23:52:53 +01:00
|
|
|
let :basedir do
|
|
|
|
default.tmpdir('concat')
|
|
|
|
end
|
2014-02-12 22:41:41 +01:00
|
|
|
context '=> false' do
|
|
|
|
pp = <<-EOS
|
|
|
|
include concat::setup
|
2014-02-27 23:52:53 +01:00
|
|
|
concat { '#{basedir}/file':
|
2014-02-12 22:41:41 +01:00
|
|
|
ensure_newline => false,
|
|
|
|
}
|
|
|
|
concat::fragment { '1':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
content => '1',
|
|
|
|
}
|
|
|
|
concat::fragment { '2':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
content => '2',
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
|
|
|
|
it 'applies the manifest twice with no stderr' do
|
|
|
|
expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
|
|
|
|
expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
|
|
|
|
end
|
|
|
|
|
2014-02-27 23:52:53 +01:00
|
|
|
describe file("#{basedir}/file") do
|
2014-02-12 22:41:41 +01:00
|
|
|
it { should be_file }
|
|
|
|
it { should contain '12' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-23 02:15:56 +01:00
|
|
|
#context '=> true' do
|
|
|
|
# pp = <<-EOS
|
|
|
|
# include concat::setup
|
2014-02-27 23:52:53 +01:00
|
|
|
# concat { '#{basedir}/file':
|
2014-02-23 02:15:56 +01:00
|
|
|
# ensure_newline => true,
|
|
|
|
# }
|
|
|
|
# concat::fragment { '1':
|
2014-02-27 23:52:53 +01:00
|
|
|
# target => '#{basedir}/file',
|
2014-02-23 02:15:56 +01:00
|
|
|
# content => '1',
|
|
|
|
# }
|
|
|
|
# concat::fragment { '2':
|
2014-02-27 23:52:53 +01:00
|
|
|
# target => '#{basedir}/file',
|
2014-02-23 02:15:56 +01:00
|
|
|
# content => '2',
|
|
|
|
# }
|
|
|
|
# EOS
|
2014-02-12 22:41:41 +01:00
|
|
|
|
2014-02-23 02:15:56 +01:00
|
|
|
# it 'applies the manifest twice with no stderr' do
|
|
|
|
# expect(apply_manifest(pp, :catch_failures => true).stderr).to eq("")
|
|
|
|
# expect(apply_manifest(pp, :catch_changes => true).stderr).to eq("")
|
|
|
|
# #XXX ensure_newline => true causes changes on every run because the files
|
|
|
|
# #are modified in place.
|
|
|
|
# end
|
2014-02-12 22:41:41 +01:00
|
|
|
|
2014-02-27 23:52:53 +01:00
|
|
|
# describe file("#{basedir}/file") do
|
2014-02-23 02:15:56 +01:00
|
|
|
# it { should be_file }
|
|
|
|
# it { should contain "1\n2\n" }
|
|
|
|
# end
|
|
|
|
#end
|
2014-02-12 22:41:41 +01:00
|
|
|
end
|