Sha256: 2e22d83f387388a26e9d1bd4c20c30953f7b997402b0ca1122d6c65235144510
Contents?: true
Size: 1.62 KB
Versions: 17
Compression:
Stored size: 1.62 KB
Contents
# encoding: utf-8 require 'spec_helper' module Punchblock class Event describe End do it 'registers itself' do RayoNode.class_from_registration(:end, 'urn:xmpp:rayo:1').should be == described_class end describe "from a stanza" do let :stanza do <<-MESSAGE <end xmlns="urn:xmpp:rayo:1"> <timeout platform-code="18" /> <!-- Signaling (e.g. SIP) Headers --> <header name="X-skill" value="agent" /> <header name="X-customer-id" value="8877" /> </end> MESSAGE end subject { RayoNode.from_xml parse_stanza(stanza).root, '9f00061', '1' } it { should be_instance_of described_class } it_should_behave_like 'event' its(:reason) { should be == :timeout } its(:platform_code) { should be == '18' } its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } context "with no headers or reason provided" do let(:stanza) { '<end xmlns="urn:xmpp:rayo:1"/>' } its(:reason) { should be_nil} its(:platform_code) { should be_nil } its(:headers) { should == {} } end end describe "when setting options in initializer" do subject do described_class.new reason: :hangup, platform_code: 18, headers: { 'X-skill' => 'agent', 'X-customer-id' => '8877' } end its(:reason) { should be == :hangup } its(:platform_code) { should be == '18' } its(:headers) { should be == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } end end end end
Version data entries
17 entries across 17 versions & 1 rubygems