Sha256: 912da9c1c2942c797a3dec1b57d853b491e721128ef621519e41d8d473378576
Contents?: true
Size: 1.29 KB
Versions: 6
Compression:
Stored size: 1.29 KB
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestDebian::Cap::ChangeHostName" do let(:caps) do VagrantPlugins::GuestDebian::Plugin .components .guest_capabilities[:debian] 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(/invoke-rc.d hostname.sh start/) expect(comm.received_commands[1]).to match(/invoke-rc.d networking force-reload/) expect(comm.received_commands[1]).to match(/invoke-rc.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