-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3631 - fix for Double data type when using MySQLi with languag…
…es that do not use '.' for the decimal point
- Loading branch information
Showing
8 changed files
with
174 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 123 additions & 0 deletions
123
tests/Doctrine/Tests/DBAL/Functional/Types/DoubleTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Functional\Types; | ||
|
||
use Doctrine\DBAL\ParameterType; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\Tests\DbalFunctionalTestCase; | ||
use function abs; | ||
use function floatval; | ||
use function is_int; | ||
use function is_string; | ||
use function microtime; | ||
use function sprintf; | ||
|
||
class DoubleTest extends DbalFunctionalTestCase | ||
{ | ||
protected function setUp() : void | ||
{ | ||
parent::setUp(); | ||
|
||
$table = new Table('double_table'); | ||
$table->addColumn('id', 'integer'); | ||
$table->addColumn('val', 'float'); | ||
$table->setPrimaryKey(['id']); | ||
|
||
$sm = $this->connection->getSchemaManager(); | ||
$sm->dropAndCreateTable($table); | ||
} | ||
|
||
public function testInsertAndSelect() : void | ||
{ | ||
$value1 = 1.1; | ||
$value2 = 77.99999999999; | ||
$value3 = microtime(true); | ||
|
||
$this->insert(1, $value1); | ||
$this->insert(2, $value2); | ||
$this->insert(3, $value3); | ||
|
||
$result1 = $this->select(1); | ||
$result2 = $this->select(2); | ||
$result3 = $this->select(3); | ||
|
||
if (is_string($result1)) { | ||
$result1 = floatval($result1); | ||
$result2 = floatval($result2); | ||
$result3 = floatval($result3); | ||
} | ||
|
||
if ($result1 === false) { | ||
$this->fail('Expected $result1 to not be false'); | ||
|
||
return; | ||
} | ||
if ($result2 === false) { | ||
$this->fail('Expected $result2 to not be false'); | ||
|
||
return; | ||
} | ||
if ($result3 === false) { | ||
$this->fail('Expected $result3 to not be false'); | ||
|
||
return; | ||
} | ||
|
||
$diff1 = abs($result1 - $value1); | ||
$diff2 = abs($result2 - $value2); | ||
$diff3 = abs($result3 - $value3); | ||
|
||
$this->assertLessThanOrEqual(0.0001, $diff1, sprintf('%f, %f, %f', $diff1, $result1, $value1)); | ||
$this->assertLessThanOrEqual(0.0001, $diff2, sprintf('%f, %f, %f', $diff2, $result2, $value2)); | ||
$this->assertLessThanOrEqual(0.0001, $diff3, sprintf('%f, %f, %f', $diff3, $result3, $value3)); | ||
|
||
$result1 = $this->selectDouble($value1); | ||
$result2 = $this->selectDouble($value2); | ||
$result3 = $this->selectDouble($value3); | ||
|
||
$this->assertSame(is_int($result1) ? 1 : '1', $result1); | ||
$this->assertSame(is_int($result2) ? 2 : '2', $result2); | ||
$this->assertSame(is_int($result3) ? 3 : '3', $result3); | ||
} | ||
|
||
private function insert(int $id, float $value) : void | ||
{ | ||
$result = $this->connection->insert('double_table', [ | ||
'id' => $id, | ||
'val' => $value, | ||
], [ | ||
ParameterType::INTEGER, | ||
ParameterType::DOUBLE, | ||
]); | ||
|
||
self::assertSame(1, $result); | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
private function select(int $id) | ||
{ | ||
return $this->connection->fetchColumn( | ||
'SELECT val FROM double_table WHERE id = ?', | ||
[$id], | ||
0, | ||
[ParameterType::INTEGER] | ||
); | ||
} | ||
|
||
/** | ||
* @return mixed | ||
*/ | ||
private function selectDouble(float $value) | ||
{ | ||
return $this->connection->fetchColumn( | ||
'SELECT id FROM double_table WHERE val = ?', | ||
[$value], | ||
0, | ||
[ParameterType::DOUBLE] | ||
); | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
tests/Doctrine/Tests/DBAL/Functional/Types/LanguageDoubleTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Functional\Types; | ||
|
||
use function setlocale; | ||
|
||
class LanguageDoubleTest extends DoubleTest | ||
{ | ||
protected function setUp() : void { | ||
setlocale(LC_ALL, 'de_DE.UTF-8', 'de_DE', 'de', 'ge'); | ||
parent::setUp(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
echo "Installing language pack de..." | ||
|
||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6B05F25D762E3157 | ||
sudo apt -y -q update | ||
sudo apt install language-pack-de |