blob: de2e0a705dd961862e54ffb9d34cdb02e000416f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Given /^I create a (\d+) ([[:alpha:]]+) disk named "([^"]+)"$/ do |size, unit, name|
next if @skip_steps_while_restoring_background
@vm.storage.create_new_disk(name, {:size => size, :unit => unit,
:type => "raw"})
end
Given /^I create a ([[:alpha:]]+) label on disk "([^"]+)"$/ do |type, name|
next if @skip_steps_while_restoring_background
@vm.storage.disk_mklabel(name, type)
end
Given /^I create a ([[:alnum:]]+) filesystem on disk "([^"]+)"$/ do |type, name|
next if @skip_steps_while_restoring_background
@vm.storage.disk_mkpartfs(name, type)
end
Given /^I cat an ISO hybrid of the Tails image to disk "([^"]+)"$/ do |name|
next if @skip_steps_while_restoring_background
disk_path = @vm.storage.disk_path(name)
tails_iso_hybrid = "#{$tmp_dir}/#{File.basename($tails_iso)}"
begin
cmd_helper("cp '#{$tails_iso}' '#{tails_iso_hybrid}'")
cmd_helper("isohybrid '#{tails_iso_hybrid}' --entry 4 --type 0x1c")
cmd_helper("dd if='#{tails_iso_hybrid}' of='#{disk_path}' conv=notrunc")
ensure
cmd_helper("rm -f '#{tails_iso_hybrid}'")
end
end
Then /^drive "([^"]+)" is not mounted$/ do |name|
next if @skip_steps_while_restoring_background
dev = @vm.disk_dev(name)
assert(!@vm.execute("grep -qs '^#{dev}' /proc/mounts").success?,
"an untrusted partition from drive '#{name}' was automounted")
end
|