Sha256: 1b70ef13bc08b5932e7d5f27d73870b3afc0e5bc241c9616f3712dfc5f29566b
Contents?: true
Size: 979 Bytes
Versions: 32
Compression:
Stored size: 979 Bytes
Contents
require_relative "../../../../base" describe "VagrantPlugins::GuestLinux::Cap::InsertPublicKey" do let(:caps) do VagrantPlugins::GuestLinux::Plugin .components .guest_capabilities[:linux] 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
32 entries across 28 versions & 6 rubygems