Sha256: f3e180054825854765725227ecd1ddd72b8757218785279173e5103239c275ad

Contents?: true

Size: 887 Bytes

Versions: 6

Compression:

Stored size: 887 Bytes

Contents

require 'spec_helper'

module Punchblock
  class Event
    describe Offer do
      it 'registers itself' do
        RayoNode.class_from_registration(:offer, 'urn:xmpp:rayo:1').should == Offer
      end

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

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

        it { should be_instance_of Offer }

        it_should_behave_like 'event'
        it_should_behave_like 'event_headers'

        its(:to) { should == 'tel:+18003211212' }
        its(:from) { should == 'tel:+13058881212' }
      end
    end
  end
end # Punchblock

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
punchblock-0.5.1 spec/punchblock/event/offer_spec.rb
punchblock-0.5.0 spec/punchblock/event/offer_spec.rb
punchblock-0.4.3 spec/punchblock/event/offer_spec.rb
punchblock-0.4.2 spec/punchblock/event/offer_spec.rb
punchblock-0.4.1 spec/punchblock/event/offer_spec.rb
punchblock-0.4.0 spec/punchblock/event/offer_spec.rb