2 Feature: Untrusted partitions
4 I don't want to touch other media than the one Tails runs from
7 Scenario: Tails can boot from live systems stored on hard drives
9 And I create a 2 GiB disk named "live_hd"
10 And I cat an ISO hybrid of the Tails image to disk "live_hd"
11 And the computer is set to boot from ide drive "live_hd"
12 And I set Tails to boot with options "live-media="
13 And the network is unplugged
14 When I start the computer
15 And the computer boots Tails
16 And I log in to a new session
17 Then Tails seems to have booted normally
19 Scenario: Tails booting from a DVD does not use live systems stored on hard drives
21 And the computer is set to boot from the Tails DVD
22 And I plug ide drive "live_hd"
23 And the network is unplugged
24 When I start the computer
25 And the computer boots Tails
26 And I log in to a new session
28 Then drive "live_hd" is detected by Tails
29 And drive "live_hd" is not mounted
31 Scenario: Booting Tails does not automount untrusted ext2 partitions
33 And I create a 100 MiB disk named "gpt_ext2"
34 And I create a gpt label on disk "gpt_ext2"
35 And I create a ext2 filesystem on disk "gpt_ext2"
36 And I plug ide drive "gpt_ext2"
37 And the network is unplugged
38 When I start the computer
39 And the computer boots Tails
40 And I log in to a new session
42 Then drive "gpt_ext2" is detected by Tails
43 And drive "gpt_ext2" is not mounted
45 Scenario: Booting Tails does not automount untrusted fat32 partitions
47 And I create a 100 MiB disk named "msdos_fat32"
48 And I create a msdos label on disk "msdos_fat32"
49 And I create a fat32 filesystem on disk "msdos_fat32"
50 And I plug ide drive "msdos_fat32"
51 And the network is unplugged
52 When I start the computer
53 And the computer boots Tails
54 And I log in to a new session
56 Then drive "msdos_fat32" is detected by Tails
57 And drive "msdos_fat32" is not mounted