Skip to content

Commit 57d78d5

Browse files
committed
phpstan level 2 for tests
1 parent 6113fec commit 57d78d5

7 files changed

+27
-2
lines changed

.github/workflows/static.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
uses: actions/checkout@v4
4242

4343
- name: Pull in optional dependencies
44-
run: composer require --no-update phpunit/phpunit toflar/psr6-symfony-http-cache-store:^4.2
44+
run: composer require --no-update phpunit/phpunit toflar/psr6-symfony-http-cache-store:^4.2 phpstan/phpstan-mockery
45+
4546

4647
- name: Cache Vendor
4748
id: cache-vendor

phpstan.tests.neon.dist

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
parameters:
2-
level: 1
2+
level: 2
33
paths:
44
- tests
5+
includes:
6+
- vendor/phpstan/phpstan-mockery/extension.neon

tests/Functional/Symfony/EventDispatchingHttpCacheTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ public function testEventListeners(): void
4444
->shouldReceive('handle')
4545
->andReturn($expectedResponse)
4646
->getMock();
47+
// https://github.com/phpstan/phpstan-mockery/issues/8
48+
/** @phpstan-ignore-next-line */
4749
$store = \Mockery::mock(StoreInterface::class)
4850
->shouldReceive('lookup')->andReturn(null)->times(1)
4951
->shouldReceive('write')->times(1)

tests/Unit/CacheInvalidatorTest.php

+8
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ public function testSupportsInvalid(): void
7878
public function testInvalidatePath(): void
7979
{
8080
/** @var MockInterface&PurgeCapable $purge */
81+
// https://github.com/phpstan/phpstan-mockery/issues/8
82+
/** @phpstan-ignore-next-line */
8183
$purge = \Mockery::mock(PurgeCapable::class)
8284
->shouldReceive('purge')->once()->with('/my/route', [])
8385
->shouldReceive('purge')->once()->with('/my/route', ['X-Test-Header' => 'xyz'])
@@ -97,6 +99,8 @@ public function testRefreshPath(): void
9799
{
98100
$headers = ['X' => 'Y'];
99101
/** @var MockInterface&RefreshCapable $refresh */
102+
// https://github.com/phpstan/phpstan-mockery/issues/8
103+
/** @phpstan-ignore-next-line */
100104
$refresh = \Mockery::mock(RefreshCapable::class)
101105
->shouldReceive('refresh')->once()->with('/my/route', $headers)
102106
->shouldReceive('flush')->never()
@@ -190,6 +194,8 @@ public function testProxyClientExceptionsAreLogged(): void
190194

191195
$unreachableException = ProxyUnreachableException::proxyUnreachable($clientException);
192196

197+
// https://github.com/phpstan/phpstan-mockery/issues/8
198+
/** @phpstan-ignore-next-line */
193199
$response = \Mockery::mock(ResponseInterface::class)
194200
->shouldReceive('getStatusCode')->andReturn(403)
195201
->shouldReceive('getReasonPhrase')->andReturn('Forbidden')
@@ -206,6 +212,8 @@ public function testProxyClientExceptionsAreLogged(): void
206212

207213
$cacheInvalidator = new CacheInvalidator($proxyClient);
208214

215+
// https://github.com/phpstan/phpstan-mockery/issues/8
216+
/** @phpstan-ignore-next-line */
209217
$logger = \Mockery::mock(LoggerInterface::class)
210218
->shouldReceive('log')->once()
211219
->with(

tests/Unit/ResponseTaggerTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ public function testGetTagsHeaderValue(): void
4848

4949
public function testTagResponseReplace(): void
5050
{
51+
// https://github.com/phpstan/phpstan-mockery/issues/8
52+
/** @phpstan-ignore-next-line */
5153
$headerFormatter = \Mockery::mock(TagHeaderFormatter::class)
5254
->shouldReceive('getTagsHeaderValue')
5355
->with(['tag-1', 'tag-2'])
@@ -73,6 +75,8 @@ public function testTagResponseReplace(): void
7375

7476
public function testTagResponseAdd(): void
7577
{
78+
// https://github.com/phpstan/phpstan-mockery/issues/8
79+
/** @phpstan-ignore-next-line */
7680
$headerFormatter = \Mockery::mock(TagHeaderFormatter::class)
7781
->shouldReceive('getTagsHeaderValue')
7882
->with(['tag-1', 'tag-2'])
@@ -105,6 +109,8 @@ public function testTagResponseNoTags(): void
105109

106110
$tagger = new ResponseTagger(['header_formatter' => $headerFormatter]);
107111

112+
// https://github.com/phpstan/phpstan-mockery/issues/8
113+
/** @phpstan-ignore-next-line */
108114
$response = \Mockery::mock(ResponseInterface::class)
109115
->shouldReceive('withHeader')->never()
110116
->shouldReceive('withAddedHeader')->never()

tests/Unit/Test/PHPUnit/IsCacheHitConstraintTestCase.php

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ public function setUp(): void
2626

2727
public function testMatches(): void
2828
{
29+
// https://github.com/phpstan/phpstan-mockery/issues/8
30+
/** @phpstan-ignore-next-line */
2931
$response = $this->getResponseMock()
3032
->shouldReceive('hasHeader')->with('cache-header')->andReturn(true)
3133
->shouldReceive('getHeaderLine')->with('cache-header')->once()->andReturn('MISS')
@@ -44,6 +46,8 @@ public function testMatchesThrowsExceptionIfHeaderIsMissing(): void
4446
$this->expectException(\RuntimeException::class);
4547
$this->expectExceptionMessage('Response has no "cache-header" header');
4648

49+
// https://github.com/phpstan/phpstan-mockery/issues/8
50+
/** @phpstan-ignore-next-line */
4751
$response = $this->getResponseMock()
4852
->shouldReceive('hasHeader')->with('cache-header')->once()->andReturn(false)
4953
->shouldReceive('getStatusCode')->andReturn(200)

tests/Unit/Test/PHPUnit/IsCacheMissConstraintTestCase.php

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ public function setUp(): void
2525

2626
public function testMatches(): void
2727
{
28+
// https://github.com/phpstan/phpstan-mockery/issues/8
29+
/** @phpstan-ignore-next-line */
2830
$response = $this->getResponseMock()
2931
->shouldReceive('hasHeader')->with('cache-header')->andReturn(true)
3032
->shouldReceive('getHeaderLine')->with('cache-header')->once()->andReturn('HIT')

0 commit comments

Comments
 (0)