Skip to content

Commit 0684fdb

Browse files
committed
Fix mocked return value used in tests when using psr/http-message:^2.0
1 parent 897e079 commit 0684fdb

File tree

2 files changed

+85
-3
lines changed

2 files changed

+85
-3
lines changed

tests/Dummy/StringStream.php

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Dummy;
6+
7+
use Psr\Http\Message\StreamInterface;
8+
9+
final class StringStream implements StreamInterface
10+
{
11+
/**
12+
* @var string
13+
*/
14+
private $value;
15+
16+
public function __construct(string $value)
17+
{
18+
$this->value = $value;
19+
}
20+
21+
public function __toString(): string
22+
{
23+
return $this->value;
24+
}
25+
26+
public function close(): void
27+
{
28+
}
29+
30+
public function detach()
31+
{
32+
}
33+
34+
public function getSize(): ?int
35+
{
36+
}
37+
38+
public function tell(): int
39+
{
40+
}
41+
42+
public function eof(): bool
43+
{
44+
}
45+
46+
public function isSeekable(): bool
47+
{
48+
}
49+
50+
public function seek(int $offset, int $whence = SEEK_SET): void
51+
{
52+
}
53+
54+
public function rewind(): void
55+
{
56+
}
57+
58+
public function isWritable(): bool
59+
{
60+
}
61+
62+
public function write(string $string): int
63+
{
64+
}
65+
66+
public function isReadable(): bool
67+
{
68+
}
69+
70+
public function read(int $length): string
71+
{
72+
}
73+
74+
public function getContents(): string
75+
{
76+
}
77+
78+
public function getMetadata(?string $key = null)
79+
{
80+
}
81+
}

tests/UnitTests/Secure/Provider/OAuthProviderTest.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace PhpTwinfield\Secure\Provider;
44

5+
use Dummy\StringStream;
56
use GuzzleHttp\ClientInterface;
67
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
78
use League\OAuth2\Client\Token\AccessToken;
@@ -77,7 +78,7 @@ public function testGetAccessToken()
7778
$response = $this->createMock(ResponseInterface::class);
7879
$response->expects($this->any())
7980
->method("getBody")
80-
->willReturn('{"access_token":"mock_access_token", "token_type":"bearer"}');
81+
->willReturn(new StringStream('{"access_token":"mock_access_token", "token_type":"bearer"}'));
8182
$response->expects($this->any())
8283
->method("getHeader")
8384
->willReturn(['content-type' => 'json']);
@@ -102,7 +103,7 @@ public function testExceptionThrownWhenErrorObjectReceived()
102103
$response = $this->createMock(ResponseInterface::class);
103104
$response->expects($this->any())
104105
->method("getBody")
105-
->willReturn('{"error":{"type":"request","message":"someErrorMessage"}}');
106+
->willReturn(new StringStream('{"error":{"type":"request","message":"someErrorMessage"}}'));
106107
$response->expects($this->any())
107108
->method("getHeader")
108109
->willReturn(['content-type' => 'json']);
@@ -125,7 +126,7 @@ public function testGetResourceOwnerDetails()
125126
$response = $this->createMock(ResponseInterface::class);
126127
$response->expects($this->any())
127128
->method("getBody")
128-
->willReturn('{"sub": "someId", "twf.organisationId": "someOrganisationId"}');
129+
->willReturn(new StringStream('{"sub": "someId", "twf.organisationId": "someOrganisationId"}'));
129130
$response->expects($this->any())
130131
->method("getHeader")
131132
->willReturn(['content-type' => 'json']);

0 commit comments

Comments
 (0)