summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDavid Schmitt <david@dasz.at>2016-01-27 10:33:17 +0000
committerDavid Schmitt <david@dasz.at>2016-01-27 14:50:49 +0000
commit20736ba6566854a274a9f9ac95937a843942aca6 (patch)
tree76e3b3b2dc3dba8019f8562981581a32eb42dd68 /Rakefile
parent268e599839f86f7d5dd4352e73c0f698dc4b0c18 (diff)
(FM-4049) Update to current msync configs [2c99161]
Diffstat (limited to 'Rakefile')
-rwxr-xr-xRakefile85
1 files changed, 9 insertions, 76 deletions
diff --git a/Rakefile b/Rakefile
index cb80def..35ce311 100755
--- a/Rakefile
+++ b/Rakefile
@@ -1,78 +1,11 @@
+require 'puppet_blacksmith/rake_tasks'
+require 'puppet-lint/tasks/puppet-lint'
require 'puppetlabs_spec_helper/rake_tasks'
-require 'rake'
-desc "Run beaker-rspec and beaker tests"
-task 'beaker:test:all',[:host,:type] => ["rake:beaker:rspec:test", "rake:beaker:test"] do |t,args|
-end
-
-desc "Run beaker-rspec tests"
-task 'beaker:rspec:test',[:host,:type] => [:set_beaker_variables] do |t,args|
- Rake::Task['beaker-rspec:test'].invoke(args)
-end
-
-desc "Run beaker tests"
-task 'beaker:test',[:host,:type] => [:set_beaker_variables] do |t,args|
- sh(build_beaker_command args)
-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"
- if ENV['BEAKER_setfile']
- @hosts_config = ENV['BEAKER_setfile']
- end
- if File.exists?(check_args_for_keyfile(args.extras))
- ENV['BEAKER_keyfile'] = check_args_for_keyfile(args.extras)
- end
-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?(@hosts_config)
- cmd << "--hosts #{@hosts_config}"
- end
- if File.exists?('./spec/acceptance/beaker_helper.rb')
- cmd << "--pre-suite ./spec/acceptance/beaker_helper.rb"
- end
- if File.exists?("./spec/acceptance/beaker")
- cmd << "--tests ./spec/acceptance/beaker"
- end
- if File.exists?(check_args_for_keyfile(args.extras))
- cmd << "--keyfile #{check_args_for_keyfile(args.extras)}"
- end
- cmd.join(" ")
-end
-
-def check_args_for_keyfile(extra_args)
- keyfile = ''
- extra_args.each do |a|
- keyfile = a unless (`ssh-keygen -l -f #{a}`.gsub(/\n/,"").match(/is not a .*key file/))
- end
- return keyfile
-end
+PuppetLint.configuration.fail_on_warnings = true
+PuppetLint.configuration.send('relative')
+PuppetLint.configuration.send('disable_80chars')
+PuppetLint.configuration.send('disable_class_inherits_from_params_class')
+PuppetLint.configuration.send('disable_documentation')
+PuppetLint.configuration.send('disable_single_quote_string_with_variables')
+PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]