1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
require 'puppetlabs_spec_helper/rake_tasks'
require 'rake'
task 'beaker:test',[:host,:type] => :set_beaker_variables do |t,args|
Rake::Task['beaker-rspec:test'].invoke(args)
if File.exists?('./acceptance')
Dir.chdir('./acceptance')
exec(build_beaker_command args)
Dir.chdir('../')
else
puts "No acceptance directory found, not running beaker tests"
end
end
desc "Run beaker rspec tasks against pe"
RSpec::Core::RakeTask.new('beaker-rspec:test',[:host,:type]=>:set_beaker_variables) do |t,args|
t.pattern = 'spec/acceptance'
t.rspec_opts = '--color'
t.verbose = true
end
desc "Run beaker and beaker-rspec tasks"
task 'beaker:test:pe',:host do |t,args|
args.with_defaults(:type=> 'pe')
Rake::Task['beaker:test'].invoke(args[:host],args[:type])
end
task 'beaker:test:git',:host do |t,args|
args.with_defaults({:type=> 'git'})
Rake::Task['beaker:test'].invoke(args[:host],args[:type])
end
task :set_beaker_variables do |t,args|
puts 'Setting environment variables for testing'
if args[:host]
ENV['BEAKER_set'] = args[:host]
puts "Host to test #{ENV['BEAKER_set']}"
end
ENV['BEAKER_IS_PE'] = args[:type] == 'pe'? "true": "false"
end
def build_beaker_command(args)
cmd = ["beaker"]
cmd << "--type #{args[:type]}" unless !args[:type]
if File.exists?("./.beaker-#{args[:type]}.cfg")
cmd << "--options-file ./.beaker-#{args[:type]}.cfg"
end
if File.exists?("config/#{args[:host]}.cfg")
cmd << "--hosts config/#{args[:host]}.cfg"
end
if File.exists?("./tests")
cmd << "--tests ./tests"
end
cmd.join(" ")
end
|