-
Notifications
You must be signed in to change notification settings - Fork 48
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
Raise an error in PHPunit when calling createMock where createStub is enough #210
Comments
Hello @ondrejmirtes , We are working on this feature with @brambaud, We are facing an issue and we would like your advices. We first want to specify a custom For that we're trying to implement this : <?php
namespace PHPStan\Type\PHPUnit;
use PhpParser\Node\Expr\MethodCall;
use PHPStan\Analyser\Scope;
use PHPStan\Analyser\SpecifiedTypes;
use PHPStan\Analyser\TypeSpecifier;
use PHPStan\Analyser\TypeSpecifierAwareExtension;
use PHPStan\Analyser\TypeSpecifierContext;
use PHPStan\Reflection\MethodReflection;
use PHPStan\Type\MethodTypeSpecifyingExtension;
use PHPUnit\Framework\MockObject\MockObject;
class MockObjectChainedExpectsMethodTypeExtension implements MethodTypeSpecifyingExtension, TypeSpecifierAwareExtension {
private TypeSpecifier $typeSpecifier;
public function setTypeSpecifier(TypeSpecifier $typeSpecifier): void
{
$this->typeSpecifier = $typeSpecifier;
}
/**
* @inheritDoc
*/
public function getClass(): string
{
return MockObject::class;
}
public function isMethodSupported(MethodReflection $methodReflection, MethodCall $node, TypeSpecifierContext $context): bool
{
return $methodReflection->getName() === 'expects';
}
public function specifyTypes(MethodReflection $methodReflection, MethodCall $node, Scope $scope, TypeSpecifierContext $context): SpecifiedTypes
{
$parent = $node->getAttribute('parent');
return $this->typeSpecifier->create($parent, new CertainMockType('CertainMockType'), $context, $scope);
}
} But our custom extension is never called, to be accurate, the We found that in the As our object is referencing two classes because our instance is an intersection (signature of PHPUnit Why is there this limitation ? How do you think we should do in our case ? Thanks by advance for your work and your feedback 🙂 |
|
We'll work on this first then! Thanks for the answer
We think it is important to make the intention behind test doubles clear, as it helps in understanding tests. Furthermore, it seems to go along with how PHPUnit is expected to be used.
Maybe it could be a rule enabled only if wanted 🤔 If this is considered a rule which is too opinionated for this package, we understand and we'll see to provide it in its own package to complement this one for instance. |
Feature request
Hi !
In order to enforce and clarify the usage of test doubles for everyone, I would like to know if you think it would be beneficial to implement a rule that raises an error when a mock is created without any assertions on being called (essentially making it a stub).
This rule would only be about using the correct terminology for test doubles. It should help to better understand what is going on in our test, and what is our intention.
https://docs.phpunit.de/en/10.5/test-doubles.html
In example :
I can try to make a PR for this, but before working on it, I prefer to ask if you think it would be a good improvement.
The text was updated successfully, but these errors were encountered: