Add required snapshot extra-specs in scenario tests
Tests must request the specs they need to test; but
they aren't, currently.
Change-Id: I6ef431f501b99b0e6dbc2e058fb7d09e9ff78eff
Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
diff --git a/manila_tempest_tests/tests/scenario/test_share_basic_ops.py b/manila_tempest_tests/tests/scenario/test_share_basic_ops.py
index 6fdddb5..94f704b 100644
--- a/manila_tempest_tests/tests/scenario/test_share_basic_ops.py
+++ b/manila_tempest_tests/tests/scenario/test_share_basic_ops.py
@@ -251,7 +251,8 @@
instance = self.boot_instance(wait_until="BUILD")
# 2 - Create share S1, ok, created
- extra_specs = {'snapshot_support': True}
+ extra_specs = {'snapshot_support': True,
+ 'create_share_from_snapshot_support': True}
parent_share = self.create_share(extra_specs=extra_specs)
parent_share_export_location = self.get_user_export_locations(
parent_share)[0]
@@ -352,7 +353,8 @@
instance = self.boot_instance(wait_until="BUILD")
# 2 - Create share S1, ok, created
- extra_specs = {'snapshot_support': True}
+ extra_specs = {'snapshot_support': True,
+ 'mount_snapshot_support': True}
parent_share = self.create_share(extra_specs=extra_specs)
user_export_location = self.get_user_export_locations(parent_share)[0]