-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow DQL functions to specify return type #7941
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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\ORM\Query\AST; | ||
|
||
use Doctrine\DBAL\Types\Type; | ||
|
||
/** | ||
* Provides an API for resolving the type of a Node | ||
*/ | ||
interface TypedExpression | ||
{ | ||
public function getReturnType() : Type; | ||
} |
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
101 changes: 101 additions & 0 deletions
101
tests/Doctrine/Tests/ORM/Functional/Ticket/GH7941Test.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,101 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use DateTimeImmutable; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
use function ltrim; | ||
use function strlen; | ||
|
||
/** @group GH7941 */ | ||
final class GH7941Test extends OrmFunctionalTestCase | ||
{ | ||
private const PRODUCTS = [ | ||
['name' => 'Test 1', 'price' => '100', 'square_root' => '/^10(\.0+)?$/'], | ||
['name' => 'Test 2', 'price' => '100', 'square_root' => '/^10(\.0+)?$/'], | ||
['name' => 'Test 3', 'price' => '100', 'square_root' => '/^10(\.0+)?$/'], | ||
['name' => 'Test 4', 'price' => '25', 'square_root' => '/^5(\.0+)?$/'], | ||
['name' => 'Test 5', 'price' => '25', 'square_root' => '/^5(\.0+)?$/'], | ||
['name' => 'Test 6', 'price' => '-25', 'square_root' => '/^5(\.0+)?$/'], | ||
]; | ||
|
||
protected function setUp() : void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->setUpEntitySchema([GH7941Product::class]); | ||
|
||
foreach (self::PRODUCTS as $product) { | ||
$this->_em->persist(new GH7941Product($product['name'], $product['price'])); | ||
} | ||
|
||
$this->_em->flush(); | ||
$this->_em->clear(); | ||
} | ||
|
||
/** @test */ | ||
public function typesShouldBeConvertedForDQLFunctions() : void | ||
{ | ||
$query = $this->_em->createQuery( | ||
'SELECT | ||
COUNT(product.id) as count, | ||
SUM(product.price) as sales, | ||
AVG(product.price) as average | ||
FROM ' . GH7941Product::class . ' product' | ||
); | ||
|
||
$result = $query->getSingleResult(); | ||
|
||
self::assertSame(6, $result['count']); | ||
self::assertSame('325', $result['sales']); | ||
self::assertRegExp('/^54\.16+7$/', $result['average']); | ||
|
||
$query = $this->_em->createQuery( | ||
'SELECT | ||
ABS(product.price) as absolute, | ||
SQRT(ABS(product.price)) as square_root, | ||
LENGTH(product.name) as length | ||
FROM ' . GH7941Product::class . ' product' | ||
); | ||
|
||
foreach ($query->getResult() as $i => $item) { | ||
$product = self::PRODUCTS[$i]; | ||
|
||
self::assertSame(ltrim($product['price'], '-'), $item['absolute']); | ||
self::assertSame(strlen($product['name']), $item['length']); | ||
self::assertRegExp($product['square_root'], $item['square_root']); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @Entity | ||
* @Table() | ||
*/ | ||
class GH7941Product | ||
{ | ||
/** | ||
* @Id | ||
* @GeneratedValue | ||
* @Column(type="integer") | ||
*/ | ||
public $id; | ||
|
||
/** @Column(type="string") */ | ||
public $name; | ||
|
||
/** @Column(type="decimal") */ | ||
public $price; | ||
|
||
/** @Column(type="datetime_immutable") */ | ||
public $createdAt; | ||
|
||
public function __construct(string $name, string $price) | ||
{ | ||
$this->name = $name; | ||
$this->price = $price; | ||
$this->createdAt = new DateTimeImmutable(); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Grafikart this is what I meant with a more functional approach 😄
The main advantage is that we only rely on the public API here, which makes it easier to detect BC-breaks.
By using
self::assertSame()
we check that both value and type match expected value andself::assertRegExp()
only accepts strings.