在测试中使用fake-valid-nonce创建事务时,事务结果显示消息:“Gateway Rejected:duplicate”

时间:2016-11-10 05:39:25

标签: testing transactions braintree

我在测试中尝试使用fake-valid-nonce创建交易时出现问题。

以下是有关创建交易的代码:

const createTransaction = (price, nonceFromTheClient, customerBrainTreeId) => {
  const transactionToken = new Promise((resolve, reject) => {
    gateway.transaction.sale(
      {
        amount: price,
        customerId: customerBrainTreeId,
        paymentMethodNonce: nonceFromTheClient,
        options: {
          submitForSettlement: true
        }
      },
      (error, result) => {
        if (error) {
          logger.error(`create transaction error: ${error}`);
          reject(error);
        } else {
          resolve(result);
        }
      });
  });

  return transactionToken;
};

这是关于测试的代码:

it(‘**************************', () => {
  return PaymentService.createTransaction("104.0", 'fake-valid-nonce', null)
    .then(result => {
      expect(result.success).to.be.true;
      expect(result.transaction.status).to.be.equals('submitted_for_settlement');
      expect(result.transaction.type).to.be.equals('sale');
    });
});

当我第一次运行测试时,此测试将通过。但是,如果我多次运行此测试,此测试将无法通过,并且事务结果会显示消息:“Gateway Rejected:duplicate”

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

我已经在braintree支持团队的帮助下找到了解决方案:

触发错误Gateway Rejected: duplicate不是因为您使用测试现时值,而是因为您在沙箱帐户中启用了“重复事务检查”选项(默认情况下已启用)。重复的事务检查可防止事务请求意外处理多次。如果客户刷新您的结帐页面或点击发出新API请求的按钮,就会发生这种情况。为了禁用或配置该选项,我邀请您登录Braintree控制面板,然后转到设置>处理>在重复交易设置下编辑或禁用