Merge remote-tracking branch 'flapflap/review_muri-de-index'
[tails/matsa.git] / features / untrusted_partitions.feature
blob816fbe7e839fd168df40a0cbc382f57e799351cc
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 I start Tails from DVD with network unplugged and I login
14     Then Tails seems to have booted normally
16   Scenario: Tails booting from a DVD does not use live systems stored on hard drives
17     Given a computer
18     And I plug ide drive "live_hd"
19     And I start Tails from DVD with network unplugged and I login
20     Then drive "live_hd" is detected by Tails
21     And drive "live_hd" is not mounted
23   Scenario: Booting Tails does not automount untrusted ext2 partitions
24     Given a computer
25     And I create a 100 MiB disk named "gpt_ext2"
26     And I create a gpt label on disk "gpt_ext2"
27     And I create a ext2 filesystem on disk "gpt_ext2"
28     And I plug ide drive "gpt_ext2"
29     And I start Tails from DVD with network unplugged and I login
30     Then drive "gpt_ext2" is detected by Tails
31     And drive "gpt_ext2" is not mounted
33   Scenario: Booting Tails does not automount untrusted fat32 partitions
34     Given a computer
35     And I create a 100 MiB disk named "msdos_fat32"
36     And I create a msdos label on disk "msdos_fat32"
37     And I create a fat32 filesystem on disk "msdos_fat32"
38     And I plug ide drive "msdos_fat32"
39     And I start Tails from DVD with network unplugged and I login
40     Then drive "msdos_fat32" is detected by Tails
41     And drive "msdos_fat32" is not mounted