Sha256: aa4193f8372929d7f945f788587fc69d2c03c0fc3118611780bdc6c285f0264a

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'yard'

YARD::Rake::YardocTask.new

namespace :test do
  RSpec::Core::RakeTask.new(:unit) do |t|
    t.pattern = 'test/unit/**/*_spec.rb'
  end

  desc 'Run acceptance tests..these actually launch Vagrant sessions.'
  task :acceptance, :provider do |_t, args|
    # ensure all required dummy boxen are installed
    %w( aws rackspace ).each do |provider|
      unless system("vagrant box list | grep 'dummy\s*(#{provider})' &>/dev/null")
        system("vagrant box add dummy https://github.com/mitchellh/vagrant-#{provider}/raw/master/dummy.box")
      end
    end

    unless system("vagrant box list | grep 'digital_ocean' &>/dev/null")
      system('vagrant box add digital_ocean https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box')
    end

    all_providers = Dir['test/acceptance/*'].map { |dir| File.basename(File.expand_path(dir)) }

    # If a provider wasn't passed to the task run acceptance tests against
    # ALL THE PROVIDERS!
    providers = if args[:provider] && all_providers.include?(args[:provider])
                  [args[:provider]]
                else
                  all_providers
                end

    providers.each do |provider|
      puts '=================================================================='
      puts "Running acceptance tests against '#{provider}' provider..."
      puts '=================================================================='

      Dir.chdir("test/acceptance/#{provider}") do
        system('vagrant destroy -f')
        system("vagrant up --provider=#{provider} --provision")
        system('vagrant destroy -f')
      end
    end
  end
end

task default: 'test:unit'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-puppet-install-4.1.0 Rakefile
vagrant-puppet-install-4.0.1 Rakefile