當前位置: 首頁>>代碼示例>>Python>>正文


Python Document.by_property方法代碼示例

本文整理匯總了Python中models.Document.by_property方法的典型用法代碼示例。如果您正苦於以下問題:Python Document.by_property方法的具體用法?Python Document.by_property怎麽用?Python Document.by_property使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在models.Document的用法示例。


在下文中一共展示了Document.by_property方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_api_entity

# 需要導入模塊: from models import Document [as 別名]
# 或者: from models.Document import by_property [as 別名]
    def test_api_entity(self):
        # TODO: test api refetch after api was modified/deleted
        test_doc = Document.by_property(
            'name', u'Заявление о регистрации по месту жительства, форма №6')

        response = self.testapp.get('/admin/api/entities/' + test_doc.urlsafe())

        self.assertEqual(response.status_int, 200)
        response_obj = json.loads(response.body)

        self.assertAllIn(response_obj['choices'].keys(),
                         ['COUNT_METHOD', 'ORIGINAL_SUPPLY_TYPE'])
        self.assertEqual(response_obj['kind'], u'Документ')
        self.assertEqual(response_obj['kind_plural'], u'Документы')
        self.assertEqual(
            response_obj['label'],
            u'Заявление о регистрации по месту жительства, форма №6')
        self.assertAllIn(response_obj['fields'], [
            {'name': 'id', 'type': 'int', 'label': u'ID', 'value': 8},
            {'name': 'name', 'type': 'plain', 'label': u'Название',
             'value': u'Заявление о регистрации по месту жительства, форма №6'},
            {'name': 'description', 'type': 'rich',
             'label': u'Условия предоставления',
             'value': u'Форма заявления предоставляется консультантом МФЦ.'},
            {'name': 'o_count_method', 'type': 'enum',
             'label': u'Метод подсчета оригиналов', 'value': 'per_service'},
            {'name': 'c_count_method', 'type': 'enum',
             'label': u'Метод подсчета копий', 'value': 'per_service'},
            {'name': 'n_originals', 'type': 'int',
             'label': u'Количество оригиналов', 'value': 1},
            {'name': 'n_copies', 'type': 'int', 'label': u'Количество копий',
             'value': 0},
            {'name': 'o_supply_type', 'type': 'enum',
             'label': u'Возвращается ли оригинал заявителю?',
             'value': 'no_return'},
            {'name': 'is_a_paper_document', 'type': 'bool',
             'label': u'Это физический документ?', 'value': True},
            {'name': 'doc_class', 'type': 'ref', 'label': u'Класс документа',
             'value': u'Заявления', 'kind': 'DocClass'}
        ])
開發者ID:vleseg,項目名稱:kmplks,代碼行數:42,代碼來源:test_app.py

示例2: test_delete_entity_cascade

# 需要導入模塊: from models import Document [as 別名]
# 或者: from models.Document import by_property [as 別名]
    def test_delete_entity_cascade(self):
        # TODO: test erroneous cascade delete of entities, that are referenced
        # as a required property.
        initial_dts_count = [
            {'service': s,
             'count': len(
                 s.backref_query('DocumentToService', 'service').fetch())}
            for s in Service.query().fetch()
        ]

        # == Testing cascade delete of references ==
        test_mfc = MFC.by_property('name', u'МФЦ г. Нюрба')
        testmfc_urlsafe = test_mfc.urlsafe()

        self.testapp.delete('/admin/api/entities/' + testmfc_urlsafe)

        # Only one MFC entity is left.
        self.assertEqual(len(MFC.query().fetch()), 1)
        # Only one MFC entity is now referenced by the sole kompleks in test
        # data.
        kompleks = Kompleks.by_property('name', u'Рождение ребенка')
        self.assertEqual(len(kompleks.mfcs), 1)

        # == Testing cascade delete of linked DocumentToService entities ==
        test_doc = Document.by_property(
            'name', u'Документ, удостоверяющий личность заявителя')
        testdoc_urlsafe = test_doc.urlsafe()

        self.testapp.delete('/admin/api/entities/' + testdoc_urlsafe)

        # All DocumentToService entities linked to the deleted document are gone
        # as well.
        for item in initial_dts_count:
            s = item['service']
            self.assertEqual(
                item['count'] - 1,
                len(s.backref_query('DocumentToService', 'service').fetch()))
開發者ID:vleseg,項目名稱:kmplks,代碼行數:39,代碼來源:test_app.py


注:本文中的models.Document.by_property方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。