Ruby on rails 针对XML请求的Rails WebMock

Ruby on rails 针对XML请求的Rails WebMock,ruby-on-rails,xml,paypal,webmock,Ruby On Rails,Xml,Paypal,Webmock,我很难弄清楚如何使用webmock将stub_请求与XML请求相匹配 请求: <?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchem

我很难弄清楚如何使用webmock将stub_请求与XML请求相匹配

请求:

    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <env:Header>
        <RequesterCredentials xmlns="urn:ebay:api:PayPalAPI" xmlns:n1="urn:ebay:apis:eBLBaseComponents" env:mustUnderstand="0">
          <n1:Credentials>
            <n1:Username>XYZ</n1:Username>
            <n1:Password>ABC</n1:Password><n1:Subject/>
            <n1:Signature>HUGE-STRING</n1:Signature>
          </n1:Credentials>
        </RequesterCredentials>
      </env:Header>
      <env:Body>
        <ManageRecurringPaymentsProfileStatusReq xmlns="urn:ebay:api:PayPalAPI">
          <ManageRecurringPaymentsProfileStatusRequest xmlns:n2="urn:ebay:apis:eBLBaseComponents">
            <n2:Version>124</n2:Version>
            <n2:ManageRecurringPaymentsProfileStatusRequestDetails>
              <ProfileID>sdaddsadsd</ProfileID>
              <n2:Action>Cancel</n2:Action>
            </n2:ManageRecurringPaymentsProfileStatusRequestDetails>
          </ManageRecurringPaymentsProfileStatusRequest>
        </ManageRecurringPaymentsProfileStatusReq>
      </env:Body>
    </env:Envelope>

(等等)

我们失败了


有人吗?

如果您可以将XML保存到单独的XML文件中(例如
request.XML
),则非常简单:

stub\u请求(:any,'https://sandbox.paypal.com')
.with(正文:File.read('request.xml').strip)
标题可以省略

可能会帮助您进行URL匹配

请注意,条带将移除末端送料

stub_request(:any, /.*.sandbox.paypal.com\/2.0\//).
   with(:body => WebMock::Matchers::HashIncludingMatcher.new({'n2:Action'=>'Cancel'}),
    :headers => {'User-Agent'=>'Ruby'}).
   to_return(:status => 200, ...
stub_request(:any, /.*.sandbox.paypal.com\/2.0\//).
   with(query:
    hash_including({ProfileID: 'sdaddsadsd'}),
    :headers => {'User-Agent'=>'Ruby'}).
   to_return(:status => 200, ...