<?php
/**
 * @author Daniel J. Summers <daniel@bitbadger.solutions>
 * @license MIT
 */

declare(strict_types=1);

namespace Test\Integration\SQLite;

use BitBadger\PDODocument\{Count, DocumentException, Field, Find, Patch};
use PHPUnit\Framework\Attributes\TestDox;
use PHPUnit\Framework\TestCase;
use Test\Integration\TestDocument;

/**
 * SQLite integration tests for the Patch class
 */
#[TestDox('Patch (SQLite integration)')]
class PatchTest extends TestCase
{
    /** @var string Database name for throwaway database */
    private string $dbName;

    protected function setUp(): void
    {
        parent::setUp();
        $this->dbName = ThrowawayDb::create();
    }

    protected function tearDown(): void
    {
        ThrowawayDb::destroy($this->dbName);
        parent::tearDown();
    }

    #[TestDox('byId() succeeds when a document is updated')]
    public function testByIdSucceedsWhenADocumentIsUpdated(): void
    {
        Patch::byId(ThrowawayDb::TABLE, 'one', ['num_value' => 44]);
        $doc = Find::byId(ThrowawayDb::TABLE, 'one', TestDocument::class);
        $this->assertTrue($doc->isSome(), 'There should have been a document returned');
        $this->assertEquals(44, $doc->get()->num_value, 'The updated document is not correct');
    }

    #[TestDox('byId() succeeds when no document is updated')]
    public function testByIdSucceedsWhenNoDocumentIsUpdated(): void
    {
        Patch::byId(ThrowawayDb::TABLE, 'forty-seven', ['foo' => 'green']);
        $this->assertTrue(true, 'The above not throwing an exception is the test');
    }

    #[TestDox('byFields() succeeds when a document is updated')]
    public function testByFieldsSucceedsWhenADocumentIsUpdated(): void
    {
        Patch::byFields(ThrowawayDb::TABLE, [Field::equal('value', 'purple')], ['num_value' => 77]);
        $after = Count::byFields(ThrowawayDb::TABLE, [Field::equal('num_value', 77)]);
        $this->assertEquals(2, $after, 'There should have been 2 documents updated');
    }

    #[TestDox('byFields() succeeds when no document is updated')]
    public function testByFieldsSucceedsWhenNoDocumentIsUpdated(): void
    {
        Patch::byFields(ThrowawayDb::TABLE, [Field::equal('value', 'burgundy')], ['foo' => 'green']);
        $this->assertTrue(true, 'The above not throwing an exception is the test');
    }

    #[TestDox('byContains() fails')]
    public function testByContainsFails(): void
    {
        $this->expectException(DocumentException::class);
        Patch::byContains('', [], []);
    }

    #[TestDox('byJsonPath() fails')]
    public function testByJsonPathFails(): void
    {
        $this->expectException(DocumentException::class);
        Patch::byJsonPath('', '', []);
    }
}