2011-11-07 06:17:27 +00:00
|
|
|
require File.expand_path("../base", __FILE__)
|
|
|
|
|
2011-11-07 07:47:23 +00:00
|
|
|
describe "vagrant ssh" do
|
|
|
|
include_context "acceptance"
|
|
|
|
|
|
|
|
it "fails if no Vagrantfile is found" do
|
2011-11-07 06:21:02 +00:00
|
|
|
result = execute("vagrant", "ssh")
|
|
|
|
assert(!result.success?, "vagrant ssh should fail")
|
|
|
|
assert(output(result.stdout).no_vagrantfile,
|
|
|
|
"Vagrant should error since there is no Vagrantfile")
|
|
|
|
end
|
|
|
|
|
2011-11-07 07:47:23 +00:00
|
|
|
it "fails if the virtual machine is not created" do
|
2011-11-07 06:21:02 +00:00
|
|
|
assert_execute("vagrant", "init")
|
|
|
|
|
|
|
|
result = execute("vagrant", "ssh")
|
|
|
|
assert(!result.success?, "vagrant ssh should fail")
|
|
|
|
assert(output(result.stdout).error_vm_must_be_created,
|
|
|
|
"Vagrant should error that the VM must be created.")
|
|
|
|
end
|
|
|
|
|
2011-11-07 07:47:23 +00:00
|
|
|
it "is able to SSH into a running virtual machine" do
|
2011-11-07 06:17:27 +00:00
|
|
|
assert_execute("vagrant", "box", "add", "base", config.boxes["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
|
|
|
|
|
|
|
|
assert_equal("hello", result.stdout.chomp,
|
|
|
|
"Vagrant should bring up a virtual machine and be able to SSH in.")
|
|
|
|
end
|
2011-11-07 06:35:53 +00:00
|
|
|
|
2011-11-07 07:47:23 +00:00
|
|
|
it "is able to execute a single command via the command line" do
|
2011-11-07 06:35:53 +00:00
|
|
|
assert_execute("vagrant", "box", "add", "base", config.boxes["default"])
|
|
|
|
assert_execute("vagrant", "init")
|
|
|
|
assert_execute("vagrant", "up")
|
|
|
|
|
|
|
|
result = assert_execute("vagrant", "ssh", "-c", "echo foo")
|
|
|
|
assert_equal("foo\n", result.stdout)
|
|
|
|
end
|
2011-11-07 06:17:27 +00:00
|
|
|
end
|