我在我们的软件中有一个错误,当我收到连接超时时发生。这些错误是非常罕见的(通常是当我的连接被我们的内部网络丢弃时)。我怎样才能人为地产生这种效果来测试我们的软件呢?
如果重要,应用程序是用c++ /MFC编写的,使用CAsyncSocket类。
编辑:
我尝试使用一个不存在的主机,我得到套接字错误:
无效的参数
我的下一个尝试是使用Alexander的建议,连接到不同的端口,例如81(在我自己的服务器上)。这很有效。与断开连接完全相同(等待60秒,然后出错)。谢谢你!
我在我们的软件中有一个错误,当我收到连接超时时发生。这些错误是非常罕见的(通常是当我的连接被我们的内部网络丢弃时)。我怎样才能人为地产生这种效果来测试我们的软件呢?
如果重要,应用程序是用c++ /MFC编写的,使用CAsyncSocket类。
编辑:
我尝试使用一个不存在的主机,我得到套接字错误:
无效的参数
我的下一个尝试是使用Alexander的建议,连接到不同的端口,例如81(在我自己的服务器上)。这很有效。与断开连接完全相同(等待60秒,然后出错)。谢谢你!
当前回答
Depending on what firewall software you have installed/available, you should be able to block the outgoing port and depending on how your firewall is setup it should just drop the connection request packet. No connection request, no connection, timeout ensues. This would probably work better if it was implemented at a router level (they tend to drop packets instead of sending resets, or whatever the equivalent is for the situation) but there's bound to be a software package that'd do the trick too.
其他回答
请连接不可路由的IP地址,如10.255.255.1。
下面的URL总是给出一个超时,并结合了@Alexander和@Emu上面最好的答案:
http://example.com:81
使用example.com:81是对Alexander的答案的改进,因为example.com是由DNS标准保留的,因此它将始终不可访问,不像google.com:81,如果谷歌感觉像它,它可能会改变。此外,由于example.com被定义为不可访问,因此不会使谷歌的服务器超载。
我想说这比@emu的答案有进步,因为它更容易记住。
如果您想使用活动连接,您还可以使用http://httpbin.org/delay/#,其中#是您希望服务器在发送响应之前等待的时间。只要你的超时时间比延迟时间短……应该是模拟效果。我已经成功地将它与python请求包一起使用。
如果你要发送任何敏感的东西,你可能需要修改你的请求——不知道发送给他们的数据会发生什么。
Depending on what firewall software you have installed/available, you should be able to block the outgoing port and depending on how your firewall is setup it should just drop the connection request packet. No connection request, no connection, timeout ensues. This would probably work better if it was implemented at a router level (they tend to drop packets instead of sending resets, or whatever the equivalent is for the situation) but there's bound to be a software package that'd do the trick too.
最简单的方法是使用CurrPorts删除连接。
然而,为了单元测试你的异常处理代码,也许你应该考虑抽象你的网络连接代码,并编写一个存根、mock或decorator来按需抛出异常。然后,您将能够测试应用程序错误处理逻辑,而不必实际使用网络。