Sha256: 2ff07483e82ab04035c3d44e04a5b59885f654afdfa395630e4504e3859a106c

Contents?: true

Size: 859 Bytes

Versions: 8

Compression:

Stored size: 859 Bytes

Contents

namespace :acceptance do
  ARTIFACT_DIR = File.join('acceptance', 'artifacts')
  TEST_BOXES = {
    'centos-virtualbox.box' => 'https://s3.amazonaws.com/puppetlabs-vagrantcloud/centos-7.2-x86_64-virtualbox-nocm-1.0.1.box',
    'ubuntu-virtualbox.box' => 'https://s3.amazonaws.com/puppetlabs-vagrantcloud/ubuntu-14.04-x86_64-virtualbox-nocm-1.0.3.box'
  }

  directory ARTIFACT_DIR
  TEST_BOXES.each do |box, box_url|
    file File.join(ARTIFACT_DIR, box) => ARTIFACT_DIR do |path|
      puts 'Downloading: ' + box_url
      Kernel.system 'curl', '-L', '-o', path.to_s, box_url
    end
  end

  desc 'downloads test boxes and other artifacts'
  task :setup => TEST_BOXES.map {|box, _| File.join(ARTIFACT_DIR, box)}

  desc 'runs acceptance tests'
  task :run => :setup do
    command = 'vagrant-spec test'
    puts command
    puts
    exec(command)
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vagrant-pe_build-0.19.2 tasks/acceptance.rake
vagrant-pe_build-0.19.1 tasks/acceptance.rake
vagrant-pe_build-0.19.0 tasks/acceptance.rake
vagrant-pe_build-0.18.2 tasks/acceptance.rake
vagrant-pe_build-0.18.1 tasks/acceptance.rake
vagrant-pe_build-0.18.0 tasks/acceptance.rake
vagrant-pe_build-0.17.14 tasks/acceptance.rake
vagrant-pe_build-0.17.13 tasks/acceptance.rake