diff options
author | Tails developers <amnesia@boum.org> | 2014-12-19 00:40:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-21 09:45:40 +0100 |
commit | 51680b6ebb645d37ebdfcd122ca163b3a638aefa (patch) | |
tree | 337e128d2eac3cbc89ecbacf38851bfa33469cd5 /features/firewall_leaks.feature | |
parent | 44bab3c86ca3d95837f4c50cc535206352385a46 (diff) | |
download | jenkins.debian.net-51680b6ebb645d37ebdfcd122ca163b3a638aefa.tar.xz |
files copied from https://git-tails.immerda.ch/tails - many thanks to the tails developers for their nice work and documentation of it - these files have been released under the GNU General Public License version 3 or (at your option) any later version
features/images has been omitted
Diffstat (limited to 'features/firewall_leaks.feature')
-rw-r--r-- | features/firewall_leaks.feature | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/features/firewall_leaks.feature b/features/firewall_leaks.feature new file mode 100644 index 00000000..775c6e13 --- /dev/null +++ b/features/firewall_leaks.feature @@ -0,0 +1,37 @@ +@product +Feature: + As a Tails developer + I want to ensure that the automated test suite detects firewall leaks reliably + + Background: + Given a computer + And I capture all network traffic + And I start the computer + And the computer boots Tails + And I log in to a new session + And Tor is ready + And all notifications have disappeared + And available upgrades have been checked + And all Internet traffic has only flowed through Tor + And I save the state so the background can be restored next scenario + + Scenario: Detecting IPv4 TCP leaks from the Unsafe Browser + When I successfully start the Unsafe Browser + And I open the address "https://check.torproject.org" in the Unsafe Browser + And I see "UnsafeBrowserTorCheckFail.png" after at most 60 seconds + Then the firewall leak detector has detected IPv4 TCP leaks + + Scenario: Detecting IPv4 TCP leaks of TCP DNS lookups + Given I disable Tails' firewall + When I do a TCP DNS lookup of "torproject.org" + Then the firewall leak detector has detected IPv4 TCP leaks + + Scenario: Detecting IPv4 non-TCP leaks (UDP) of UDP DNS lookups + Given I disable Tails' firewall + When I do a UDP DNS lookup of "torproject.org" + Then the firewall leak detector has detected IPv4 non-TCP leaks + + Scenario: Detecting IPv4 non-TCP (ICMP) leaks of ping + Given I disable Tails' firewall + When I send some ICMP pings + Then the firewall leak detector has detected IPv4 non-TCP leaks |