require "spec_helper" describe Savon::SOAPFault do let(:soap_fault) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault)), nori } let(:soap_fault2) { Savon::SOAPFault.new new_response(:body => Fixture.response(:soap_fault12)), nori } let(:another_soap_fault) { Savon::SOAPFault.new new_response(:body => Fixture.response(:another_soap_fault)), nori } let(:no_fault) { Savon::SOAPFault.new new_response, nori } let(:nori) { Nori.new(:strip_namespaces => true, :convert_tags_to => lambda { |tag| tag.snakecase.to_sym }) } it "inherits from Savon::Error" do expect(Savon::SOAPFault.ancestors).to include(Savon::Error) end describe "#http" do it "returns the HTTPI::Response" do expect(soap_fault.http).to be_an(HTTPI::Response) end end describe ".present?" do it "returns true if the HTTP response contains a SOAP 1.1 fault" do http = new_response(:body => Fixture.response(:soap_fault)) expect(Savon::SOAPFault.present? http).to be_true end it "returns true if the HTTP response contains a SOAP 1.2 fault" do http = new_response(:body => Fixture.response(:soap_fault12)) expect(Savon::SOAPFault.present? http).to be_true end it "returns true if the HTTP response contains a SOAP fault with different namespaces" do http = new_response(:body => Fixture.response(:another_soap_fault)) expect(Savon::SOAPFault.present? http).to be_true end it "returns false unless the HTTP response contains a SOAP fault" do expect(Savon::SOAPFault.present? new_response).to be_false end end [:message, :to_s].each do |method| describe "##{method}" do it "returns a SOAP 1.1 fault message" do expect(soap_fault.send method).to eq("(soap:Server) Fault occurred while processing.") end it "returns a SOAP 1.2 fault message" do expect(soap_fault2.send method).to eq("(soap:Sender) Sender Timeout") end it "returns a SOAP fault message (with different namespaces)" do expect(another_soap_fault.send method).to eq("(ERR_NO_SESSION) Wrong session message") end end end describe "#to_hash" do it "returns the SOAP response as a Hash unless a SOAP fault is present" do expect(no_fault.to_hash[:authenticate_response][:return][:success]).to be_true end it "returns a SOAP 1.1 fault as a Hash" do expected = { :fault => { :faultstring => "Fault occurred while processing.", :faultcode => "soap:Server" } } expect(soap_fault.to_hash).to eq(expected) end it "returns a SOAP 1.2 fault as a Hash" do expected = { :fault => { :detail => { :max_time => "P5M" }, :reason => { :text => "Sender Timeout" }, :code => { :value => "soap:Sender", :subcode => { :value => "m:MessageTimeout" } } } } expect(soap_fault2.to_hash).to eq(expected) end end def new_response(options = {}) defaults = { :code => 500, :headers => {}, :body => Fixture.response(:authentication) } response = defaults.merge options HTTPI::Response.new response[:code], response[:headers], response[:body] end end