2014-04-22 18:03:37 +00:00
|
|
|
require File.expand_path("../../../../base", __FILE__)
|
|
|
|
|
|
|
|
require Vagrant.source_root.join("plugins/communicators/winrm/communicator")
|
|
|
|
|
|
|
|
describe VagrantPlugins::CommunicatorWinRM::Communicator do
|
|
|
|
include_context "unit"
|
|
|
|
|
2015-09-02 21:36:23 +00:00
|
|
|
let(:winrm) { double("winrm", timeout: 1, host: nil, port: 5986, guest_port: 5986) }
|
2014-05-22 16:35:12 +00:00
|
|
|
let(:config) { double("config", winrm: winrm) }
|
2015-09-02 21:36:23 +00:00
|
|
|
let(:provider) { double("provider") }
|
|
|
|
let(:ui) { double("ui") }
|
|
|
|
let(:machine) { double("machine", config: config, provider: provider, ui: ui) }
|
2014-04-22 18:03:37 +00:00
|
|
|
let(:shell) { double("shell") }
|
2016-12-11 08:52:00 +00:00
|
|
|
let(:good_output) { WinRM::Output.new.tap { |out| out.exitcode = 0 } }
|
|
|
|
let(:bad_output) { WinRM::Output.new.tap { |out| out.exitcode = 1 } }
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
subject do
|
2014-04-23 23:12:27 +00:00
|
|
|
described_class.new(machine).tap do |comm|
|
|
|
|
allow(comm).to receive(:create_shell).and_return(shell)
|
|
|
|
end
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
2014-04-24 15:24:12 +00:00
|
|
|
before do
|
|
|
|
allow(shell).to receive(:username).and_return('vagrant')
|
|
|
|
allow(shell).to receive(:password).and_return('password')
|
2015-08-31 01:08:39 +00:00
|
|
|
allow(shell).to receive(:execution_time_limit).and_return('PT2H')
|
2014-04-24 15:24:12 +00:00
|
|
|
end
|
|
|
|
|
2015-09-02 21:36:23 +00:00
|
|
|
describe ".wait_for_ready" do
|
|
|
|
context "with no winrm_info capability and no static config (default scenario)" do
|
|
|
|
before do
|
|
|
|
# No default providers support this capability
|
|
|
|
allow(provider).to receive(:capability?).with(:winrm_info).and_return(false)
|
|
|
|
|
|
|
|
# Get us through the detail prints
|
|
|
|
allow(ui).to receive(:detail)
|
|
|
|
allow(shell).to receive(:host)
|
|
|
|
allow(shell).to receive(:port)
|
|
|
|
allow(shell).to receive(:username)
|
|
|
|
allow(shell).to receive(:config) { double("config", transport: nil)}
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when ssh_info requires a multiple tries before it is ready" do
|
|
|
|
before do
|
|
|
|
allow(machine).to receive(:ssh_info).and_return(nil, {
|
|
|
|
host: '10.1.2.3',
|
|
|
|
port: '22',
|
|
|
|
})
|
|
|
|
# Makes ready? return true
|
2016-09-26 21:07:11 +00:00
|
|
|
allow(shell).to receive(:cmd).with("hostname").and_return({ exitcode: 0 })
|
2015-09-02 21:36:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "retries ssh_info until ready" do
|
|
|
|
expect(subject.wait_for_ready(2)).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
describe ".ready?" do
|
|
|
|
it "returns true if hostname command executes without error" do
|
2016-09-26 21:07:11 +00:00
|
|
|
expect(shell).to receive(:cmd).with("hostname").and_return({ exitcode: 0 })
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.ready?).to be(true)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
2014-12-10 20:15:07 +00:00
|
|
|
it "returns false if hostname command fails with a transient error" do
|
2016-09-26 21:07:11 +00:00
|
|
|
expect(shell).to receive(:cmd).with("hostname").and_raise(VagrantPlugins::CommunicatorWinRM::Errors::TransientError)
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.ready?).to be(false)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
2014-12-10 20:15:07 +00:00
|
|
|
it "raises an error if hostname command fails with an unknown error" do
|
2016-09-26 21:07:11 +00:00
|
|
|
expect(shell).to receive(:cmd).with("hostname").and_raise(Vagrant::Errors::VagrantError)
|
2014-12-10 20:15:07 +00:00
|
|
|
expect { subject.ready? }.to raise_error(Vagrant::Errors::VagrantError)
|
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
it "raises timeout error when hostname command takes longer then winrm timeout" do
|
2016-09-26 21:07:11 +00:00
|
|
|
expect(shell).to receive(:cmd).with("hostname") do
|
2014-04-22 18:03:37 +00:00
|
|
|
sleep 2 # winrm.timeout = 1
|
|
|
|
end
|
|
|
|
expect { subject.ready? }.to raise_error(Timeout::Error)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".execute" do
|
|
|
|
it "defaults to running in powershell" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String), kind_of(Hash)).and_return(good_output)
|
2014-04-22 18:03:37 +00:00
|
|
|
expect(subject.execute("dir")).to eq(0)
|
|
|
|
end
|
|
|
|
|
2016-12-11 08:52:00 +00:00
|
|
|
it "use elevated shell script when elevated is true" do
|
|
|
|
expect(shell).to receive(:elevated).and_return(good_output)
|
2014-04-24 15:24:12 +00:00
|
|
|
expect(subject.execute("dir", { elevated: true })).to eq(0)
|
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
it "can use cmd shell" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:cmd).with(kind_of(String), kind_of(Hash)).and_return(good_output)
|
2014-05-22 16:35:12 +00:00
|
|
|
expect(subject.execute("dir", { shell: :cmd })).to eq(0)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises error when error_check is true and exit code is non-zero" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String), kind_of(Hash)).and_return(bad_output)
|
2014-04-22 18:03:37 +00:00
|
|
|
expect { subject.execute("dir") }.to raise_error(
|
2014-06-24 17:09:11 +00:00
|
|
|
VagrantPlugins::CommunicatorWinRM::Errors::WinRMBadExitStatus)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not raise error when error_check is false and exit code is non-zero" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String), kind_of(Hash)).and_return(bad_output)
|
2014-05-22 16:35:12 +00:00
|
|
|
expect(subject.execute("dir", { error_check: false })).to eq(1)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".test" do
|
|
|
|
it "returns true when exit code is zero" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return(good_output)
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.test("test -d c:/windows")).to be(true)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false when exit code is non-zero" do
|
2016-12-11 08:52:00 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return(bad_output)
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.test("test -d /tmp/foobar")).to be(false)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
|
2014-12-16 17:20:51 +00:00
|
|
|
it "returns false when stderr contains output" do
|
2016-12-11 08:52:00 +00:00
|
|
|
output = WinRM::Output.new
|
|
|
|
output.exitcode = 1
|
|
|
|
output << { stderr: 'this is an error' }
|
2014-12-16 17:20:51 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return(output)
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.test("[-x stuff] && foo")).to be(false)
|
2014-12-16 17:20:51 +00:00
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
it "returns false when command is testing for linux OS" do
|
2017-04-06 21:57:46 +00:00
|
|
|
expect(subject.test("uname -s | grep Debian")).to be(false)
|
2014-04-22 18:03:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".upload" do
|
|
|
|
it "calls upload on shell" do
|
|
|
|
expect(shell).to receive(:upload).with("from", "to")
|
|
|
|
subject.upload("from", "to")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".download" do
|
|
|
|
it "calls download on shell" do
|
|
|
|
expect(shell).to receive(:download).with("from", "to")
|
|
|
|
subject.download("from", "to")
|
|
|
|
end
|
2014-07-22 23:30:29 +00:00
|
|
|
end
|
2014-04-22 18:03:37 +00:00
|
|
|
|
|
|
|
end
|