39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace Test\Unit\Query;
|
||
|
|
||
|
use BitBadger\PDODocument\{Configuration, Field, Mode};
|
||
|
use BitBadger\PDODocument\Query\Find;
|
||
|
use PHPUnit\Framework\Attributes\TestDox;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
/**
|
||
|
* Unit tests for the Find class
|
||
|
*/
|
||
|
class FindTest extends TestCase
|
||
|
{
|
||
|
protected function setUp(): void
|
||
|
{
|
||
|
Configuration::$mode = Mode::SQLite;
|
||
|
}
|
||
|
|
||
|
protected function tearDown(): void
|
||
|
{
|
||
|
Configuration::$mode = null;
|
||
|
}
|
||
|
|
||
|
#[TestDox('By ID succeeds')]
|
||
|
public function testByIdSucceeds(): void
|
||
|
{
|
||
|
$this->assertEquals("SELECT data FROM here WHERE data->>'id' = :id", Find::byId('here'),
|
||
|
'SELECT query not generated correctly');
|
||
|
}
|
||
|
|
||
|
public function testByFieldsSucceeds(): void
|
||
|
{
|
||
|
$this->assertEquals("SELECT data FROM there WHERE data->>'active' = :act OR data->>'locked' = :lock",
|
||
|
Find::byFields('there', [Field::EQ('active', true, ':act'), Field::EQ('locked', true, ':lock')], 'OR'),
|
||
|
'SELECT query not generated correctly');
|
||
|
}
|
||
|
}
|