require "spec_helper" describe Hash do describe "to_soap_xml" do describe "returns SOAP request compatible XML" do it "for a simple Hash" do { :some => "user" }.to_soap_xml.should == "user" end it "for a nested Hash" do { :some => { :new => "user" } }.to_soap_xml. should == "user" end it "for a Hash with multiple keys" do soap_xml = { :all => "users", :before => "whatever" }.to_soap_xml soap_xml.should include "users" soap_xml.should include "whatever" end it "for a Hash containing an Array" do { :some => ["user", "gorilla"] }.to_soap_xml. should == "usergorilla" end it "for a Hash containing an Array of Hashes" do { :some => [{ :new => "user" }, { :old => "gorilla" }] }.to_soap_xml. should == "usergorilla" end end it "converts Hash key Symbols to lowerCamelCase" do { :find_or_create => "user" }.to_soap_xml. should == "user" end it "does not convert Hash key Strings" do { "find_or_create" => "user" }.to_soap_xml. should == "user" end it "converts DateTime objects to xs:dateTime compliant Strings" do { :before => UserFixture.datetime_object }.to_soap_xml. should == "" << UserFixture.datetime_string << "" end it "converts Objects responding to to_datetime to xs:dateTime compliant Strings" do singleton = Object.new def singleton.to_datetime UserFixture.datetime_object end { :before => singleton }.to_soap_xml. should == "" << UserFixture.datetime_string << "" end it "calls to_s on Strings even if they respond to to_datetime" do singleton = "gorilla" def singleton.to_datetime UserFixture.datetime_object end { :name => singleton }.to_soap_xml.should == "gorilla" end it "call to_s on any other Object" do [666, true, false, nil].each do |object| { :some => object }.to_soap_xml.should == "#{object}" end end end describe "to_soap_fault_message" do it "returns a SOAP fault message for SOAP version 1" do soap_fault = soap_fault_hash( "faultcode" => "soap:Server", "faultstring" => "Fault occurred while processing." ) soap_fault.to_soap_fault_message.should be_a String soap_fault.to_soap_fault_message.should_not be_empty end it "returns a SOAP fault message for SOAP version 2" do soap_fault = soap_fault_hash( "code" => { "value" => "soap:Server" }, "reason" => { "text" => "Fault occurred while processing." } ) soap_fault.to_soap_fault_message.should be_a String soap_fault.to_soap_fault_message.should_not be_empty end it "returns nil in case the Hash does not include a SOAP fault" do { :soap_fault => false }.to_soap_fault_message.should be_nil end it "returns nil for unknown SOAP faults" do soap_fault_hash.to_soap_fault_message.should be_nil end def soap_fault_hash(details = {}) { "soap:Envelope" => { "soap:Body" => { "soap:Fault" => details } } } end end describe "map_soap_response" do it "converts Hash key Strings to snake_case Symbols" do { "userResponse" => { "accountStatus" => "active" } }.map_soap_response. should == { :user_response => { :account_status => "active" } } end it "strips namespaces from Hash keys" do { "ns:userResponse" => { "ns2:id" => "666" } }.map_soap_response. should == { :user_response => { :id => "666" } } end it "converts Hash keys and values in Arrays" do { "response" => [{ "name" => "dude" }, { "name" => "gorilla" }] }.map_soap_response. should == { :response=> [{ :name => "dude" }, { :name => "gorilla" }] } end it "converts xsi:nil values to nil Objects" do { "userResponse" => { "xsi:nil" => "true" } }.map_soap_response. should == { :user_response => nil } end it "converts Hash values matching the xs:dateTime format into DateTime Objects" do { "response" => { "at" => UserFixture.datetime_string } }.map_soap_response. should == { :response => { :at => UserFixture.datetime_object } } end it "converts Hash values matching 'true' to TrueClass" do { "response" => { "active" => "false" } }.map_soap_response. should == { :response => { :active => false } } end it "converts Hash values matching 'false' to FalseClass" do { "response" => { "active" => "true" } }.map_soap_response. should == { :response => { :active => true } } end end end