Sha256: 4c42ee8d271dfc28146a59d0152624ba50fdb97f8efd15998739a30590bb437d

Contents?: true

Size: 1.38 KB

Versions: 6

Compression:

Stored size: 1.38 KB

Contents

require_relative "../../../../base"

describe "VagrantPlugins::GuestUbuntu::Cap::ChangeHostName" do
  let(:caps) do
    VagrantPlugins::GuestUbuntu::Plugin
      .components
      .guest_capabilities[:ubuntu]
  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(:cap) { caps.get(:change_host_name) }

    let(:name) { 'banana-rama.example.com' }

    it "sets the hostname if not set" do
      comm.stub_command("hostname -f | grep -w '#{name}'", exit_code: 1)
      cap.change_host_name(machine, name)
      expect(comm.received_commands[1]).to match(/hostname -F \/etc\/hostname/)
      expect(comm.received_commands[1]).to match(/\/etc\/init.d\/hostname.sh start/)
      expect(comm.received_commands[1]).to match(/\/etc\/init.d\/hostname start/)
      expect(comm.received_commands[1]).to match(/\/etc\/init.d\/networking force-reload/)
      expect(comm.received_commands[1]).to match(/\/etc\/init.d\/network-manager force-reload/)
    end

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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/ubuntu/cap/change_host_name_test.rb