如何对我的支付网关集成进行负载测试?
How can i load test my Payment gateway integration?
我在网站上集成了 payU,我将所有数据发送到支付网关,然后它处理他端的信息,然后 return 用户返回我们的平台。
所以我想加载测试有多少用户能够同时付款。
通常情况下,您不应将外部域包含在负载测试中,因为:
- 这些域可能不允许负载测试
- 他们可以阻止流量,认为它是欺诈性的,尤其是当多个请求同时来自一个 IP 地址时
- 即使检测到性能问题,也无法控制外部域的行为
因此请确保您的测试仅关注您的应用程序,任何外部元素,如横幅、脚本、样式、字体、地图、视频,任何需要排除的元素。有关详细信息,请参阅 Excluding Domains from the Load Test 文章。
如果您出于任何原因仍想继续进行负载测试,请确保您使用 sandbox checkout integration with API Key dedicated for testing purposes so you won't spend real money and will not be blocked by fraud protection mechanisms. In this case just make sure your test behaves exactly like real user does from network activity perspective, i.e. JMeter sends the same HTTP Requests 与真实浏览器一样,并收到相同的响应。
我在网站上集成了 payU,我将所有数据发送到支付网关,然后它处理他端的信息,然后 return 用户返回我们的平台。 所以我想加载测试有多少用户能够同时付款。
通常情况下,您不应将外部域包含在负载测试中,因为:
- 这些域可能不允许负载测试
- 他们可以阻止流量,认为它是欺诈性的,尤其是当多个请求同时来自一个 IP 地址时
- 即使检测到性能问题,也无法控制外部域的行为
因此请确保您的测试仅关注您的应用程序,任何外部元素,如横幅、脚本、样式、字体、地图、视频,任何需要排除的元素。有关详细信息,请参阅 Excluding Domains from the Load Test 文章。
如果您出于任何原因仍想继续进行负载测试,请确保您使用 sandbox checkout integration with API Key dedicated for testing purposes so you won't spend real money and will not be blocked by fraud protection mechanisms. In this case just make sure your test behaves exactly like real user does from network activity perspective, i.e. JMeter sends the same HTTP Requests 与真实浏览器一样,并收到相同的响应。