本文整理汇总了PHP中Magento\Framework\Model\ResourceModel\Db\AbstractDb::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP AbstractDb::delete方法的具体用法?PHP AbstractDb::delete怎么用?PHP AbstractDb::delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\Model\ResourceModel\Db\AbstractDb
的用法示例。
在下文中一共展示了AbstractDb::delete方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testDelete
public function testDelete()
{
$connectionInterfaceMock = $this->getMock('\\Magento\\Framework\\DB\\Adapter\\AdapterInterface', [], [], '', false);
$contextMock = $this->getMock('\\Magento\\Framework\\Model\\Context', [], [], '', false);
$registryMock = $this->getMock('\\Magento\\Framework\\Registry', [], [], '', false);
$abstractModelMock = $this->getMockForAbstractClass('\\Magento\\Framework\\Model\\AbstractModel', [$contextMock, $registryMock], '', false, true, true, ['__wakeup', 'getId', 'beforeDelete', 'afterDelete', 'afterDeleteCommit', 'getData']);
$this->_resourcesMock->expects($this->any())->method('getConnection')->will($this->returnValue($connectionInterfaceMock));
$abstractModelMock->expects($this->once())->method('getData')->willReturn(['data' => 'value']);
$connectionMock = $this->getMock('\\Magento\\Framework\\DB\\Adapter\\AdapterInterface');
$this->transactionManagerMock->expects($this->once())->method('start')->with($connectionInterfaceMock)->willReturn($connectionMock);
$this->relationProcessorMock->expects($this->once())->method('delete')->with($this->transactionManagerMock, $connectionMock, 'tableName', 'idFieldName', ['data' => 'value']);
$this->transactionManagerMock->expects($this->once())->method('commit');
$data = 'tableName';
$this->_resourcesMock->expects($this->any())->method('getTableName')->with($data)->will($this->returnValue('tableName'));
$mainTableReflection = new \ReflectionProperty('Magento\\Framework\\Model\\ResourceModel\\Db\\AbstractDb', '_mainTable');
$mainTableReflection->setAccessible(true);
$mainTableReflection->setValue($this->_model, 'tableName');
$idFieldNameReflection = new \ReflectionProperty('Magento\\Framework\\Model\\ResourceModel\\Db\\AbstractDb', '_idFieldName');
$idFieldNameReflection->setAccessible(true);
$idFieldNameReflection->setValue($this->_model, 'idFieldName');
$connectionInterfaceMock->expects($this->any())->method('delete')->with('tableName', 'idFieldName');
$connectionInterfaceMock->expects($this->any())->method('quoteInto')->will($this->returnValue('idFieldName'));
$abstractModelMock->expects($this->once())->method('beforeDelete');
$abstractModelMock->expects($this->once())->method('afterDelete');
$abstractModelMock->expects($this->once())->method('afterDeleteCommit');
$this->assertInstanceOf('Magento\\Framework\\Model\\ResourceModel\\Db\\AbstractDb', $this->_model->delete($abstractModelMock));
}