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"
|
|
|
|
|
2014-05-22 16:35:12 +00:00
|
|
|
let(:winrm) { double("winrm", timeout: 1) }
|
|
|
|
let(:config) { double("config", winrm: winrm) }
|
|
|
|
let(:machine) { double("machine", config: config) }
|
2014-04-22 18:03:37 +00:00
|
|
|
|
|
|
|
let(:shell) { double("shell") }
|
|
|
|
|
|
|
|
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')
|
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
describe ".ready?" do
|
|
|
|
it "returns true if hostname command executes without error" do
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:powershell).with("hostname").and_return({ exitcode: 0 })
|
2014-04-22 18:03:37 +00:00
|
|
|
expect(subject.ready?).to be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false if hostname command fails to execute without error" do
|
|
|
|
expect(shell).to receive(:powershell).with("hostname").and_raise(Vagrant::Errors::VagrantError)
|
|
|
|
expect(subject.ready?).to be_false
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises timeout error when hostname command takes longer then winrm timeout" do
|
|
|
|
expect(shell).to receive(:powershell).with("hostname") do
|
|
|
|
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
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return({ exitcode: 0 })
|
2014-04-22 18:03:37 +00:00
|
|
|
expect(subject.execute("dir")).to eq(0)
|
|
|
|
end
|
|
|
|
|
2014-04-24 15:24:12 +00:00
|
|
|
it "wraps command in elevated shell script when elevated is true" do
|
2014-05-19 15:04:59 +00:00
|
|
|
expect(shell).to receive(:upload).with(kind_of(String), "c:/tmp/vagrant-elevated-shell.ps1")
|
2014-04-24 15:24:12 +00:00
|
|
|
expect(shell).to receive(:powershell) do |cmd|
|
2014-05-19 15:04:59 +00:00
|
|
|
expect(cmd).to eq("powershell -executionpolicy bypass -file c:/tmp/vagrant-elevated-shell.ps1")
|
2014-04-24 15:24:12 +00:00
|
|
|
end.and_return({ exitcode: 0 })
|
|
|
|
expect(subject.execute("dir", { elevated: true })).to eq(0)
|
|
|
|
end
|
|
|
|
|
2014-04-22 18:03:37 +00:00
|
|
|
it "can use cmd shell" do
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:cmd).with(kind_of(String)).and_return({ exitcode: 0 })
|
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
|
2014-06-24 17:09:11 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return(
|
|
|
|
{ exitcode: 1, data: [{ stdout: '', stderr: '' }] })
|
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
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return({ exitcode: 1 })
|
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
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return({ exitcode: 0 })
|
2014-04-22 18:03:37 +00:00
|
|
|
expect(subject.test("test -d c:/windows")).to be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false when exit code is non-zero" do
|
2014-04-23 23:16:08 +00:00
|
|
|
expect(shell).to receive(:powershell).with(kind_of(String)).and_return({ exitcode: 1 })
|
2014-04-22 18:03:37 +00:00
|
|
|
expect(subject.test("test -d /tmp/foobar")).to be_false
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false when command is testing for linux OS" do
|
|
|
|
expect(subject.test("uname -s | grep Debian")).to be_false
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|