84 lines
2.1 KiB
Ruby
84 lines
2.1 KiB
Ruby
|
require File.expand_path("../../../../../base", __FILE__)
|
||
|
|
||
|
describe VagrantPlugins::CommandPlugin::Action::InstallGem do
|
||
|
let(:app) { lambda { |env| } }
|
||
|
let(:env) {{
|
||
|
ui: Vagrant::UI::Silent.new
|
||
|
}}
|
||
|
|
||
|
let(:manager) { double("manager") }
|
||
|
|
||
|
subject { described_class.new(app, env) }
|
||
|
|
||
|
before do
|
||
|
Vagrant::Plugin::Manager.stub(instance: manager)
|
||
|
end
|
||
|
|
||
|
describe "#call" do
|
||
|
it "should install the plugin" do
|
||
|
spec = Gem::Specification.new
|
||
|
manager.should_receive(:install_plugin).with(
|
||
|
"foo", version: nil, require: nil).once.and_return(spec)
|
||
|
|
||
|
app.should_receive(:call).with(env).once
|
||
|
|
||
|
env[:plugin_name] = "foo"
|
||
|
subject.call(env)
|
||
|
end
|
||
|
|
||
|
it "should specify the version if given" do
|
||
|
spec = Gem::Specification.new
|
||
|
manager.should_receive(:install_plugin).with(
|
||
|
"foo", version: "bar", require: nil).once.and_return(spec)
|
||
|
|
||
|
app.should_receive(:call).with(env).once
|
||
|
|
||
|
env[:plugin_name] = "foo"
|
||
|
env[:plugin_version] = "bar"
|
||
|
subject.call(env)
|
||
|
end
|
||
|
|
||
|
it "should specify the entrypoint if given" do
|
||
|
spec = Gem::Specification.new
|
||
|
manager.should_receive(:install_plugin).with(
|
||
|
"foo", version: "bar", require: "baz").once.and_return(spec)
|
||
|
|
||
|
app.should_receive(:call).with(env).once
|
||
|
|
||
|
env[:plugin_entry_point] = "baz"
|
||
|
env[:plugin_name] = "foo"
|
||
|
env[:plugin_version] = "bar"
|
||
|
subject.call(env)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "#recover" do
|
||
|
it "should do nothing by default" do
|
||
|
subject.recover(env)
|
||
|
end
|
||
|
|
||
|
context "with a successful plugin install" do
|
||
|
let(:action_runner) { double("action_runner") }
|
||
|
|
||
|
before do
|
||
|
spec = Gem::Specification.new
|
||
|
spec.name = "foo"
|
||
|
manager.stub(install_plugin: spec)
|
||
|
|
||
|
env[:plugin_name] = "foo"
|
||
|
subject.call(env)
|
||
|
|
||
|
env[:action_runner] = action_runner
|
||
|
end
|
||
|
|
||
|
it "should uninstall the plugin" do
|
||
|
action_runner.should_receive(:run).with do |action, newenv|
|
||
|
expect(newenv[:plugin_name]).to eql("foo")
|
||
|
end
|
||
|
|
||
|
subject.recover(env)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|