1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
require File.expand_path("../../../../base", __FILE__)
require Vagrant.source_root.join("plugins/commands/destroy/command")
describe VagrantPlugins::CommandDestroy::Command do
include_context "unit"
let(:entry_klass) { Vagrant::MachineIndex::Entry }
let(:argv) { [] }
let(:vagrantfile_content){ "" }
let(:iso_env) do
env = isolated_environment
env.vagrantfile(vagrantfile_content)
env.create_vagrant_env
end
subject { described_class.new(argv, iso_env) }
let(:action_runner) { double("action_runner") }
def new_entry(name)
entry_klass.new.tap do |e|
e.name = name
e.vagrantfile_path = "/bar"
end
end
before do
allow(iso_env).to receive(:action_runner).and_return(action_runner)
end
context "with no argument" do
before { @state_var = :running }
let(:vagrantfile_content){ "Vagrant.configure(2){|config| config.vm.box = 'dummy'}" }
let(:state) { double("state", id: :running) }
let(:machine) do
iso_env.machine(iso_env.machine_names[0], :dummy).tap do |m|
allow(m).to receive(:state).and_return(state)
end
end
before do
allow(subject).to receive(:with_target_vms) { |&block| block.call machine }
end
it "should destroy the default box" do
allow_any_instance_of(Vagrant::BatchAction).to receive(:action) .with(machine, :destroy, force_confirm_destroy: false, force_halt: true)
expect(machine.state).to receive(:id).and_return(:running)
expect(machine.state).to receive(:id).and_return(:dead)
expect(subject.execute).to eq(0)
end
it "exits 0 if vms are not created" do
allow_any_instance_of(Vagrant::BatchAction).to receive(:action) .with(machine, :destroy, anything)
allow(machine.state).to receive(:id).and_return(:not_created)
expect(machine.state).to receive(:id).and_return(:not_created)
expect(subject.execute).to eq(0)
end
it "exits 1 if a vms destroy was declined" do
allow_any_instance_of(Vagrant::BatchAction).to receive(:action) .with(machine, :destroy, anything)
expect(machine.state).to receive(:id).and_return(:running)
expect(machine.state).to receive(:id).and_return(:running)
expect(subject.execute).to eq(1)
end
context "with VAGRANT_DEFAULT_PROVIDER set" do
before do
if ENV["VAGRANT_DEFAULT_PROVIDER"]
@original_default = ENV["VAGRANT_DEFAULT_PROVIDER"]
end
ENV["VAGRANT_DEFAULT_PROVIDER"] = "unknown"
end
after do
if @original_default
ENV["VAGRANT_DEFAULT_PROVIDER"] = @original_default
else
ENV.delete("VAGRANT_DEFAULT_PROVIDER")
end
end
it "should attempt to use dummy provider" do
expect{ subject.execute }.to raise_error(Vagrant::Errors::UnimplementedProviderAction)
end
end
end
context "with --parallel set" do
let(:argv){ ["--parallel", "--force"] }
it "passes in true to batch" do
batch = double("environment_batch")
expect(iso_env).to receive(:batch).with(true).and_yield(batch)
expect(batch).to receive(:action).with(anything, :destroy, anything) do |machine,action,args|
expect(machine).to be_kind_of(Vagrant::Machine)
expect(action).to eq(:destroy)
end
subject.execute
end
end
context "with --graceful set" do
let(:argv){ ["--graceful", "--force"] }
it "passes in true to batch" do
batch = double("environment_batch")
expect(iso_env).to receive(:batch).and_yield(batch)
expect(batch).to receive(:action).with(anything, :destroy, force_confirm_destroy: true, force_halt: false)
subject.execute
end
end
context "with a global machine" do
let(:argv){ ["1234"] }
it "destroys a vm with an id" do
global_env = isolated_environment
global_env.vagrantfile("Vagrant.configure(2){|config| config.vm.box = 'dummy'}")
global_venv = global_env.create_vagrant_env
global_machine = global_venv.machine(global_venv.machine_names[0], :dummy)
global_machine.id = "1234"
global = new_entry(global_machine.name)
global.provider = "dummy"
global.vagrantfile_path = global_env.workdir
locked = iso_env.machine_index.set(global)
iso_env.machine_index.release(locked)
allow(subject).to receive(:with_target_vms) { |&block| block.call global_machine }
batch = double("environment_batch")
expect(iso_env).to receive(:batch).and_yield(batch)
expect(batch).to receive(:action).with(global_machine, :destroy, anything) do |machine,action,args|
expect(machine).to be_kind_of(Vagrant::Machine)
expect(action).to eq(:destroy)
end
subject.execute
end
end
context "with an argument" do
let(:vagrantfile_content) do
<<-VF
Vagrant.configure("2") do |config|
config.vm.define "app"
config.vm.define "db"
end
VF
end
let(:argv){ ["app"] }
let(:machine) { iso_env.machine(iso_env.machine_names[0], :dummy) }
it "destroys a vm" do
batch = double("environment_batch")
expect(iso_env).to receive(:batch).and_yield(batch)
expect(batch).to receive(:action).with(machine, :destroy, anything) do |machine,action,args|
expect(machine).to be_kind_of(Vagrant::Machine)
expect(action).to eq(:destroy)
end
subject.execute
end
context "with an invalid argument" do
let(:argv){ ["notweb"] }
it "raises an exception" do
expect { subject.execute }.to raise_error(Vagrant::Errors::MachineNotFound)
end
end
end
end
|