當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。