1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php
namespace Doctrine\DBAL\Tests\Portability;
use Doctrine\DBAL\Driver\Statement as DriverStatement;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Portability\Connection;
use Doctrine\DBAL\Portability\Converter;
use Doctrine\DBAL\Portability\Statement;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class StatementTest extends TestCase
{
protected Statement $stmt;
/** @var DriverStatement&MockObject */
protected DriverStatement $wrappedStmt;
protected function setUp(): void
{
$this->wrappedStmt = $this->createMock(DriverStatement::class);
$converter = new Converter(false, false, null);
$this->stmt = new Statement($this->wrappedStmt, $converter);
}
public function testBindParam(): void
{
$column = 'mycolumn';
$variable = 'myvalue';
$type = ParameterType::STRING;
$length = 666;
$this->wrappedStmt->expects(self::once())
->method('bindParam')
->with($column, $variable, $type, $length)
->willReturn(true);
self::assertTrue($this->stmt->bindParam($column, $variable, $type, $length));
}
public function testBindValue(): void
{
$param = 'myparam';
$value = 'myvalue';
$type = ParameterType::STRING;
$this->wrappedStmt->expects(self::once())
->method('bindValue')
->with($param, $value, $type)
->willReturn(true);
self::assertTrue($this->stmt->bindValue($param, $value, $type));
}
public function testExecute(): void
{
$params = [
'foo',
'bar',
];
$this->wrappedStmt->expects(self::once())
->method('execute')
->with($params);
$this->stmt->execute($params);
}
/** @return Connection&MockObject */
protected function createConnection()
{
return $this->getMockBuilder(Connection::class)
->disableOriginalConstructor()
->getMock();
}
}
|