86 lines
2.7 KiB
Ruby
86 lines
2.7 KiB
Ruby
require 'beaker-rspec/spec_helper'
|
|
require 'beaker-rspec/helpers/serverspec'
|
|
|
|
class String
|
|
# Provide ability to remove indentation from strings, for the purpose of
|
|
# left justifying heredoc blocks.
|
|
def unindent
|
|
gsub(/^#{scan(/^\s*/).min_by{|l|l.length}}/, "")
|
|
end
|
|
end
|
|
|
|
def shellescape(str)
|
|
str = str.to_s
|
|
|
|
# An empty argument will be skipped, so return empty quotes.
|
|
return "''" if str.empty?
|
|
|
|
str = str.dup
|
|
|
|
# Treat multibyte characters as is. It is caller's responsibility
|
|
# to encode the string in the right encoding for the shell
|
|
# environment.
|
|
str.gsub!(/([^A-Za-z0-9_\-.,:\/@\n])/, "\\\\\\1")
|
|
|
|
# A LF cannot be escaped with a backslash because a backslash + LF
|
|
# combo is regarded as line continuation and simply ignored.
|
|
str.gsub!(/\n/, "'\n'")
|
|
|
|
return str
|
|
end
|
|
|
|
def psql(psql_cmd, user = 'postgres', exit_codes = [0,1], &block)
|
|
psql = "psql #{psql_cmd}"
|
|
shell("su #{shellescape(user)} -c #{shellescape(psql)}", :acceptable_exit_codes => exit_codes, &block)
|
|
end
|
|
|
|
unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_provision'] == 'no'
|
|
if hosts.first.is_pe?
|
|
install_pe
|
|
else
|
|
install_puppet
|
|
end
|
|
hosts.each do |host|
|
|
shell("mkdir -p #{host['distmoduledir']}")
|
|
if ! host.is_pe?
|
|
# Augeas is only used in one place, for Redhat.
|
|
if fact('osfamily') == 'RedHat'
|
|
install_package host, 'ruby-devel'
|
|
install_package host, 'augeas-devel'
|
|
install_package host, 'ruby-augeas'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
UNSUPPORTED_PLATFORMS = ['AIX','windows','Solaris','Suse']
|
|
|
|
RSpec.configure do |c|
|
|
# Project root
|
|
proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
|
|
# Readable test descriptions
|
|
c.formatter = :documentation
|
|
|
|
# Configure all nodes in nodeset
|
|
c.before :suite do
|
|
# Install module and dependencies
|
|
puppet_module_install(:source => proj_root, :module_name => 'postgresql')
|
|
hosts.each do |host|
|
|
on host, shell('chmod 755 /root')
|
|
if fact('osfamily') == 'Debian'
|
|
shell("echo \"en_US ISO-8859-1\nen_NG.UTF-8 UTF-8\nen_US.UTF-8 UTF-8\n\" > /etc/locale.gen")
|
|
shell('/usr/sbin/locale-gen')
|
|
shell('/usr/sbin/update-locale')
|
|
end
|
|
if fact('osfamily') == 'RedHat'
|
|
shell('yum -y install policycoreutils-python')
|
|
shell('semanage port -a -t postgresql_port_t -p tcp 5433')
|
|
end
|
|
on host, puppet('module','install','puppetlabs-stdlib'), { :acceptable_exit_codes => [0,1] }
|
|
on host, puppet('module','install','puppetlabs-firewall'), { :acceptable_exit_codes => [0,1] }
|
|
on host, puppet('module','install','puppetlabs-apt'), { :acceptable_exit_codes => [0,1] }
|
|
on host, puppet('module','install','puppetlabs-concat'), { :acceptable_exit_codes => [0,1] }
|
|
end
|
|
end
|
|
end
|