mirror of
https://github.com/danog/AsyncOrm.git
synced 2024-12-02 09:38:31 +01:00
175 lines
5.9 KiB
PHP
175 lines
5.9 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* This file is part of AsyncOrm.
|
||
|
* AsyncOrm is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
||
|
* AsyncOrm is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
* See the GNU Affero General Public License for more details.
|
||
|
* You should have received a copy of the GNU General Public License along with AsyncOrm.
|
||
|
* If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
* @author Daniil Gentili <daniil@daniil.it>
|
||
|
* @copyright 2016-2024 Daniil Gentili <daniil@daniil.it>
|
||
|
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
|
||
|
* @link https://daniil.it/AsyncOrm AsyncOrm documentation
|
||
|
*/
|
||
|
|
||
|
namespace danog\AsyncOrm\Test;
|
||
|
|
||
|
use Amp\ByteStream\ReadableStream;
|
||
|
use Amp\Mysql\MysqlConfig;
|
||
|
use Amp\Postgres\PostgresConfig;
|
||
|
use Amp\Process\Process;
|
||
|
use Amp\Redis\RedisConfig;
|
||
|
use AssertionError;
|
||
|
use danog\AsyncOrm\FieldConfig;
|
||
|
use danog\AsyncOrm\KeyType;
|
||
|
use danog\AsyncOrm\Serializer\Igbinary;
|
||
|
use danog\AsyncOrm\Serializer\Json;
|
||
|
use danog\AsyncOrm\Serializer\Native;
|
||
|
use danog\AsyncOrm\Settings;
|
||
|
use danog\AsyncOrm\Settings\Mysql;
|
||
|
use danog\AsyncOrm\Settings\Postgres;
|
||
|
use danog\AsyncOrm\Settings\Redis;
|
||
|
use danog\AsyncOrm\ValueType;
|
||
|
use PHPUnit\Framework\Attributes\CoversNothing;
|
||
|
use PHPUnit\Framework\Attributes\DataProvider;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
use function Amp\async;
|
||
|
use function Amp\ByteStream\buffer;
|
||
|
use function Amp\ByteStream\getStderr;
|
||
|
use function Amp\ByteStream\getStdout;
|
||
|
use function Amp\ByteStream\pipe;
|
||
|
use function Amp\ByteStream\splitLines;
|
||
|
use function Amp\Future\await;
|
||
|
use function Amp\Future\awaitAny;
|
||
|
|
||
|
#[CoversNothing]
|
||
|
final class OrmTest extends TestCase
|
||
|
{
|
||
|
/** @var array<string, Process> */
|
||
|
private static array $processes = [];
|
||
|
private static function shellExec(string $cmd): void
|
||
|
{
|
||
|
$process = Process::start($cmd);
|
||
|
async(pipe(...), $process->getStderr(), getStderr());
|
||
|
async(pipe(...), $process->getStdout(), getStdout());
|
||
|
$process->join();
|
||
|
}
|
||
|
public static function setUpBeforeClass(): void
|
||
|
{
|
||
|
$f = [];
|
||
|
foreach (['redis' => 6379, 'mariadb' => 3306, 'postgres' => 5432] as $image => $port) {
|
||
|
$f []= async(function () use ($image, $port) {
|
||
|
await([
|
||
|
async(self::shellExec(...), "docker pull $image"),
|
||
|
async(self::shellExec(...), "docker rm -f test_$image 2>/dev/null")
|
||
|
]);
|
||
|
|
||
|
$args = match ($image) {
|
||
|
'postgres' => '-e POSTGRES_HOST_AUTH_METHOD=trust',
|
||
|
'mariadb' => '-e MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1',
|
||
|
default => ''
|
||
|
};
|
||
|
$process = Process::start(
|
||
|
"docker run --rm -p $port:$port $args --name test_$image $image"
|
||
|
);
|
||
|
self::$processes[$image] = $process;
|
||
|
});
|
||
|
}
|
||
|
await($f);
|
||
|
if (!self::$processes) {
|
||
|
throw new AssertionError("No processes!");
|
||
|
}
|
||
|
foreach (self::$processes as $name => $process) {
|
||
|
$ok = awaitAny([
|
||
|
async(self::waitForStartup(...), $process->getStdout()),
|
||
|
async(self::waitForStartup(...), $process->getStderr()),
|
||
|
]);
|
||
|
if (!$ok) {
|
||
|
throw new AssertionError("Could not start $name!");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
private static function waitForStartup(ReadableStream $f): bool
|
||
|
{
|
||
|
foreach (splitLines($f) as $line) {
|
||
|
if (\stripos($line, 'ready to ') !== false
|
||
|
|| \stripos($line, "socket: '/run/mysqld/mysqld.sock' port: 3306") !== false
|
||
|
) {
|
||
|
async(buffer(...), $f);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
public static function tearDownAfterClass(): void
|
||
|
{
|
||
|
foreach (self::$processes as $process) {
|
||
|
$process->signal(15);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[DataProvider('provideSettings')]
|
||
|
public function testAll(Settings $settings, KeyType $keyType, string|int $key): void
|
||
|
{
|
||
|
$field = new FieldConfig(
|
||
|
"test",
|
||
|
$settings,
|
||
|
$keyType,
|
||
|
ValueType::INT
|
||
|
);
|
||
|
$orm = $field->build();
|
||
|
$orm[$key] = 123;
|
||
|
|
||
|
$this->assertEquals(123, $orm[$key]);
|
||
|
$this->assertTrue(isset($orm[$key]));
|
||
|
unset($orm[$key]);
|
||
|
|
||
|
$this->assertNull($orm[$key]);
|
||
|
$this->assertFalse(isset($orm[$key]));
|
||
|
}
|
||
|
|
||
|
public static function provideSettings(): \Generator
|
||
|
{
|
||
|
foreach ([new Native, new Igbinary, new Json] as $serializer) {
|
||
|
foreach ([
|
||
|
new Redis(
|
||
|
RedisConfig::fromUri('redis://127.0.0.1'),
|
||
|
$serializer
|
||
|
),
|
||
|
new Postgres(
|
||
|
PostgresConfig::fromString('host=127.0.0.1:5432 user=postgres db=test'),
|
||
|
$serializer
|
||
|
),
|
||
|
new Mysql(
|
||
|
MysqlConfig::fromString('host=127.0.0.1:3306 user=root db=test'),
|
||
|
$serializer
|
||
|
),
|
||
|
] as $settings) {
|
||
|
yield [
|
||
|
$settings,
|
||
|
KeyType::INT,
|
||
|
123
|
||
|
];
|
||
|
yield [
|
||
|
$settings,
|
||
|
KeyType::STRING,
|
||
|
'test'
|
||
|
];
|
||
|
yield [
|
||
|
$settings,
|
||
|
KeyType::STRING_OR_INT,
|
||
|
'test'
|
||
|
];
|
||
|
yield [
|
||
|
$settings,
|
||
|
KeyType::STRING_OR_INT,
|
||
|
'test'
|
||
|
];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|