thin-provisioning-tools/features/thin_delta.feature

63 lines
1.4 KiB
Gherkin
Raw Normal View History

2014-06-09 15:07:46 +05:30
Feature: thin_delta
Scenario: print version (-V flag)
When I run `thin_delta -V`
Then it should pass with version
Scenario: print version (--version flag)
When I run `thin_delta --version`
Then it should pass with version
2014-06-09 15:18:29 +05:30
Scenario: print help
When I run `thin_delta --help`
Then it should pass with:
"""
Usage: thin_delta [options] <device or file>
2014-06-09 15:18:29 +05:30
Options:
{--thin1, --snap1}
{--thin2, --snap2}
{-m, --metadata-snap} [block#]
2014-06-17 19:30:38 +05:30
{--verbose}
2014-06-09 15:18:29 +05:30
{-h|--help}
{-V|--version}
"""
Scenario: print help
When I run `thin_delta -h`
Then it should pass with:
"""
Usage: thin_delta [options] <device or file>
2014-06-09 15:18:29 +05:30
Options:
{--thin1, --snap1}
{--thin2, --snap2}
{-m, --metadata-snap} [block#]
2014-06-17 19:30:38 +05:30
{--verbose}
2014-06-09 15:18:29 +05:30
{-h|--help}
{-V|--version}
"""
Scenario: Unrecognised option should cause failure
When I run `thin_delta --unleash-the-hedeghogs`
Then it should fail
2014-06-09 17:56:55 +05:30
Scenario: --snap1 must be specified
When I run `thin_delta --snap2 45 foo`
Then it should fail with:
"""
--snap1 not specified.
"""
Scenario: --snap2 must be specified
When I run `thin_delta --snap1 45 foo`
Then it should fail with:
"""
--snap2 not specified.
"""
Scenario: device must be specified
When I run `thin_delta --snap1 45 --snap2 50`
Then it should fail with:
"""
No input device provided.
"""