3

有没有办法模拟购买 PaypalExpressGateway

我对 PayPal 付款处理使用了两个操作,第一个操作将用户带到 paypal 沙箱登录,并将重定向回我的应用程序以进行付款确认

但是该PAYPAL_GATEWAY.purchase方法不成功并返回错误消息Payment has not been authorized by the user.

好吧,我想这是由于跳过了授权用户购买的步骤

有没有办法我可以伪造或模拟 PayPal 来接受交易?

ActionController::TestCase要测试这些操作products#initiate_payment products#confirm_payment将这些操作称为

post :initiate_payment, initiate_payment_action_params(@product)
get :confirm_payment, confirm_action_params(@product, product_purchased, paypal_token)

并设置贝宝回调响应,然后重定向到贝宝登录

@setup_response = PAYPAL_GATEWAY.setup_purchase(amount, ip: request.remote_ip,
      items: [{name: @product.name, quantity: 1, description: @product.description, amount: amount}],
      currency: 'USD',
      return_url: url_for(action: 'confirm_payment',
                                 product_purchased: @product_purchased.id,                                   
                                 only_path: false),    
      cancel_return_url: url_for(action: 'index',
                                 product_purchased: @product_purchased.id,
                                 only_path: false))

redirect_to PAYPAL_GATEWAY.redirect_url_for(@setup_response.token)

我已经在我的操作中处理了购买交易,我products#confirm_payment将 confirm_payment 的参数模拟为

{"product_purchased"=>"10", "token"=>"EC-91J25480XA799581U", "PayerID"=>"4QBC9Y658K6MA", "id"=>"55", "controller"=>"products", "action"=>"confirm_payment"}

get :confirm_payment, confirm_action_params(@product, product_purchased, paypal_token)

PAYPAL_GATEWAY 的配置

PAYPAL_GATEWAY ||= ActiveMerchant::Billing::PaypalExpressGateway.new(paypal_options)

我还没有找到任何方法来实现这一点,所以这可能会帮助他们中的许多人......

除此以外的任何更好的解决方案将不胜感激

提前致谢

4

1 回答 1

1

简短的回答是您必须经过并进行测试购买。另外,这将使您能够体验买家从头到尾的体验。您尝试跳过一两步是否有特殊原因?

一些商家也会只通过流程一次,并捕获发回的信息,然后使用相同的字符串创建一个表单页面,他们只是使用该页面将信息发布回他们的页面进行测试。这样他们就不必一遍又一遍地通过流程,但这可能会也可能不会取决于您的设置。

最典型的是选择选项 A 并从头到尾完成流程。

于 2013-02-27T14:39:52.527 回答