summaryrefslogtreecommitdiffstats
path: root/cucumber/features/step_definitions/torified_browsing.rb
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2016-05-11 17:11:01 +0200
committerPhilip Hands <phil@hands.com>2016-05-11 17:11:01 +0200
commita5d56e3b5443263b53b0487c81125123411bd0cf (patch)
tree71b1bdafc0a5978bca9073609eff33e228e29a12 /cucumber/features/step_definitions/torified_browsing.rb
parent555d9414f758cc0062eff700a0352ae177fd9be5 (diff)
downloadjenkins.debian.net-a5d56e3b5443263b53b0487c81125123411bd0cf.tar.xz
move cucumber things under cucumber/
Diffstat (limited to 'cucumber/features/step_definitions/torified_browsing.rb')
-rw-r--r--cucumber/features/step_definitions/torified_browsing.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/cucumber/features/step_definitions/torified_browsing.rb b/cucumber/features/step_definitions/torified_browsing.rb
new file mode 100644
index 00000000..c8f3ff1d
--- /dev/null
+++ b/cucumber/features/step_definitions/torified_browsing.rb
@@ -0,0 +1,5 @@
+When /^no traffic has flowed to the LAN$/ do
+ leaks = FirewallLeakCheck.new(@sniffer.pcap_file, :ignore_lan => false)
+ assert(not(leaks.ipv4_tcp_leaks.include?(@lan_host)),
+ "Traffic was sent to LAN host #{@lan_host}")
+end