5
5
namespace League \OpenAPIValidation \Tests \PSR7 ;
6
6
7
7
use GuzzleHttp \Psr7 \Response ;
8
+ use GuzzleHttp \Psr7 \Utils ;
8
9
use League \OpenAPIValidation \PSR7 \Exception \Validation \InvalidBody ;
9
10
use League \OpenAPIValidation \PSR7 \Exception \Validation \InvalidHeaders ;
10
11
use League \OpenAPIValidation \PSR7 \OperationAddress ;
11
12
use League \OpenAPIValidation \PSR7 \ValidatorBuilder ;
12
13
13
- use function GuzzleHttp \Psr7 \stream_for ;
14
14
use function json_encode ;
15
15
16
16
final class ValidateResponseTest extends BaseValidatorTest
@@ -32,7 +32,7 @@ public function testItValidatesMessageWithReferencesGreen(): void
32
32
];
33
33
$ response = (new Response ())
34
34
->withHeader ('Content-Type ' , 'application/json ' )
35
- ->withBody (stream_for (json_encode ($ body )));
35
+ ->withBody (Utils:: streamFor (json_encode ($ body )));
36
36
37
37
$ validator = (new ValidatorBuilder ())->fromYamlFile ($ this ->apiSpecFile )->getResponseValidator ();
38
38
$ validator ->validate (new OperationAddress ('/ref ' , 'post ' ), $ response );
@@ -43,7 +43,7 @@ public function testItValidatesBinaryResponseGreen(): void
43
43
{
44
44
$ response = $ this ->makeGoodResponse ('/path1 ' , 'get ' )
45
45
->withHeader ('Content-Type ' , 'image/jpeg ' )
46
- ->withBody (stream_for (__DIR__ . '/../stubs/image.jpg ' ));
46
+ ->withBody (Utils:: streamFor (__DIR__ . '/../stubs/image.jpg ' ));
47
47
48
48
$ validator = (new ValidatorBuilder ())->fromYamlFile ($ this ->apiSpecFile )->getResponseValidator ();
49
49
$ validator ->validate (new OperationAddress ('/path1 ' , 'get ' ), $ response );
@@ -54,7 +54,7 @@ public function testItValidatesMessageWrongBodyValueRed(): void
54
54
{
55
55
$ addr = new OperationAddress ('/path1 ' , 'get ' );
56
56
$ body = [];
57
- $ response = $ this ->makeGoodResponse ('/path1 ' , 'get ' )->withBody (stream_for (json_encode ($ body )));
57
+ $ response = $ this ->makeGoodResponse ('/path1 ' , 'get ' )->withBody (Utils:: streamFor (json_encode ($ body )));
58
58
59
59
$ this ->expectException (InvalidBody::class);
60
60
$ this ->expectExceptionMessage (
0 commit comments