Convert set() to list in ListType

ListType should return a list instead of set, As set is not json
serializable

Change-Id: I06011929022c124883a00cdf5784ed63f79f48a5
This commit is contained in:
Zhenguo Niu 2015-10-14 17:52:46 +08:00
parent b80e59148c
commit cd687bc503
2 changed files with 3 additions and 2 deletions

View File

@ -196,12 +196,12 @@ class ListType(wtypes.UserType):
"""Validate and convert the input to a ListType.
:param value: A comma separated string of values
:returns: A list of values.
:returns: A list of unique values, whose order is not guaranteed.
"""
items = [v.strip().lower() for v in six.text_type(value).split(',')]
# filter() to remove empty items
# set() to remove duplicated items
return set(filter(None, items))
return list(set(filter(None, items)))
@staticmethod
def frombasetype(value):

View File

@ -277,3 +277,4 @@ class TestListType(base.TestCase):
v.validate("foo, ,,bar"))
self.assertItemsEqual(['foo', 'bar'],
v.validate("foo,foo,foo,bar"))
self.assertIsInstance(v.validate('foo,bar'), list)