[era_restore] add some cucumber tests

This commit is contained in:
Joe Thornber
2014-08-21 11:27:52 +01:00
parent feb8a03d5f
commit e3d459a148
2 changed files with 81 additions and 0 deletions

View File

@@ -14,3 +14,18 @@ end
Then /^era_usage to stderr$/ do
assert_partial_output(ERA_USAGE, all_stderr)
end
When(/^I run era_restore with (.*?)$/) do |opts|
run_simple("era_restore #{opts}", false)
end
Given(/^a small era xml file$/) do
in_current_dir do
system("era_xml create --nr-blocks 100 --nr-writesets 2 --current-era 1000 > #{xml_file}")
end
end
Then(/^the metadata should be valid$/) do
run_simple("era_check #{dev_file}", true)
end