[features] dump/restore is a noop

This commit is contained in:
Joe Thornber 2013-06-28 12:19:24 +01:00
parent 2fc95b3a2d
commit 90fb1c4fb5
3 changed files with 32 additions and 12 deletions

View File

@ -41,3 +41,15 @@ end
Then(/^it should pass with version$/) do
only_processes.last.stdout.chomp.should == tools_version
end
When(/^I dump$/) do
run_simple("thin_dump #{dev_file} -o #{new_dump_file}", false)
end
When(/^I restore$/) do
run_simple("thin_restore -i #{dump_files[-1]} -o #{dev_file}", false)
end
Then(/^dumps ([0-9]+) and ([0-9]+) should be identical$/) do |d1, d2|
run_simple("diff -b #{dump_files[d1.to_i]} #{dump_files[d2.to_i]}", false)
end

View File

@ -1,5 +1,5 @@
Before do
@aruba_timeout_seconds = 10
@aruba_timeout_seconds = 120
end
module ThinpWorld
@ -22,6 +22,16 @@ module ThinpWorld
'metadata.bin'
end
def dump_files
@dump_files ||= []
end
def new_dump_file
fn = "dump_#{dump_files.size}.xml"
@dump_files << fn
fn
end
def corrupt_block(n)
write_block(n, change_random_byte(read_block(n)))
end
@ -29,15 +39,7 @@ module ThinpWorld
# FIXME: we should really break out the xml stuff from
# thinp-test-suite and put in a gem in this repo.
def write_valid_xml(path)
File.open(path, "w+") do |f|
f.write <<EOF
<superblock uuid="" time="0" transaction="0" data_block_size="128" nr_data_blocks="1000">
<device dev_id="0" mapped_blocks="100" transaction="0" creation_time="0" snap_time="0">
<range_mapping origin_begin="25" data_begin="0" length="100" time="0"/>
</device>
</superblock>
EOF
end
`thinp_xml create --nr-thins uniform[4..9] --nr-mappings uniform[1000.5000] > #{path}`
end
private

View File

@ -33,10 +33,16 @@ Feature: thin_restore
{-V|--version}
"""
@announce
Scenario: missing input file
When I run thin_restore with -o metadata.bin
Then it should fail with:
"""
No input file provided.
"""
"""
Scenario: dump/restore is a noop
Given valid metadata
When I dump
And I restore
And I dump
Then dumps 0 and 1 should be identical