# encoding: utf-8 require 'spec_helper' module Punchblock class Event describe Offer do it 'registers itself' do RayoNode.class_from_registration(:offer, 'urn:xmpp:rayo:1').should be == described_class end describe "from a stanza" do let :stanza do <<-MESSAGE
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(:to) { should be == 'tel:+18003211212' } its(:from) { should be == 'tel:+13058881212' } its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } context "with no headers provided" do let(:stanza) { '' } its(:headers) { should == {} } end context "with multiple headers of the same name" do let :stanza do <<-MESSAGE
MESSAGE end its(:headers) { should == {'X-skill' => ['sales', 'complaints']} } end end describe "when setting options in initializer" do subject do described_class.new to: 'tel:+18003211212', from: 'tel:+13058881212', headers: { 'X-skill' => 'agent', 'X-customer-id' => '8877' } end its(:to) { should be == 'tel:+18003211212' } its(:from) { should be == 'tel:+13058881212' } its(:headers) { should == { 'X-skill' => 'agent', 'X-customer-id' => '8877' } } context "with headers set to nil" do subject do described_class.new headers: nil end its(:headers) { should == {} } end end end end end