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

Version Path
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/coreos/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/coreos/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/coreos/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/coreos/cap/change_host_name_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/coreos/cap/change_host_name_test.rb