Remove now obsolete steps and function.
[tails-test.git] / features / untrusted_partitions.feature
blob03ab2ad4982ae452762dd7cf91cef804bc26d516
1 @product
2 Feature: Untrusted partitions
3   As a Tails user
4   I don't want to touch other media than the one Tails runs from
6   @keep_volumes
7   Scenario: Tails can boot from live systems stored on hard drives
8     Given a computer
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
20     Given a computer
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
27     And GNOME has started
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
32     Given a computer
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
41     And GNOME has started
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
46     Given a computer
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
55     And GNOME has started
56     Then drive "msdos_fat32" is detected by Tails
57     And drive "msdos_fat32" is not mounted