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
|
require 'spec_helper'
describe Fission::Command::Start do
include_context 'command_setup'
before do
@target_vm = ['foo']
Fission::VM.stub(:new).and_return(@vm_mock)
@start_response_mock = double('start_response')
@vm_mock.stub(:name).and_return(@target_vm.first)
end
describe 'command_name' do
it 'should return the pretty command name' do
Fission::Command::Start.new.command_name.should == 'start'
end
end
describe 'execute' do
subject { Fission::Command::Start }
[ [], ['--bar'] ].each do |args|
it_should_not_accept_arguments_of args, 'start'
end
it 'should output an error and exit if there was an error starting the vm' do
@start_response_mock.stub_as_unsuccessful
@vm_mock.should_receive(:start).and_return(@start_response_mock)
command = Fission::Command::Start.new @target_vm
lambda { command.execute }.should raise_error SystemExit
@string_io.string.should match /Starting '#{@target_vm.first}'/
@string_io.string.should match /There was a problem starting the VM.+it blew up.+/m
end
describe 'with --headless' do
it 'should start the vm headless' do
@start_response_mock.stub_as_successful
@vm_mock.should_receive(:start).and_return(@start_response_mock)
command = Fission::Command::Start.new @target_vm << '--headless'
command.execute
@string_io.string.should match /Starting '#{@target_vm.first}'/
@string_io.string.should match /VM '#{@target_vm.first}' started/
end
end
end
describe 'help' do
it 'should output info for this command' do
output = Fission::Command::Start.help
output.should match /fission start TARGET_VM \[OPTIONS\]/
output.should match /--headless/
end
end
end
|