Skip to content
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 service subscriber to have non-service name keys under certain circumstances. #352

Open
wants to merge 4 commits into
base: 1.2.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion src/Rules/Symfony/ContainerInterfaceUnknownServiceRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleError;
use PHPStan\Symfony\ServiceMap;
use PHPStan\TrinaryLogic;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Symfony\Helper;
use function sprintf;
Expand Down Expand Up @@ -72,12 +73,30 @@ public function processNode(Node $node, Scope $scope): array
if ($serviceId !== null) {
$service = $this->serviceMap->getService($serviceId);
$serviceIdType = $scope->getType($node->getArgs()[0]->value);
if ($service === null && !$scope->getType(Helper::createMarkerNode($node->var, $serviceIdType, $this->printer))->equals($serviceIdType)) {
if (
$service === null &&
!$this->isContainerCallInServiceSubscriber($isContainerType, $isPsrContainerType, $scope) &&
!$scope->getType(Helper::createMarkerNode($node->var, $serviceIdType, $this->printer))->equals($serviceIdType)
) {
return [sprintf('Service "%s" is not registered in the container.', $serviceId)];
}
}

return [];
}

private function isContainerCallInServiceSubscriber(TrinaryLogic $isContainerType, TrinaryLogic $isPsrContainerType, Scope $scope): bool
{
$scopeClassReflection = $scope->getClassReflection();
return $scopeClassReflection !== null &&
(
$scopeClassReflection->implementsInterface('Symfony\Contracts\Service\ServiceSubscriberInterface') ||
$scopeClassReflection->implementsInterface('Symfony\Component\DependencyInjection\ServiceSubscriberInterface')
) &&
(
$isContainerType->yes() ||
$isPsrContainerType->yes()
);
}

}
34 changes: 31 additions & 3 deletions tests/Rules/Symfony/ContainerInterfaceUnknownServiceRuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public function testGetPrivateService(): void

public function testGetPrivateServiceInAbstractController(): void
{
if (!class_exists('Symfony\Bundle\FrameworkBundle\Controller\Controller')) {
self::markTestSkipped();
if (!class_exists('Symfony\Bundle\FrameworkBundle\Controller\AbstractController')) {
self::markTestSkipped('The test needs Symfony\Bundle\FrameworkBundle\Controller\AbstractController class.');
}

$this->analyse(
Expand All @@ -58,7 +58,7 @@ public function testGetPrivateServiceInAbstractController(): void
);
}

public function testGetPrivateServiceInLegacyServiceSubscriber(): void
public function testGetPrivateServiceInServiceSubscriber(): void
{
if (!interface_exists('Symfony\Contracts\Service\ServiceSubscriberInterface')) {
self::markTestSkipped('The test needs Symfony\Contracts\Service\ServiceSubscriberInterface class.');
Expand All @@ -72,6 +72,34 @@ public function testGetPrivateServiceInLegacyServiceSubscriber(): void
);
}

public function testGetPrivateServiceInServiceSubscriberWithAnotherKey(): void
{
if (!interface_exists('Symfony\Contracts\Service\ServiceSubscriberInterface')) {
self::markTestSkipped('The test needs Symfony\Contracts\Service\ServiceSubscriberInterface class.');
}

$this->analyse(
[
__DIR__ . '/ExampleServiceSubscriberWithLocatorKey.php',
],
[]
);
}

public function testGetPrivateServiceInLegacyServiceSubscriberWithAnotherKey(): void
{
if (!interface_exists('Symfony\Component\DependencyInjection\ServiceSubscriberInterface')) {
self::markTestSkipped('The test needs Symfony\Component\DependencyInjection\ServiceSubscriberInterface class.');
}

$this->analyse(
[
__DIR__ . '/ExampleLegacyServiceSubscriberWithLocatorKey.php',
],
[]
);
}

public static function getAdditionalConfigFiles(): array
{
return [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php declare(strict_types = 1);

namespace PHPStan\Rules\Symfony;

use Psr\Container\ContainerInterface;
use Symfony\Component\DependencyInjection\ServiceSubscriberInterface;

final class ExampleLegacyServiceSubscriberWithLocatorKey implements ServiceSubscriberInterface
{

/** @var ContainerInterface */
private $locator;

public function __construct(ContainerInterface $locator)
{
$this->locator = $locator;
}

public function privateAliasService(): void
{
$this->locator->get('private_alias');
}

public function publicAliasService(): void
{
$this->locator->get('public_alias');
}

/**
* @return string[]
*/
public static function getSubscribedServices(): array
{
return [];
}

}
37 changes: 37 additions & 0 deletions tests/Rules/Symfony/ExampleServiceSubscriberWithLocatorKey.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php declare(strict_types = 1);

namespace PHPStan\Rules\Symfony;

use Psr\Container\ContainerInterface;
use Symfony\Contracts\Service\ServiceSubscriberInterface;

final class ExampleServiceSubscriberWithLocatorKey implements ServiceSubscriberInterface
{

/** @var ContainerInterface */
private $locator;

public function __construct(ContainerInterface $locator)
{
$this->locator = $locator;
}

public function privateAliasService(): void
{
$this->locator->get('private_alias');
}

public function publicAliasService(): void
{
$this->locator->get('public_alias');
}

/**
* @return string[]
*/
public static function getSubscribedServices(): array
{
return [];
}

}
6 changes: 6 additions & 0 deletions tests/Rules/Symfony/container.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,11 @@
<argument key="private" type="service" id="private"/>
</argument>
</service>
<service id="service_locator_with_alias_key" class="Symfony\Component\DependencyInjection\ServiceLocator" public="true">
<argument type="collection">
<argument key="private_alias" type="service" id="private"/>
<argument key="public_alias" type="service" id="public"/>
</argument>
</service>
</services>
</container>