client = new Client( new Psr18Client(), new Authentication(getenv('OPENAI_CLIENT_TEST_AUTH_TOKEN') ?: 'token'), (new MockUri())->base ); } public function testCreateMethod(): void { $this->markTestSkipped('The default mocking server does not support multipart file upload requests.'); // @phpstan-ignore-next-line $filesystem = vfsStream::setup(); // Create the file(s) to be uploaded. $files = ['file']; foreach ($files as $file) { vfsStream::newFile($file) ->withContent(LargeFileContent::withKilobytes(1)) ->at($filesystem); } $create = $this->client->audioTranscriptions()->create(new CreateRequest(['file' => 'vfs://root/file', 'model' => 'whisper-1'])); $response = $create->getResponse(); $this->assertGreaterThanOrEqual(200, $response->getStatusCode()); $this->assertLessThan(300, $response->getStatusCode()); $model = $create->toModel(); $model->jsonSerialize(); $this->assertInstanceOf(CreateResponse::class, $model); } }