本文整理汇总了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)