summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTravis Fields <travis@puppetlabs.com>2014-05-16 12:37:39 -0700
committerTravis Fields <travis@puppetlabs.com>2014-05-16 14:15:03 -0700
commit79c4a4e6e9638aa4b5f3e7366ada7c3ddbafb8a3 (patch)
tree7aca6a6d0c1c8239c621cc33869257cb592e9840 /Rakefile
parent46588aa62d444c5f0a538cccec357a80cd191b93 (diff)
Add rake tasks to test both beaker and beaker-rspec in one go
Diffstat (limited to 'Rakefile')
-rwxr-xr-x[-rw-r--r--]Rakefile57
1 files changed, 57 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index cd3d379..3ccf664 100644..100755
--- a/Rakefile
+++ b/Rakefile
@@ -1 +1,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