Sha256: 2869681242bf62b6d712b0f8b592f3f7c95049af10b39fa42bb18ae3f22f0f53
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 KB
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestCoreOS::Cap::ChangeHostName" do let(:described_class) do VagrantPlugins::GuestCoreOS::Plugin .components .guest_capabilities[:coreos] .get(:change_host_name) end let(:machine) { double("machine") } let(:comm) { VagrantTests::DummyCommunicator::Communicator.new(machine) } before do allow(machine).to receive(:communicate).and_return(comm) end after do comm.verify_expectations! end describe ".change_host_name" do let(:hostname) { "banana-rama.example.com" } it "sets the hostname" do comm.stub_command("hostname --fqdn | grep -w '#{hostname}'", exit_code: 1) comm.expect_command("hostname 'banana-rama'") described_class.change_host_name(machine, hostname) end it "does not change the hostname if already set" do comm.stub_command("hostname --fqdn | grep -w '#{hostname}'", exit_code: 0) described_class.change_host_name(machine, hostname) expect(comm.received_commands.size).to eq(1) end end end
Version data entries
6 entries across 6 versions & 2 rubygems