<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Tests\Functional\Platform;

use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;

use function sprintf;

abstract class ColumnTest extends FunctionalTestCase
{
    public function testVariableLengthStringNoLength(): void
    {
        $this->assertColumn(Types::STRING, [], 'Test', ParameterType::STRING);
    }

    /**
     * @dataProvider string8Provider
     */
    public function testVariableLengthStringWithLength(string $value): void
    {
        $this->assertColumn(Types::STRING, ['length' => 8], $value, ParameterType::STRING);
    }

    /**
     * @dataProvider string1Provider
     */
    public function testFixedLengthStringNoLength(string $value): void
    {
        $this->assertColumn(Types::STRING, ['fixed' => true], $value, ParameterType::STRING);
    }

    /**
     * @dataProvider string8Provider
     */
    public function testFixedLengthStringWithLength(string $value): void
    {
        $this->assertColumn(Types::STRING, [
            'fixed' => true,
            'length' => 8,
        ], $value, ParameterType::STRING);
    }

    /**
     * @return iterable<string, array<int, mixed>>
     */
    public static function string1Provider(): iterable
    {
        return [
            'ansi' => ['Z'],
            'unicode' => ['Я'],
        ];
    }

    /**
     * @return iterable<string, array<int, mixed>>
     */
    public static function string8Provider(): iterable
    {
        return [
            'ansi' => ['Doctrine'],
            'unicode' => ['Доктрина'],
        ];
    }

    public function testVariableLengthBinaryNoLength(): void
    {
        $this->assertColumn(Types::BINARY, [], "\x00\x01\x02\x03", ParameterType::BINARY);
    }

    public function testVariableLengthBinaryWithLength(): void
    {
        $this->assertColumn(Types::BINARY, ['length' => 8], "\xCE\xC6\x6B\xDD\x9F\xD8\x07\xB4", ParameterType::BINARY);
    }

    public function testFixedLengthBinaryNoLength(): void
    {
        $this->assertColumn(Types::BINARY, ['fixed' => true], "\xFF", ParameterType::BINARY);
    }

    public function testFixedLengthBinaryWithLength(): void
    {
        $this->assertColumn(Types::BINARY, [
            'fixed' => true,
            'length' => 8,
        ], "\xA0\x0A\x7B\x0E\xA4\x60\x78\xD8", ParameterType::BINARY);
    }

    protected function requirePlatform(string $class): void
    {
        if ($this->connection->getDatabasePlatform() instanceof $class) {
            return;
        }

        self::markTestSkipped(sprintf('The test requires %s', $class));
    }

    /**
     * @param array<string, mixed> $column
     */
    protected function assertColumn(string $type, array $column, string $value, int $bindType): void
    {
        $table = new Table('column_test');
        $table->addColumn('val', $type, $column);

        $sm = $this->connection->getSchemaManager();
        $sm->dropAndCreateTable($table);

        self::assertSame(1, $this->connection->insert('column_test', ['val' => $value], [$bindType]));

        self::assertSame($value, Type::getType($type)->convertToPHPValue(
            $this->connection->fetchOne('SELECT val FROM column_test'),
            $this->connection->getDatabasePlatform()
        ));
    }
}