vagrant/test/acceptance/ssh_test.rb

47 lines
1.4 KiB
Ruby
Raw Normal View History

require File.expand_path("../base", __FILE__)
2011-12-11 23:53:11 +00:00
require "acceptance/support/shared/command_examples"
describe "vagrant ssh" do
include_context "acceptance"
it_behaves_like "a command that requires a Vagrantfile", ["vagrant", "ssh"]
it_behaves_like "a command that requires a virtual machine", ["vagrant", "ssh"]
2011-11-07 06:21:02 +00:00
it "is able to SSH into a running virtual machine" do
require_box("default")
assert_execute("vagrant", "box", "add", "base", box_path("default"))
assert_execute("vagrant", "init")
assert_execute("vagrant", "up")
outputted = false
result = assert_execute("vagrant", "ssh") do |io_type, data|
if io_type == :stdin and !outputted
data.puts("echo hello")
data.puts("exit")
outputted = true
end
end
result.stdout.chomp.should eql("hello"), "Vagrant should bring up a VM to be able to SSH into."
end
it "is able to execute a single command via the command line" do
require_box("default")
assert_execute("vagrant", "box", "add", "base", box_path("default"))
assert_execute("vagrant", "init")
assert_execute("vagrant", "up")
result = execute("vagrant", "ssh", "-c", "echo foo")
result.exit_code.should == 0
result.stdout.should == "foo\n"
result = execute("vagrant", "ssh", "-c", "foooooooooo")
result.exit_code.should == 127
result.stderr.should =~ /foooooooooo: command not found/
end
2011-11-11 08:10:42 +00:00
# TODO:
# SSH should fail if the VM is not running
end