fuel-library/deployment/puppet/concat/spec/acceptance/newline_spec.rb
Stanislaw Bogatkin 4b68e7b674 Sync puppet concat module to v1.1.0 from upstream
v1.1.0 sha1: a50226b4ec5d6f2ba0df9e4f8a31df3e1160ff89
Implements: blueprint merge-openstack-puppet-modules

Change-Id: I8ac6ed2a802628025b51a1c5479661f7e0e946b7
2014-06-19 18:16:13 +04:00

58 lines
1.5 KiB
Ruby

require 'spec_helper_acceptance'
describe 'concat ensure_newline parameter' do
context '=> false' do
pp = <<-EOS
concat { '/tmp/concat/file':
ensure_newline => false,
}
concat::fragment { '1':
target => '/tmp/concat/file',
content => '1',
}
concat::fragment { '2':
target => '/tmp/concat/file',
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
describe file('/tmp/concat/file') do
it { should be_file }
it { should contain '12' }
end
end
context '=> true' do
pp = <<-EOS
concat { '/tmp/concat/file':
ensure_newline => true,
}
concat::fragment { '1':
target => '/tmp/concat/file',
content => '1',
}
concat::fragment { '2':
target => '/tmp/concat/file',
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("")
#XXX ensure_newline => true causes changes on every run because the files
#are modified in place.
end
describe file('/tmp/concat/file') do
it { should be_file }
it { should contain "1\n2\n" }
end
end
end