Sha256: 18008f078df466870322ceb6002d7ce4ea7d9061cb5a16fb929323207c9b96ae

Contents?: true

Size: 1.1 KB

Versions: 25

Compression:

Stored size: 1.1 KB

Contents

# encoding: utf-8

require 'spec_helper'

module Punchblock
  module Command
    describe Redirect do
      it 'registers itself' do
        RayoNode.class_from_registration(:redirect, 'urn:xmpp:rayo:1').should be == Redirect
      end

      describe "when setting options in initializer" do
        subject { Redirect.new :to => 'tel:+14045551234', :headers => { :x_skill => 'agent', :x_customer_id => 8877 } }

        it_should_behave_like 'command_headers'

        its(:to) { should be == 'tel:+14045551234' }
      end

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

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

        it { should be_instance_of Redirect }

        it_should_behave_like 'command_headers'

        its(:to) { should be == 'tel:+14045551234' }
      end
    end # Redirect
  end # Command
end # Punchblock

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
punchblock-1.9.4 spec/punchblock/command/redirect_spec.rb
punchblock-1.9.3 spec/punchblock/command/redirect_spec.rb
punchblock-1.9.2 spec/punchblock/command/redirect_spec.rb
punchblock-1.9.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.9.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.8.2 spec/punchblock/command/redirect_spec.rb
punchblock-1.8.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.8.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.7.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.7.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.6.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.6.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.5.3 spec/punchblock/command/redirect_spec.rb
punchblock-1.5.2 spec/punchblock/command/redirect_spec.rb
punchblock-1.5.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.5.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.4.1 spec/punchblock/command/redirect_spec.rb
punchblock-1.4.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.3.0 spec/punchblock/command/redirect_spec.rb
punchblock-1.2.0 spec/punchblock/command/redirect_spec.rb