本文整理匯總了Python中geokey.contributions.models.Observation.validate_full方法的典型用法代碼示例。如果您正苦於以下問題:Python Observation.validate_full方法的具體用法?Python Observation.validate_full怎麽用?Python Observation.validate_full使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類geokey.contributions.models.Observation
的用法示例。
在下文中一共展示了Observation.validate_full方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_validate_full_invalid
# 需要導入模塊: from geokey.contributions.models import Observation [as 別名]
# 或者: from geokey.contributions.models.Observation import validate_full [as 別名]
def test_validate_full_invalid(self):
creator = UserF()
location = LocationFactory()
category = CategoryFactory()
TextFieldFactory.create(**{
'key': 'text',
'category': category,
'order': 0
})
NumericFieldFactory.create(**{
'key': 'number',
'category': category,
'order': 1
})
data = {'text': 'Text', 'number': 12}
observation = Observation.create(
properties=data, creator=creator, location=location,
category=category, project=category.project, status='active'
)
updater = UserF()
update = {'text': 'Udpated Text', 'number': 'abc', 'version': 1}
Observation.validate_full(category=category, data=update)
observation.update(properties=update, updator=updater)
self.assertEqual(observation.properties, data)
self.assertEqual(observation.version, 1)
示例2: test_validate_full_invalid_nubmer
# 需要導入模塊: from geokey.contributions.models import Observation [as 別名]
# 或者: from geokey.contributions.models.Observation import validate_full [as 別名]
def test_validate_full_invalid_nubmer(self):
category = CategoryFactory()
TextFieldFactory(**{
'key': 'text',
'category': category,
'order': 0
})
NumericFieldFactory(**{
'key': 'number',
'category': category,
'order': 1
})
data = {'text': 'Text', 'number': 'abc'}
Observation.validate_full(data=data, category=category)
示例3: test_validate_full_with_empty_number
# 需要導入模塊: from geokey.contributions.models import Observation [as 別名]
# 或者: from geokey.contributions.models.Observation import validate_full [as 別名]
def test_validate_full_with_empty_number(self):
category = CategoryFactory()
TextFieldFactory(**{
'key': 'text',
'category': category,
'order': 0
})
NumericFieldFactory(**{
'key': 'number',
'required': True,
'category': category,
'order': 1
})
data = {'text': 'bla'}
Observation.validate_full(data=data, category=category)
示例4: test_validate_full_inactive_field
# 需要導入模塊: from geokey.contributions.models import Observation [as 別名]
# 或者: from geokey.contributions.models.Observation import validate_full [as 別名]
def test_validate_full_inactive_field(self):
category = CategoryFactory()
TextFieldFactory(**{
'key': 'text',
'category': category,
'order': 2
})
TextFieldFactory(**{
'key': 'inactive_text',
'category': category,
'status': 'inactive',
'required': True,
'order': 0
})
NumericFieldFactory(**{
'key': 'number',
'category': category,
'order': 1
})
data = {'text': 'Text', 'number': 12}
Observation.validate_full(category=category, data=data)
示例5: test_validate_full_with_inactive_field
# 需要導入模塊: from geokey.contributions.models import Observation [as 別名]
# 或者: from geokey.contributions.models.Observation import validate_full [as 別名]
def test_validate_full_with_inactive_field(self):
category = CategoryFactory()
TextFieldFactory(**{
'key': 'text',
'category': category,
'order': 0
})
TextFieldFactory(**{
'key': 'inactive_text',
'category': category,
'status': 'inactive',
'required': True,
'order': 1
})
NumericFieldFactory(**{
'key': 'number',
'category': category,
'order': 2
})
observation = ObservationFactory.create(**{
'properties': {'text': 'Text', 'number': 12},
'category': category,
'project': category.project
})
updater = UserF()
update = {'text': 'Udpated Text', 'number': 13}
Observation.validate_full(category=category, data=update)
observation.update(properties=update, updator=updater)
self.assertEqual(
observation.properties,
{'text': 'Udpated Text', 'number': 13}
)
self.assertEqual(observation.version, 2)