1 @product @check_tor_leaks
2 Feature: Various checks for torified software
5 Given I have started Tails from DVD and logged in and the network is connected
7 Scenario: wget(1) should work for HTTP and go through Tor
8 When I wget "http://example.com/" to stdout
9 Then the wget command is successful
10 And the wget standard output contains "Example Domain"
12 Scenario: wget(1) should work for HTTPS and go through Tor
13 When I wget "https://example.com/" to stdout
14 Then the wget command is successful
15 And the wget standard output contains "Example Domain"
17 Scenario: wget(1) with tricky options should work for HTTP and go through Tor
18 When I wget "some Tails mirror" to stdout with the '--spider --header="Host: dl.amnesia.boum.org"' options
19 Then the wget command is successful
21 Scenario: whois(1) should work and go through Tor
22 When I query the whois directory service for "torproject.org"
23 Then the whois command is successful
24 Then the whois standard output contains "The Tor Project"