
Updated for suggestions from crinkle. Left spec_helper_acceptance alone because jeblair's change is the right place to make that modification. Change-Id: Ic1aa2a0a78ea74661e95399e1e6393af5cf687b0
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
require 'beaker-rspec'
|
|
|
|
hosts.each do |host|
|
|
|
|
install_puppet
|
|
|
|
on host, "mkdir -p #{host['distmoduledir']}"
|
|
end
|
|
|
|
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
|
|
hosts.each do |host|
|
|
|
|
# install git
|
|
install_package host, 'git'
|
|
|
|
# clean out any module cruft
|
|
shell('rm -fr /etc/puppet/modules/*')
|
|
|
|
# install library modules from the forge
|
|
on host, puppet('module','install','puppetlabs-apache', '--version', '0.0.4'), { :acceptable_exit_codes => 0 }
|
|
|
|
# install puppet modules from git, use master, TODO: zuul-cloner this
|
|
shell('git clone https://git.openstack.org/openstack-infra/puppet-jenkins /etc/puppet/modules/jenkins')
|
|
shell('git clone https://git.openstack.org/openstack-infra/puppet-vcsrepo /etc/puppet/modules/vcsrepo')
|
|
|
|
# Install the module being tested
|
|
puppet_module_install(:source => proj_root, :module_name => 'openstackci')
|
|
# List modules installed to help with debugging
|
|
on hosts[0], puppet('module','list'), { :acceptable_exit_codes => 0 }
|
|
end
|
|
end
|
|
end
|