Sha256: b7ea5b98f984428016cab234add163c8ea0f2c563e19468524c7ed9e81dd1a75

Contents?: true

Size: 1.42 KB

Versions: 7

Compression:

Stored size: 1.42 KB

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  class Event
    describe Ringing do
      it 'registers itself' do
        expect(RayoNode.class_from_registration(:ringing, 'urn:xmpp:rayo:1')).to eq(described_class)
      end

      describe "from a stanza" do
        let :stanza do
          <<-MESSAGE
<ringing xmlns='urn:xmpp:rayo:1'>
  <!-- Signaling (e.g. SIP) Headers -->
  <header name="X-skill" value="agent" />
  <header name="X-customer-id" value="8877" />
</ringing>
          MESSAGE
        end

        subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' }

        it { should be_instance_of described_class }

        it_should_behave_like 'event'

        describe '#headers' do
          subject { super().headers }
          it { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }
        end

        context "with no headers provided" do
          let(:stanza) { '<ringing xmlns="urn:xmpp:rayo:1"/>' }

          describe '#headers' do
            subject { super().headers }
            it { should == {} }
          end
        end
      end

      describe "when setting options in initializer" do
        subject { described_class.new headers: { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }

        describe '#headers' do
          subject { super().headers }
          it { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
punchblock-2.7.5 spec/punchblock/event/ringing_spec.rb
punchblock-2.7.3 spec/punchblock/event/ringing_spec.rb
punchblock-2.7.2 spec/punchblock/event/ringing_spec.rb
punchblock-2.7.1 spec/punchblock/event/ringing_spec.rb
punchblock-2.7.0 spec/punchblock/event/ringing_spec.rb
punchblock-2.6.0 spec/punchblock/event/ringing_spec.rb
punchblock-2.5.3 spec/punchblock/event/ringing_spec.rb