d45f1e60d7
Solaris doesn't support multi-line grep. More fixes for install on windows.
209 lines
5.7 KiB
Ruby
209 lines
5.7 KiB
Ruby
require 'spec_helper_acceptance'
|
|
|
|
case fact('osfamily')
|
|
when 'AIX'
|
|
username = 'root'
|
|
groupname = 'system'
|
|
scriptname = 'concatfragments.sh'
|
|
when 'Darwin'
|
|
username = 'root'
|
|
groupname = 'wheel'
|
|
scriptname = 'concatfragments.sh'
|
|
when 'windows'
|
|
username = 'Administrator'
|
|
groupname = 'Administrators'
|
|
scriptname = 'concatfragments.rb'
|
|
when 'Solaris'
|
|
username = 'root'
|
|
groupname = 'root'
|
|
scriptname = 'concatfragments.rb'
|
|
else
|
|
username = 'root'
|
|
groupname = 'root'
|
|
scriptname = 'concatfragments.sh'
|
|
end
|
|
|
|
describe 'basic concat test' do
|
|
basedir = default.tmpdir('concat')
|
|
safe_basedir = basedir.gsub('/','_')
|
|
|
|
shared_examples 'successfully_applied' do |pp|
|
|
it 'applies the manifest twice with no stderr' do
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe file("#{default['puppetvardir']}/concat") do
|
|
it { should be_directory }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 755
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/bin") do
|
|
it { should be_directory }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 755
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/bin/#{scriptname}") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 755
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file") do
|
|
it { should be_directory }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 750
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file/fragments") do
|
|
it { should be_directory }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 750
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file/fragments.concat") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 640
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file/fragments.concat.out") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 640
|
|
}
|
|
end
|
|
end
|
|
|
|
context 'owner/group root' do
|
|
before(:all) do
|
|
pp = <<-EOS
|
|
file { '#{basedir}':
|
|
ensure => directory,
|
|
}
|
|
EOS
|
|
apply_manifest(pp)
|
|
end
|
|
pp = <<-EOS
|
|
concat { '#{basedir}/file':
|
|
owner => '#{username}',
|
|
group => '#{groupname}',
|
|
mode => '0644',
|
|
}
|
|
|
|
concat::fragment { '1':
|
|
target => '#{basedir}/file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
|
|
concat::fragment { '2':
|
|
target => '#{basedir}/file',
|
|
content => '2',
|
|
order => '02',
|
|
}
|
|
EOS
|
|
|
|
it_behaves_like 'successfully_applied', pp
|
|
|
|
describe file("#{basedir}/file") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it { should be_grouped_into groupname }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 644
|
|
}
|
|
it { should contain '1' }
|
|
it { should contain '2' }
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file/fragments/01_1") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 640
|
|
}
|
|
end
|
|
describe file("#{default['puppetvardir']}/concat/#{safe_basedir}_file/fragments/02_2") do
|
|
it { should be_file }
|
|
it { should be_owned_by username }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 640
|
|
}
|
|
end
|
|
end
|
|
|
|
context 'ensure' do
|
|
context 'works when set to present with path set' do
|
|
before(:all) do
|
|
pp = <<-EOS
|
|
file { '#{basedir}':
|
|
ensure => directory,
|
|
}
|
|
EOS
|
|
apply_manifest(pp)
|
|
end
|
|
pp="
|
|
concat { 'file':
|
|
ensure => present,
|
|
path => '#{basedir}/file',
|
|
mode => '0644',
|
|
}
|
|
concat::fragment { '1':
|
|
target => 'file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
"
|
|
|
|
it_behaves_like 'successfully_applied', pp
|
|
|
|
describe file("#{basedir}/file") do
|
|
it { should be_file }
|
|
it("should be mode", :unless => (fact('osfamily') == 'AIX')) {
|
|
should be_mode 644
|
|
}
|
|
it { should contain '1' }
|
|
end
|
|
end
|
|
context 'works when set to absent with path set' do
|
|
before(:all) do
|
|
pp = <<-EOS
|
|
file { '#{basedir}':
|
|
ensure => directory,
|
|
}
|
|
EOS
|
|
apply_manifest(pp)
|
|
end
|
|
pp="
|
|
concat { 'file':
|
|
ensure => absent,
|
|
path => '#{basedir}/file',
|
|
mode => '0644',
|
|
}
|
|
concat::fragment { '1':
|
|
target => 'file',
|
|
content => '1',
|
|
order => '01',
|
|
}
|
|
"
|
|
|
|
it 'applies the manifest twice with no stderr' do
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe file("#{basedir}/file") do
|
|
it { should_not be_file }
|
|
end
|
|
end
|
|
end
|
|
end
|