2014-02-12 22:41:41 +01:00
|
|
|
require 'spec_helper_acceptance'
|
|
|
|
|
|
|
|
describe 'concat warn =>' 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 'true should enable default warning message' 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
|
|
|
warn => true,
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '1':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
content => '1',
|
|
|
|
order => '01',
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '2':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
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
|
|
|
|
|
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 '# 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
|
|
|
|
include concat::setup
|
2014-02-27 23:52:53 +01:00
|
|
|
concat { '#{basedir}/file':
|
2014-02-12 22:41:41 +01:00
|
|
|
warn => 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',
|
|
|
|
order => '01',
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '2':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
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
|
|
|
|
|
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_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
|
|
|
|
include concat::setup
|
2014-02-27 23:52:53 +01:00
|
|
|
concat { '#{basedir}/file':
|
2014-02-12 22:41:41 +01:00
|
|
|
warn => '# foo',
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '1':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
content => '1',
|
|
|
|
order => '01',
|
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { '2':
|
2014-02-27 23:52:53 +01:00
|
|
|
target => '#{basedir}/file',
|
2014-02-12 22:41:41 +01:00
|
|
|
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
|
|
|
|
|
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 '# foo' }
|
|
|
|
it { should contain '1' }
|
|
|
|
it { should contain '2' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|