2014-01-06 23:39:48 +01:00
|
|
|
require 'beaker-rspec'
|
2015-06-12 00:26:17 +02:00
|
|
|
require 'beaker/puppet_install_helper'
|
2014-01-06 23:39:48 +01:00
|
|
|
|
2015-06-12 00:26:17 +02:00
|
|
|
run_puppet_install_helper
|
2014-01-06 23:39:48 +01:00
|
|
|
|
2014-02-24 22:52:13 +01:00
|
|
|
UNSUPPORTED_PLATFORMS = ['RedHat','Suse','windows','AIX','Solaris']
|
|
|
|
|
2014-01-06 23:39:48 +01:00
|
|
|
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|
|
2014-09-10 19:37:07 +02:00
|
|
|
copy_module_to(host, :source => proj_root, :module_name => 'apt')
|
2014-08-12 22:10:36 +02:00
|
|
|
shell("/bin/touch #{default['puppetpath']}/hiera.yaml")
|
2015-02-18 22:42:43 +01:00
|
|
|
on host, puppet('module install puppetlabs-stdlib --version 4.5.0'), { :acceptable_exit_codes => [0,1] }
|
2014-01-06 23:39:48 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|