From cbdf23ca65e3a8c4948e090048934d6f0f68caf8 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Mon, 23 Mar 2015 23:29:22 +0000 Subject: [PATCH] Verifies that identifiers are kept as strings when dealing with large numbers --- .../ORM/Functional/Ticket/DDC3634Test.php | 388 ++++++++++++++++++ 1 file changed, 388 insertions(+) create mode 100644 tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php new file mode 100644 index 000000000..6139ce540 --- /dev/null +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php @@ -0,0 +1,388 @@ +_schemaTool->createSchema([ + $this->_em->getClassMetadata(DDC3634Entity::CLASSNAME), + ]); + } catch (ToolsException $e) { + // schema already in place + } + } + + public function testSavesVeryLargeIntegerAutoGeneratedValue() + { + $veryLargeId = PHP_INT_MAX . PHP_INT_MAX; + + $entityManager = EntityManager::create( + new DDC3634LastInsertIdMockingConnection($veryLargeId, $this->_em->getConnection()), + $this->_em->getConfiguration() + ); + + $entity = new DDC3634Entity(); + + $entityManager->persist($entity); + $entityManager->flush(); + + $this->assertSame($veryLargeId, $entity->id); + } + + public function testSavesIntegerAutoGeneratedValueAsString() + { + $entity = new DDC3634Entity(); + + $this->_em->persist($entity); + $this->_em->flush(); + + $this->assertInternalType('string', $entity->id); + } +} + +/** @Entity */ +class DDC3634Entity +{ + const CLASSNAME = __CLASS__; + + /** @Id @Column(type="bigint") @GeneratedValue(strategy="AUTO") */ + public $id; +} + +class DDC3634LastInsertIdMockingConnection extends Connection +{ + /** + * @var Connection + */ + private $realConnection; + + /** + * @var int + */ + private $identifier; + + /** + * @param int $identifier + * @param Connection $realConnection + */ + public function __construct($identifier, Connection $realConnection) + { + $this->realConnection = $realConnection; + $this->identifier = $identifier; + } + + private function forwardCall() + { + $trace = debug_backtrace(0, 2)[1]; + + return call_user_func_array([$this->realConnection, $trace['function']], $trace['args']); + } + + public function getParams() + { + return $this->forwardCall(); + } + + public function getDatabase() + { + return $this->forwardCall(); + } + + public function getHost() + { + return $this->forwardCall(); + } + + public function getPort() + { + return $this->forwardCall(); + } + + public function getUsername() + { + return $this->forwardCall(); + } + + public function getPassword() + { + return $this->forwardCall(); + } + + public function getDriver() + { + return $this->forwardCall(); + } + + public function getConfiguration() + { + return $this->forwardCall(); + } + + public function getEventManager() + { + return $this->forwardCall(); + } + + public function getDatabasePlatform() + { + return $this->forwardCall(); + } + + public function getExpressionBuilder() + { + return $this->forwardCall(); + } + + public function connect() + { + return $this->forwardCall(); + } + + public function isAutoCommit() + { + return $this->forwardCall(); + } + + public function setAutoCommit($autoCommit) + { + return $this->forwardCall(); + } + + public function setFetchMode($fetchMode) + { + return $this->forwardCall(); + } + + public function fetchAssoc($statement, array $params = [], array $types = []) + { + return $this->forwardCall(); + } + + public function fetchArray($statement, array $params = [], array $types = []) + { + return $this->forwardCall(); + } + + public function fetchColumn($statement, array $params = [], $column = 0, array $types = []) + { + return $this->forwardCall(); + } + + public function isConnected() + { + return $this->forwardCall(); + } + + public function isTransactionActive() + { + return $this->forwardCall(); + } + + public function delete($tableExpression, array $identifier, array $types = []) + { + return $this->forwardCall(); + } + + public function close() + { + return $this->forwardCall(); + } + + public function setTransactionIsolation($level) + { + return $this->forwardCall(); + } + + public function getTransactionIsolation() + { + return $this->forwardCall(); + } + + public function update($tableExpression, array $data, array $identifier, array $types = []) + { + return $this->forwardCall(); + } + + public function insert($tableExpression, array $data, array $types = []) + { + return $this->forwardCall(); + } + + public function quoteIdentifier($str) + { + return $this->forwardCall(); + } + + public function quote($input, $type = null) + { + return $this->forwardCall(); + } + + public function fetchAll($sql, array $params = [], $types = []) + { + return $this->forwardCall(); + } + + public function prepare($statement) + { + return $this->forwardCall(); + } + + public function executeQuery($query, array $params = [], $types = [], QueryCacheProfile $qcp = null) + { + return $this->forwardCall(); + } + + public function executeCacheQuery($query, $params, $types, QueryCacheProfile $qcp) + { + return $this->forwardCall(); + } + + public function project($query, array $params, \Closure $function) + { + return $this->forwardCall(); + } + + public function query() + { + return $this->forwardCall(); + } + + public function executeUpdate($query, array $params = [], array $types = []) + { + return $this->forwardCall(); + } + + public function exec($statement) + { + return $this->forwardCall(); + } + + public function getTransactionNestingLevel() + { + return $this->forwardCall(); + } + + public function errorCode() + { + return $this->forwardCall(); + } + + public function errorInfo() + { + return $this->forwardCall(); + } + + public function lastInsertId($seqName = null) + { + return $this->identifier; + } + + public function transactional(\Closure $func) + { + return $this->forwardCall(); + } + + public function setNestTransactionsWithSavepoints($nestTransactionsWithSavepoints) + { + return $this->forwardCall(); + } + + public function getNestTransactionsWithSavepoints() + { + return $this->forwardCall(); + } + + protected function _getNestedTransactionSavePointName() + { + return $this->forwardCall(); + } + + public function beginTransaction() + { + return $this->forwardCall(); + } + + public function commit() + { + return $this->forwardCall(); + } + + public function rollBack() + { + return $this->forwardCall(); + } + + public function createSavepoint($savepoint) + { + return $this->forwardCall(); + } + + public function releaseSavepoint($savepoint) + { + return $this->forwardCall(); + } + + public function rollbackSavepoint($savepoint) + { + return $this->forwardCall(); + } + + public function getWrappedConnection() + { + return $this->forwardCall(); + } + + public function getSchemaManager() + { + return $this->forwardCall(); + } + + public function setRollbackOnly() + { + return $this->forwardCall(); + } + + public function isRollbackOnly() + { + return $this->forwardCall(); + } + + public function convertToDatabaseValue($value, $type) + { + return $this->forwardCall(); + } + + public function convertToPHPValue($value, $type) + { + return $this->forwardCall(); + } + + public function resolveParams(array $params, array $types) + { + return $this->forwardCall(); + } + + public function createQueryBuilder() + { + return $this->forwardCall(); + } + + public function ping() + { + return $this->forwardCall(); + } +} \ No newline at end of file