Add functional tests for flavor metadata

Change-Id: Iae7a3f61c0c9777ee2511558d8942243066a8c60
This commit is contained in:
TerryHowe 2015-06-11 08:37:35 -06:00
parent b0ed8660b1
commit 83f5befc5e

View File

@ -44,3 +44,13 @@ class FlavorTests(test.TestCase):
opts = self.get_show_opts(self.FIELDS)
raw_output = self.openstack('flavor show ' + self.NAME + opts)
self.assertEqual(self.NAME + "\n", raw_output)
def test_flavor_properties(self):
opts = self.get_show_opts(["properties"])
raw_output = self.openstack(
'flavor set --property a=b --property c=d ' + self.NAME + opts)
self.assertEqual("a='b', c='d'\n", raw_output)
raw_output = self.openstack('flavor unset --property a ' +
self.NAME + opts)
self.assertEqual("c='d'\n", raw_output)