FreeScoutGPT/vendor/tectalic/openai/tests/Integration/Handlers/ImagesEditsTest.php
Михаил Баринов 7210a52e55 first commit
2023-04-14 01:35:57 +03:00

63 lines
2 KiB
PHP

<?php
/**
* Copyright (c) 2022-present Tectalic (https://tectalic.com)
*
* For copyright and license information, please view the LICENSE file that was distributed with this source code.
*
* Please see the README.md file for usage instructions.
*/
declare(strict_types=1);
namespace Tests\Integration\Handlers;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpClient\Psr18Client;
use Tectalic\OpenAi\Authentication;
use Tectalic\OpenAi\Client;
use Tectalic\OpenAi\Models\ImagesEdits\CreateImageRequest;
use Tectalic\OpenAi\Models\ImagesEdits\CreateImageResponse;
use Tests\MockUri;
use org\bovigo\vfs\content\LargeFileContent;
use org\bovigo\vfs\vfsStream;
final class ImagesEditsTest extends TestCase
{
/** @var Client */
public $client;
public function setUp(): void
{
$this->client = new Client(
new Psr18Client(),
new Authentication(getenv('OPENAI_CLIENT_TEST_AUTH_TOKEN') ?: 'token'),
(new MockUri())->base
);
}
public function testCreateImageMethod(): 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 = ['image'];
foreach ($files as $file) {
vfsStream::newFile($file)
->withContent(LargeFileContent::withKilobytes(1))
->at($filesystem);
}
$createImage = $this->client->imagesEdits()->createImage(new CreateImageRequest([
'image' => 'vfs://root/image',
'prompt' => 'A cute baby sea otter wearing a beret',
]));
$response = $createImage->getResponse();
$this->assertGreaterThanOrEqual(200, $response->getStatusCode());
$this->assertLessThan(300, $response->getStatusCode());
$model = $createImage->toModel();
$model->jsonSerialize();
$this->assertInstanceOf(CreateImageResponse::class, $model);
}
}