Sha256: 062d096b56067b7bba94265971353e7f0a4d92984f58daabc16453f08e8bdfd3
Contents?: true
Size: 973 Bytes
Versions: 30
Compression:
Stored size: 973 Bytes
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestBSD::Cap::InsertPublicKey" do let(:caps) do VagrantPlugins::GuestBSD::Plugin .components .guest_capabilities[:bsd] 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 ".insert_public_key" do let(:cap) { caps.get(:insert_public_key) } it "inserts the public key" do cap.insert_public_key(machine, "ssh-rsa ...") expect(comm.received_commands[0]).to match(/mkdir -p ~\/.ssh/) expect(comm.received_commands[0]).to match(/chmod 0700 ~\/.ssh/) expect(comm.received_commands[0]).to match(/cat '\/tmp\/vagrant-(.+)' >> ~\/.ssh\/authorized_keys/) expect(comm.received_commands[0]).to match(/chmod 0600 ~\/.ssh\/authorized_keys/) end end end
Version data entries
30 entries across 26 versions & 6 rubygems