Sha256: a25dc9614e3feda2e348e19c6cff5ffe3024c4132d1f67be50282506bd8fd2eb

Contents?: true

Size: 1.08 KB

Versions: 7

Compression:

Stored size: 1.08 KB

Contents

require 'spec_helper'

describe AmiSpec::WaitForSSH do
  describe '#wait' do
    let(:retries) { 30 }
    subject { described_class.wait('127.0.0.1', 'ubuntu', 'key.pem', 30) }

    before do
      allow_any_instance_of(Object).to receive(:sleep)
    end

    it 'returns after one attempt if ssh connection succeeds' do
      expect(Net::SSH).to receive(:start)

      subject
    end

    context 'ssh fails' do
      before do
        allow(Net::SSH).to receive(:start).and_raise(Errno::ECONNREFUSED, 'ssh failed')
      end

      it 'raises an exception' do
        expect{subject}.to raise_error(AmiSpec::InstanceConnectionTimeout)
      end

      it 'returns the last error' do
        expect(Net::SSH).to receive(:start).and_raise(Errno::ECONNREFUSED, 'some other error')
        expect{subject}.to raise_error(AmiSpec::InstanceConnectionTimeout, /ssh failed/)
      end

      it 'tries the number of retries specified' do
        expect(Net::SSH).to receive(:start).exactly(retries).times

        expect{subject}.to raise_error(AmiSpec::InstanceConnectionTimeout)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ami_spec-1.2.0 spec/wait_for_ssh_spec.rb
ami_spec-1.1.0 spec/wait_for_ssh_spec.rb
ami_spec-1.0.1 spec/wait_for_ssh_spec.rb
ami_spec-1.0.0 spec/wait_for_ssh_spec.rb
ami_spec-0.3.0 spec/wait_for_ssh_spec.rb
ami_spec-0.2.0 spec/wait_for_ssh_spec.rb
ami_spec-0.1.0 spec/wait_for_ssh_spec.rb