Sha256: d0ead5ff12a51eca40a4d6d32172a8c96d1be5de14703574b3293164302cffa7
Contents?: true
Size: 1.1 KB
Versions: 6
Compression:
Stored size: 1.1 KB
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestSUSE::Cap::ChangeHostName" do let(:caps) do VagrantPlugins::GuestSUSE::Plugin .components .guest_capabilities[:suse] 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" 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(/echo '#{name}' > \/etc\/HOSTNAME/) expect(comm.received_commands[1]).to match(/hostname '#{name}'/) end it "does not change the hostname if already set" 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