Sha256: 0af1b99e3f6f0d6ca577f382ebdb30d1d5c90f5c834934c5349c68fd54ecb7ba

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

require "test_helper"

class CommandsHaltTest < Test::Unit::TestCase
  setup do
    @klass = Vagrant::Commands::Halt

    @env = mock_environment
    @instance = @klass.new(@env)
  end

  context "executing" do
    should "call all or single for the method" do
      @instance.expects(:all_or_single).with([], :halt)
      @instance.execute
    end
  end

  context "halting a single VM" do
    setup do
      @foo_vm = mock("vm")
      @foo_vm.stubs(:env).returns(@env)
      vms = { :foo => @foo_vm }
      @env.stubs(:vms).returns(vms)
    end

    should "error and exit if the VM doesn't exist" do
      @env.stubs(:vms).returns({})
      @instance.expects(:error_and_exit).with(:unknown_vm, :vm => :foo).once
      @instance.halt_single(:foo)
    end

    should "halt if its created" do
      @foo_vm.stubs(:created?).returns(true)
      @foo_vm.expects(:halt).with(:force => false).once
      @instance.execute(["foo"])
    end

    should "halt and force if specified" do
      @foo_vm.stubs(:created?).returns(true)
      @foo_vm.expects(:halt).with(:force => true).once
      @instance.execute(["foo", "--force"])
    end

    should "do nothing if its not created" do
      @foo_vm.stubs(:created?).returns(false)
      @foo_vm.expects(:halt).never
      @instance.halt_single(:foo)
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
vagrantup-0.5.4 test/vagrant/commands/halt_test.rb
vagrantup-0.5.3 test/vagrant/commands/halt_test.rb
vagrant-0.5.4 test/vagrant/commands/halt_test.rb
vagrant-0.5.3 test/vagrant/commands/halt_test.rb