Sha256: 77285ef68136c61c26c355ab9553a7c77a57e483243885fd1312906d7cdf016a

Contents?: true

Size: 1.01 KB

Versions: 11

Compression:

Stored size: 1.01 KB

Contents

# encoding: utf-8
require 'spec_helper'
require 'shared/client_initializer_behaviour'

describe Ably::Realtime::Client do
  subject do
    Ably::Realtime::Client.new(client_options)
  end

  it_behaves_like 'a client initializer'

  context 'delegation to the REST Client' do
    let(:client_options) { { key: 'appid.keyuid:keysecret', auto_connect: false } }

    it 'passes on the options to the initializer' do
      rest_client = instance_double('Ably::Rest::Client', auth: instance_double('Ably::Auth'), options: client_options)
      expect(Ably::Rest::Client).to receive(:new).with(hash_including(client_options)).and_return(rest_client)
      subject
    end

    context 'for attribute' do
      [:environment, :use_tls?, :log_level, :custom_host].each do |attribute|
        specify "##{attribute}" do
          expect(subject.rest_client).to receive(attribute)
          subject.public_send attribute
        end
      end
    end
  end

  after(:all) do
    sleep 1 # let realtime library shut down any open clients
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
ably-1.0.7 spec/unit/realtime/client_spec.rb
ably-rest-1.0.6 lib/submodules/ably-ruby/spec/unit/realtime/client_spec.rb
ably-1.0.6 spec/unit/realtime/client_spec.rb
ably-rest-1.0.5 lib/submodules/ably-ruby/spec/unit/realtime/client_spec.rb
ably-1.0.5 spec/unit/realtime/client_spec.rb
ably-1.0.4 spec/unit/realtime/client_spec.rb
ably-1.0.3 spec/unit/realtime/client_spec.rb
ably-1.0.2 spec/unit/realtime/client_spec.rb
ably-1.0.1 spec/unit/realtime/client_spec.rb
ably-rest-1.0.0 lib/submodules/ably-ruby/spec/unit/realtime/client_spec.rb
ably-1.0.0 spec/unit/realtime/client_spec.rb