查看Savon请求XML而不发送到服务器

时间:2011-05-02 17:04:18

标签: ruby xml soap savon httpi

我正在使用Savon gem使用类似于下面的代码来发出SOAP请求。它工作正常,但我想查看/捕获请求XML而不实际调用他们的服务器。通过在请求之后粘贴调试器行并检查客户端变量,我可以在发出请求后立即查看它。

有没有人知道在不实际发出请求的情况下查看请求XML的方法?我希望能够使用Cucumber或Rspec对模式验证XML。

client = Savon::Client.new do |wsdl, http|
  wsdl.document = "http://fakesite.org/fake.asmx?wsdl"
end

client.request(:testpostdata, :xmlns => "http://fakesite.org/") do
  soap.header = { :cAuthentication => {"UserName" => "MyName", "Password" => "MyPassword" } }
  soap.body = { :xml_data => to_xml }
end

7 个答案:

答案 0 :(得分:44)

使用Savon 2我这样做,写一个从客户端返回请求体的方法。

 client = Savon::Client.new(....)

文档中未提及

  def get_request
     # list of operations can be found using client.operations
     ops = client.operation(:action_name_here)

     # build the body of the xml inside the message here        
     ops.build(message: { id: 42, name: "Test User", age: 20 }).to_s
  end

答案 1 :(得分:28)

您可以直接通过Savon::Client#build_request方法。

示例:

request = client.build_request(:some_operation, some_payload)
request.body # Get the request body
request.headers # Get the request headers

为完整文档取一个@ https://github.com/savonrb/savon/blob/master/lib/savon/request.rb的高峰。

答案 2 :(得分:12)

我正在使用Savon 2.11,我可以在客户端使用全局变量来完成它:

def client
  @client ||= Savon.client(soap_version: 2,
                           wsdl:         config.wsdl,
                           logger:       Rails.logger,
                           log:          true)
end

More info on the globals here.

然后记录器为请求和响应吐出主机,http动词和完整的xml("标题"和正文)。

答案 3 :(得分:11)

虽然我确信有更好的方法可以做到这一点,但我只是过度回应。

class Savon::SOAP::Request
  def response
    pp   self.request.headers
    puts
    puts self.request.body
    exit
  end
end

答案 4 :(得分:9)

自上次发布以来,他们已经更新了API。在Savon.client中设置此设置:: pretty_print_xml =>真正。通话结束后,在日志中搜索SOAP请求:输出被放到stdout。如果您正在从控制台测试连接,请检查控制台控制台历史记录。

答案 5 :(得分:7)

Savon使用HTTPI来执行SOAP请求。 HTTPI是各种Ruby HTTP客户端之上的通用接口。您可以通过以下方式模拟/存储Savon执行的HTTP请求:

HTTPI.expects(:post).with do |http|
  SchemaValidation.validate(:get_user, http.body)
end

请注意,我使用Mocha来模拟SOAP请求,获取HTTP正文并根据某些验证方法验证它(伪代码)。

目前,Savon不支持在不执行请求的情况下构建请求。因此,验证请求的唯一方法是拦截它。

如果您需要Savon支持此功能,请告诉我open a ticket over at GitHub

编辑:还有savon_spec,这是使用Savon进行基本夹具测试的小帮手。

答案 6 :(得分:6)

我遇到了同样的问题,并按照以下方式修补了Savon:

module Savon
  class Client
    def get_request_xml operation_name, locals
      Savon::Builder.new(operation_name, @wsdl, @globals, locals).pretty
    end
  end
end

这将构建XML并将其作为字符串返回,而不将其发送到API端点。它不会像client.call那样接受块参数,因此它无法重现您正在进行的每种类型的请求,但它现在满足了我的需求。