Sha256: 085f8d87a32c706f680bdbd53bbea651398b48c6352aace5b63f3d4db173e5d2

Contents?: true

Size: 1.02 KB

Versions: 24

Compression:

Stored size: 1.02 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(:name) { "banana-rama.example.com" }

    it "sets the hostname" do
      comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 1)
      comm.expect_command("hostname 'banana-rama'")
      described_class.change_host_name(machine, name)
    end

    it "does not change the hostname if already set" do
      comm.stub_command("hostname -f | grep '^#{name}$'", exit_code: 0)
      described_class.change_host_name(machine, name)
      expect(comm.received_commands.size).to eq(1)
    end
  end
end

Version data entries

24 entries across 20 versions & 4 rubygems

Version Path
vagrant-unbundled-1.9.5.1 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb