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 78 79
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Types;
use BcMath\Number;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\RequiresPhp;
use PHPUnit\Framework\Attributes\RequiresPhpExtension;
use PHPUnit\Framework\Attributes\TestWith;
#[RequiresPhp('8.4')]
#[RequiresPhpExtension('bcmath')]
final class NumberTest extends FunctionalTestCase
{
#[TestWith(['13.37'])]
#[TestWith(['13.0'])]
public function testInsertAndRetrieveNumber(string $numberAsString): void
{
$expected = new Number($numberAsString);
$table = Table::editor()
->setUnquotedName('number_table')
->setColumns(
Column::editor()
->setUnquotedName('val')
->setTypeName(Types::NUMBER)
->setPrecision(4)
->setScale(2)
->create(),
)
->create();
$this->dropAndCreateTable($table);
$this->connection->insert(
'number_table',
['val' => $expected],
['val' => Types::NUMBER],
);
$value = $this->connection->convertToPHPValue(
$this->connection->fetchOne('SELECT val FROM number_table'),
Types::NUMBER,
);
self::assertInstanceOf(Number::class, $value);
self::assertSame(0, $expected <=> $value);
}
public function testCompareNumberTable(): void
{
$table = Table::editor()
->setUnquotedName('number_table')
->setColumns(
Column::editor()
->setUnquotedName('val')
->setTypeName(Types::NUMBER)
->setPrecision(4)
->setScale(2)
->create(),
)
->create();
$this->dropAndCreateTable($table);
$schemaManager = $this->connection->createSchemaManager();
self::assertTrue(
$schemaManager->createComparator()
->compareTables($schemaManager->introspectTable('number_table'), $table)
->isEmpty(),
);
}
}
|