4b68e7b674
v1.1.0 sha1: a50226b4ec5d6f2ba0df9e4f8a31df3e1160ff89 Implements: blueprint merge-openstack-puppet-modules Change-Id: I8ac6ed2a802628025b51a1c5479661f7e0e946b7
98 lines
2.5 KiB
Ruby
98 lines
2.5 KiB
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'concat warn =>' do
|
|
context 'true should enable default warning message' do
|
|
pp = <<-EOS
|
|
concat { '/tmp/concat/file':
|
|
warn => true,
|
|
}
|
|
|
|
concat::fragment { '1':
|
|
target => '/tmp/concat/file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
|
|
concat::fragment { '2':
|
|
target => '/tmp/concat/file',
|
|
content => '2',
|
|
order => '02',
|
|
}
|
|
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 '# This file is managed by Puppet. DO NOT EDIT.' }
|
|
it { should contain '1' }
|
|
it { should contain '2' }
|
|
end
|
|
end
|
|
context 'false should not enable default warning message' do
|
|
pp = <<-EOS
|
|
concat { '/tmp/concat/file':
|
|
warn => false,
|
|
}
|
|
|
|
concat::fragment { '1':
|
|
target => '/tmp/concat/file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
|
|
concat::fragment { '2':
|
|
target => '/tmp/concat/file',
|
|
content => '2',
|
|
order => '02',
|
|
}
|
|
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_not contain '# This file is managed by Puppet. DO NOT EDIT.' }
|
|
it { should contain '1' }
|
|
it { should contain '2' }
|
|
end
|
|
end
|
|
context '# foo should overide default warning message' do
|
|
pp = <<-EOS
|
|
concat { '/tmp/concat/file':
|
|
warn => '# foo',
|
|
}
|
|
|
|
concat::fragment { '1':
|
|
target => '/tmp/concat/file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
|
|
concat::fragment { '2':
|
|
target => '/tmp/concat/file',
|
|
content => '2',
|
|
order => '02',
|
|
}
|
|
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 '# foo' }
|
|
it { should contain '1' }
|
|
it { should contain '2' }
|
|
end
|
|
end
|
|
end
|