Sha256: a25ce5be52f05d70dc20efdd18023e39801b897044431cfc053e3805d32cc84f

Contents?: true

Size: 1.81 KB

Versions: 17

Compression:

Stored size: 1.81 KB

Contents

# encoding: utf-8

require 'spec_helper'

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

      describe "from a stanza" do
        let(:stanza) do
          <<-STANZA
            <hangup xmlns="urn:xmpp:rayo:1">
              <header name="X-skill" value="agent" />
              <header name="X-customer-id" value="8877" />
            </hangup>
          STANZA
        end

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

        it { should be_instance_of described_class }
        its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }

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

          its(:headers) { should == {} }
        end
      end

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

        its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } }

        describe "exporting to Rayo" do
          it "should export to XML that can be understood by its parser" do
            new_instance = RayoNode.from_xml subject.to_rayo
            new_instance.should be_instance_of described_class
            new_instance.headers.should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' }
          end

          it "should render to a parent node if supplied" do
            doc = Nokogiri::XML::Document.new
            parent = Nokogiri::XML::Node.new 'foo', doc
            doc.root = parent
            rayo_doc = subject.to_rayo(parent)
            rayo_doc.should == parent
          end
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
punchblock-2.5.2 spec/punchblock/command/hangup_spec.rb
punchblock-2.5.1 spec/punchblock/command/hangup_spec.rb
punchblock-2.5.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.4.2 spec/punchblock/command/hangup_spec.rb
punchblock-2.4.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.3.1 spec/punchblock/command/hangup_spec.rb
punchblock-2.3.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.2.2 spec/punchblock/command/hangup_spec.rb
punchblock-2.2.1 spec/punchblock/command/hangup_spec.rb
punchblock-2.2.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.1.1 spec/punchblock/command/hangup_spec.rb
punchblock-2.1.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.0.2 spec/punchblock/command/hangup_spec.rb
punchblock-2.0.1 spec/punchblock/command/hangup_spec.rb
punchblock-2.0.0 spec/punchblock/command/hangup_spec.rb
punchblock-2.0.0.beta2 spec/punchblock/command/hangup_spec.rb
punchblock-2.0.0.beta1 spec/punchblock/command/hangup_spec.rb