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