Sha256: 39cf969bb8de3ae976d47597f12fd67f3c6cc7df465ae0d59f4da0741f41ac84

Contents?: true

Size: 1.54 KB

Versions: 6

Compression:

Stored size: 1.54 KB

Contents

require 'spec_helper'

describe Pubnub::ChannelRegistration do
  it_behaves_like 'an event'

  around :each do |example|
    Celluloid.boot
    example.run
    Celluloid.shutdown
  end

  context 'given basic parameters' do
    before :each do
      @pubnub = Pubnub::Client.new(
          subscribe_key: 'sub-c-b7fb805a-1777-11e6-be83-0619f8945a4f',
          publish_key: 'pub-c-b42cec2f-f468-4784-8833-dd2b074538c4',
          secret_key: 'sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy',
          auth_key: 'ruby-test-auth',
          uuid: 'ruby-test-uuid'
      )
    end

    it 'works' do
      VCR.use_cassette('lib/events/channel-registration', record: :once) do
        envelope = @pubnub.channel_registration(
            action: :add,
            channel: :demo,
            group: :demo
        ).value

        expect(envelope.status).to satisfies_schema Pubnub::Schemas::Envelope::StatusSchema
        expect(envelope.result).to satisfies_schema Pubnub::Schemas::Envelope::ResultSchema
      end
    end

    it 'forms valid ErrorEnvelope on error' do
      VCR.use_cassette('lib/events/channel-registration-error', record: :once) do
        envelope = @pubnub.channel_registration(
            action: :add,
            channel: :demo,
            group: :demo
        ).value

        expect(envelope.is_a?(Pubnub::ErrorEnvelope)).to eq true
        expect(envelope.status).to satisfies_schema Pubnub::Schemas::Envelope::StatusSchema
        expect(envelope.result).to satisfies_schema Pubnub::Schemas::Envelope::ResultSchema
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pubnub-4.0.4 spec/lib/events/channel_registration_spec.rb
pubnub-4.0.3 spec/lib/events/channel_registration_spec.rb
pubnub-4.0.1 spec/lib/events/channel_registration_spec.rb
pubnub-4.0.0 spec/lib/events/channel_registration_spec.rb
pubnub-4.0.0beta2 spec/lib/events/channel_registration_spec.rb
pubnub-4.0.0beta1 spec/lib/events/channel_registration_spec.rb