本文整理汇总了Python中collective.tablepage.interfaces.IDataStorage.get方法的典型用法代码示例。如果您正苦于以下问题:Python IDataStorage.get方法的具体用法?Python IDataStorage.get怎么用?Python IDataStorage.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类collective.tablepage.interfaces.IDataStorage
的用法示例。
在下文中一共展示了IDataStorage.get方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_catalog_reindex_rows
# 需要导入模块: from collective.tablepage.interfaces import IDataStorage [as 别名]
# 或者: from collective.tablepage.interfaces.IDataStorage import get [as 别名]
def test_catalog_reindex_rows(self):
portal = self.layer['portal']
self.add_rows()
tp = portal.table_page1
storage = IDataStorage(tp)
portal = self.layer['portal']
data = {'__creator__': 'user1', 'col_a': 'Proin elementum', '__uuid__': 'ccc'}
storage.add(data)
self.tp_catalog.catalog_row(tp, data)
self.assertEqual(len(list(self.tp_catalog.searchTablePage(tp))), 3)
self.assertEqual(self.tp_catalog.searchTablePage(tp)[0]._unrestrictedGetObject()['col_a'],
'Lorem ipsum')
self.assertEqual(self.tp_catalog.searchTablePage(tp)[1]._unrestrictedGetObject()['col_a'],
'dolor sit amet')
self.assertEqual(self.tp_catalog.searchTablePage(tp)[2]._unrestrictedGetObject()['col_a'],
'Proin elementum')
data = storage.get('bbb')
del storage['bbb']
storage.add(data, 2)
self.tp_catalog.reindex_rows(tp, ['bbb', 'ccc'])
self.assertEqual(self.tp_catalog.searchTablePage(tp)[1]._unrestrictedGetObject()['col_a'],
'Proin elementum')
self.assertEqual(self.tp_catalog.searchTablePage(tp)[2]._unrestrictedGetObject()['col_a'],
'dolor sit amet')