我的命令行 Ruby 程序的一部分涉及在处理任何命令之前检查是否有 Internet 连接。程序中的实际检查是微不足道的(使用 Socket::TCPSocket),但我试图在 Cucumber 中测试这种行为以进行集成测试。
编码:
def self.has_internet?(force = nil)
if !force.nil? then return force
begin
TCPSocket.new('www.yelp.co.uk', 80)
return true
rescue SocketError
return false
end
end
if has_internet? == false
puts("Could not connect to the Internet!")
exit 2
end
特点:
Scenario: Failing to log in due to no Internet connection
Given the Internet is down
When I run `login <email_address> <password>`
Then the exit status should be 2
And the output should contain "Could not connect to the Internet!"
我显然不想更改实现以适应测试,并且我要求所有场景都通过。显然,如果实际上没有连接,则测试按原样通过,但我的其他测试失败,因为它们需要连接。
我的问题:我怎样才能以有效的方式对此进行测试并让我的所有测试都通过?