From 3cd73f60d8726170c7567338d9812f0e399ab7e7 Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Mon, 25 Feb 2019 10:26:29 -0500 Subject: [PATCH] Add metadata to snapshot for revert test This may help test the problem exposed in bug 1805790, but it will only trigger it if the job is running with notifications turned on. Related-Bug: #1805790 Change-Id: Ie1778624f51cfc05c5d42174065a21a6ceaae138 --- cinder_tempest_plugin/api/volume/test_volume_revert.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinder_tempest_plugin/api/volume/test_volume_revert.py b/cinder_tempest_plugin/api/volume/test_volume_revert.py index 8a2f657..7c5eed1 100644 --- a/cinder_tempest_plugin/api/volume/test_volume_revert.py +++ b/cinder_tempest_plugin/api/volume/test_volume_revert.py @@ -46,7 +46,8 @@ class VolumeRevertTests(base.BaseVolumeTest): # Create volume self.volume = self.create_volume() # Create snapshot - self.snapshot = self.create_snapshot(self.volume['id']) + self.snapshot = self.create_snapshot(self.volume['id'], + metadata={'mykey1': 'value1'}) @decorators.idempotent_id('87b7dcb7-4950-4a3a-802c-ece55491846d') def test_volume_revert_to_snapshot(self):