vagrant/test/acceptance/provisioning/basic_test.rb

62 lines
1.9 KiB
Ruby

require File.expand_path("../../base", __FILE__)
describe "vagrant provisioning basics" do
include_context "acceptance"
it "doesn't provision with `--no-provision` set" do
require_box("default")
assert_execute("vagrant", "box", "add", "base", box_path("default"))
environment.workdir.join("Vagrantfile").open("w+") do |f|
f.write(<<-vf)
Vagrant::Config.run do |config|
config.vm.box = "base"
config.vm.provision :shell, :inline => "echo success > /vagrant/results"
end
vf
end
# Bring the VM up without enabling provisioning
assert_execute("vagrant", "up", "--no-provision")
# Verify the file that the script creates does NOT exist
result_file = environment.workdir.join("results")
result_file.exist?.should_not be
end
it "can provision with multiple provisioners" do
# Skeleton for multiple provisioners
environment.skeleton!("provisioner_multi")
# Setup the basic environment
require_box("default")
assert_execute("vagrant", "box", "add", "base", box_path("default"))
# Bring up the VM
assert_execute("vagrant", "up")
# Verify the file the shell provisioner made is there, but not the
# Chef one.
environment.workdir.join("shell").exist?.should be
environment.workdir.join("chef_solo").exist?.should be
end
it "only uses the provisioners specified with `--provision-with`" do
# Skeleton for multiple provisioners
environment.skeleton!("provisioner_multi")
# Setup the basic environment
require_box("default")
assert_execute("vagrant", "box", "add", "base", box_path("default"))
# Bring up the VM, only using the shell provisioner
assert_execute("vagrant", "up", "--provision-with", "shell")
# Verify the file the shell provisioner made is there, but not the
# Chef one.
environment.workdir.join("shell").exist?.should be
environment.workdir.join("chef_solo").exist?.should_not be
end
end