当前位置: 首页>>代码示例>>Python>>正文


Python Observation.validate_full方法代码示例

本文整理汇总了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)
开发者ID:nagyistoce,项目名称:geokey,代码行数:29,代码来源:test_model.py

示例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)
开发者ID:nagyistoce,项目名称:geokey,代码行数:16,代码来源:test_model.py

示例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)
开发者ID:nagyistoce,项目名称:geokey,代码行数:17,代码来源:test_model.py

示例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)
开发者ID:nagyistoce,项目名称:geokey,代码行数:23,代码来源:test_model.py

示例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)
开发者ID:nagyistoce,项目名称:geokey,代码行数:38,代码来源:test_model.py


注:本文中的geokey.contributions.models.Observation.validate_full方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。