2
2
3
3
namespace PhpTwinfield \Secure \Provider ;
4
4
5
+ use Dummy \StringStream ;
5
6
use GuzzleHttp \ClientInterface ;
6
7
use League \OAuth2 \Client \Provider \Exception \IdentityProviderException ;
7
8
use League \OAuth2 \Client \Token \AccessToken ;
@@ -77,7 +78,7 @@ public function testGetAccessToken()
77
78
$ response = $ this ->createMock (ResponseInterface::class);
78
79
$ response ->expects ($ this ->any ())
79
80
->method ("getBody " )
80
- ->willReturn ('{"access_token":"mock_access_token", "token_type":"bearer"} ' );
81
+ ->willReturn (new StringStream ( '{"access_token":"mock_access_token", "token_type":"bearer"} ' ) );
81
82
$ response ->expects ($ this ->any ())
82
83
->method ("getHeader " )
83
84
->willReturn (['content-type ' => 'json ' ]);
@@ -102,7 +103,7 @@ public function testExceptionThrownWhenErrorObjectReceived()
102
103
$ response = $ this ->createMock (ResponseInterface::class);
103
104
$ response ->expects ($ this ->any ())
104
105
->method ("getBody " )
105
- ->willReturn ('{"error":{"type":"request","message":"someErrorMessage"}} ' );
106
+ ->willReturn (new StringStream ( '{"error":{"type":"request","message":"someErrorMessage"}} ' ) );
106
107
$ response ->expects ($ this ->any ())
107
108
->method ("getHeader " )
108
109
->willReturn (['content-type ' => 'json ' ]);
@@ -125,7 +126,7 @@ public function testGetResourceOwnerDetails()
125
126
$ response = $ this ->createMock (ResponseInterface::class);
126
127
$ response ->expects ($ this ->any ())
127
128
->method ("getBody " )
128
- ->willReturn ('{"sub": "someId", "twf.organisationId": "someOrganisationId"} ' );
129
+ ->willReturn (new StringStream ( '{"sub": "someId", "twf.organisationId": "someOrganisationId"} ' ) );
129
130
$ response ->expects ($ this ->any ())
130
131
->method ("getHeader " )
131
132
->willReturn (['content-type ' => 'json ' ]);
0 commit comments