vagrant/test/unit/plugins/commands/box/command/remove_test.rb
2023-09-14 16:15:03 -07:00

120 lines
3 KiB
Ruby

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require File.expand_path("../../../../../base", __FILE__)
require Vagrant.source_root.join("plugins/commands/box/command/remove")
describe VagrantPlugins::CommandBox::Command::Remove do
include_context "unit"
let(:argv) { [] }
let(:iso_env) do
# We have to create a Vagrantfile so there is a root path
env = isolated_environment
env.vagrantfile("")
env.create_vagrant_env
end
subject { described_class.new(argv, iso_env) }
let(:action_runner) { double("action_runner") }
before do
allow(iso_env).to receive(:action_runner).and_return(action_runner)
end
context "with no arguments" do
it "shows help" do
expect { subject.execute }.
to raise_error(Vagrant::Errors::CLIInvalidUsage)
end
end
context "with one argument" do
let(:argv) { ["foo"] }
it "invokes the action runner" do
expect(action_runner).to receive(:run).with(any_args) { |action, opts|
expect(opts[:box_name]).to eq("foo")
expect(opts[:force_confirm_box_remove]).to be(false)
true
}
subject.execute
end
context "with --force" do
let(:argv) { super() + ["--force"] }
it "invokes the action runner with force option" do
expect(action_runner).to receive(:run).with(any_args) { |action, opts|
expect(opts[:box_name]).to eq("foo")
expect(opts[:force_confirm_box_remove]).to be(true)
true
}
subject.execute
end
end
end
context "with two arguments" do
let(:argv) { ["foo", "bar"] }
it "uses the 2nd arg as a provider" do
expect(action_runner).to receive(:run).with(any_args) { |action, opts|
expect(opts[:box_name]).to eq("foo")
expect(opts[:box_provider]).to eq("bar")
true
}
subject.execute
end
end
context "with more than two arguments" do
let(:argv) { ["one", "two", "three"] }
it "shows help" do
expect { subject.execute }.
to raise_error(Vagrant::Errors::CLIInvalidUsage)
end
end
context "with architecture flag" do
let(:argv) { ["foo", "--architecture", "test-arch"] }
it "should execute runner with box architecture set" do
expect(action_runner).to receive(:run) do |_, opts|
expect(opts[:box_architecture]).to eq("test-arch")
end
subject.execute
end
end
context "with all providers flag" do
let(:argv) { ["foo", "--all-providers"] }
it "should execute runner with all providers enabled" do
expect(action_runner).to receive(:run) do |_, opts|
expect(opts[:box_remove_all_providers]).to be(true)
end
subject.execute
end
end
context "with all architectures flag" do
let(:argv) { ["foo", "--all-architectures"] }
it "should execute runner with all architectures enabled" do
expect(action_runner).to receive(:run) do |_, opts|
expect(opts[:box_remove_all_architectures]).to be(true)
end
subject.execute
end
end
end