Merge branch 'listfield' into dev

Conflicts:
	docs/changelog.rst
This commit is contained in:
Ross Lawley 2011-10-04 04:28:04 -07:00
commit aedcf3dc81
4 changed files with 35 additions and 2 deletions

View File

@ -5,7 +5,11 @@ Changelog
Changes in dev
==============
<<<<<<< HEAD
- Added spec file for rpm-based distributions
=======
- Updated ComplexFields so if required they won't accept empty lists / dicts
>>>>>>> listfield
- Fixed ListField so it doesnt accept strings
- Added DynamicDocument and EmbeddedDynamicDocument classes for expando schemas

View File

@ -282,6 +282,11 @@ class ComplexBaseField(BaseField):
raise ValidationError('Invalid %s item (%s)' % (
self.field.__class__.__name__, str(v)))
# Don't allow empty values if required
if self.required and not value:
raise ValidationError('Field "%s" is required and cannot be empty' %
self.name)
def prepare_query_value(self, op, value):
return self.to_mongo(value)

View File

@ -459,6 +459,9 @@ class GenericEmbeddedDocumentField(BaseField):
class ListField(ComplexBaseField):
"""A list field that wraps a standard field, allowing multiple instances
of the field to be used as a list in the database.
.. note::
Required means it cannot be empty - as the default for ListFields is []
"""
# ListFields cannot be indexed with _types - MongoDB doesn't support this
@ -513,6 +516,9 @@ class DictField(ComplexBaseField):
"""A dictionary field that wraps a standard Python dictionary. This is
similar to an embedded document, but the structure is not defined.
.. note::
Required means it cannot be empty - as the default for ListFields is []
.. versionadded:: 0.3
.. versionchanged:: 0.5 - Can now handle complex / varying types of data
"""

View File

@ -485,7 +485,6 @@ class FieldTest(unittest.TestCase):
post.info = [{'test': 3}]
post.save()
self.assertEquals(BlogPost.objects.count(), 3)
self.assertEquals(BlogPost.objects.filter(info__exact='test').count(), 1)
self.assertEquals(BlogPost.objects.filter(info__0__test='test').count(), 1)
@ -515,7 +514,6 @@ class FieldTest(unittest.TestCase):
Simple.drop_collection()
def test_list_field_rejects_strings(self):
"""Strings aren't valid list field data types"""
@ -528,6 +526,26 @@ class FieldTest(unittest.TestCase):
self.assertRaises(ValidationError, e.save)
def test_complex_field_required(self):
"""Ensure required cant be None / Empty"""
class Simple(Document):
mapping = ListField(required=True)
Simple.drop_collection()
e = Simple()
e.mapping = []
self.assertRaises(ValidationError, e.save)
class Simple(Document):
mapping = DictField(required=True)
Simple.drop_collection()
e = Simple()
e.mapping = {}
self.assertRaises(ValidationError, e.save)
def test_list_field_complex(self):
"""Ensure that the list fields can handle the complex types."""