Ejemplo n.º 1
0
 def test_delete_composite_index_metadata(self):
   db_batch = flexmock()
   db_batch.should_receive('valid_data_version').and_return(True)
   db_batch.should_receive("batch_delete").and_return(None)
   dd = DatastoreDistributed(db_batch, self.get_zookeeper())
   dd = flexmock(dd)
   composite_index = entity_pb.CompositeIndex()
   composite_index.set_id(1)
   dd.delete_composite_index_metadata("appid", composite_index)
Ejemplo n.º 2
0
 def test_delete_composite_index_metadata(self):
   db_batch = flexmock()
   db_batch.should_receive('valid_data_version').and_return(True)
   db_batch.should_receive("batch_delete").and_return(None)
   dd = DatastoreDistributed(db_batch, self.get_zookeeper())
   dd = flexmock(dd)
   composite_index = entity_pb.CompositeIndex()
   composite_index.set_id(1)
   dd.delete_composite_index_metadata("appid", composite_index)
Ejemplo n.º 3
0
 def test_delete_composite_index_metadata(self):
   db_batch = flexmock()
   db_batch.should_receive('valid_data_version_sync').and_return(True)
   db_batch.should_receive("batch_delete").and_return(ASYNC_NONE)
   transaction_manager = flexmock()
   dd = DatastoreDistributed(db_batch, transaction_manager,
                             self.get_zookeeper())
   dd = flexmock(dd)
   composite_index = entity_pb.CompositeIndex()
   composite_index.set_id(1)
   yield dd.delete_composite_index_metadata("appid", composite_index)
Ejemplo n.º 4
0
 def test_delete_composite_index_metadata(self):
   db_batch = flexmock()
   db_batch.should_receive('valid_data_version_sync').and_return(True)
   db_batch.should_receive("batch_delete").and_return(ASYNC_NONE)
   transaction_manager = flexmock()
   dd = DatastoreDistributed(db_batch, transaction_manager,
                             self.get_zookeeper())
   dd = flexmock(dd)
   composite_index = entity_pb.CompositeIndex()
   composite_index.set_id(1)
   yield dd.delete_composite_index_metadata("appid", composite_index)