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

Version Path
vagrant-aws-mkubenka-0.7.2.pre.10 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-aws-mkubenka-0.7.2.pre.9 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.9.5.1 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.9.1.1 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.8.5.2 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.8.5.1 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.8.4.2 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb
vagrant-unbundled-1.8.4.1 test/unit/plugins/guests/linux/cap/insert_public_key_test.rb