本文整理汇总了Python中appscale.datastore.datastore_distributed.DatastoreDistributed.acquire_locks_for_nontrans方法的典型用法代码示例。如果您正苦于以下问题:Python DatastoreDistributed.acquire_locks_for_nontrans方法的具体用法?Python DatastoreDistributed.acquire_locks_for_nontrans怎么用?Python DatastoreDistributed.acquire_locks_for_nontrans使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类appscale.datastore.datastore_distributed.DatastoreDistributed
的用法示例。
在下文中一共展示了DatastoreDistributed.acquire_locks_for_nontrans方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_acquire_locks_for_nontrans
# 需要导入模块: from appscale.datastore.datastore_distributed import DatastoreDistributed [as 别名]
# 或者: from appscale.datastore.datastore_distributed.DatastoreDistributed import acquire_locks_for_nontrans [as 别名]
def test_acquire_locks_for_nontrans(self):
app_id = 'test'
PREFIX = 'x\x01'
zookeeper = flexmock()
zookeeper.should_receive("acquire_lock").and_return(True)
zookeeper.should_receive("get_transaction_id").and_return(1).and_return(2)
db_batch = flexmock()
db_batch.should_receive('valid_data_version').and_return(True)
db_batch.should_receive("batch_put_entity").and_return(None)
db_batch.should_receive("batch_get_entity").and_return({PREFIX:{}})
db_batch.should_receive("batch_delete").and_return(None)
dd = DatastoreDistributed(db_batch, zookeeper)
entity_proto1 = self.get_new_entity_proto(
app_id, 'test_kind', "bob", "prop1name", "prop1val", ns="blah")
entity_proto2 = self.get_new_entity_proto(
app_id, "test_kind", "nancy", "prop1name", "prop2val", ns="blah")
entity_list = [entity_proto1, entity_proto2]
self.assertEquals({'test\x00blah\x00test_kind:bob\x01': 2, 'test\x00blah\x00test_kind:nancy\x01': 1},
dd.acquire_locks_for_nontrans("test", entity_list))