module-concat/spec/acceptance/warn_spec.rb

98 lines
2.5 KiB
Ruby
Raw Normal View History

require 'spec_helper_acceptance'
2013-08-08 17:44:31 +02:00
describe 'concat warn =>' do
context 'true should enable default warning message' do
2013-11-14 04:28:27 +01:00
pp = <<-EOS
2013-11-06 04:40:03 +01:00
concat { '/tmp/concat/file':
2013-08-08 17:44:31 +02:00
warn => true,
}
concat::fragment { '1':
2013-11-06 04:40:03 +01:00
target => '/tmp/concat/file',
2013-08-08 17:44:31 +02:00
content => '1',
order => '01',
}
concat::fragment { '2':
2013-11-06 04:40:03 +01:00
target => '/tmp/concat/file',
2013-08-08 17:44:31 +02:00
content => '2',
order => '02',
}
2013-11-14 04:28:27 +01:00
EOS
2013-08-08 17:44:31 +02: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("")
2013-08-08 17:44:31 +02:00
end
2013-11-06 04:40:03 +01:00
describe file('/tmp/concat/file') do
2013-08-08 17:44:31 +02:00
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
2013-08-08 17:44:31 +02:00
end