Daniel J. Summers
d067f8983f
- Add In/InArray support - Add ORDER BY support for `Find` functions - Update dependencies - Implement fixes identified via static analysis Reviewed-on: #5
82 lines
2.7 KiB
PHP
82 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* @author Daniel J. Summers <daniel@bitbadger.solutions>
|
|
* @license MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Test\Unit\Query;
|
|
|
|
use BitBadger\PDODocument\{Configuration, DocumentException, Field, Mode};
|
|
use BitBadger\PDODocument\Query\Exists;
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Unit tests for the Exists class
|
|
*/
|
|
#[TestDox('Exists Queries (Unit tests)')]
|
|
class ExistsTest extends TestCase
|
|
{
|
|
protected function tearDown(): void
|
|
{
|
|
Configuration::overrideMode(null);
|
|
}
|
|
|
|
#[TestDox('query() succeeds')]
|
|
public function testQuerySucceeds(): void
|
|
{
|
|
Configuration::overrideMode(Mode::SQLite);
|
|
$this->assertEquals('SELECT EXISTS (SELECT 1 FROM abc WHERE def)', Exists::query('abc', 'def'),
|
|
'Existence query not generated correctly');
|
|
}
|
|
|
|
#[TestDox('byId() succeeds')]
|
|
public function testByIdSucceeds(): void
|
|
{
|
|
Configuration::overrideMode(Mode::SQLite);
|
|
$this->assertEquals("SELECT EXISTS (SELECT 1 FROM dox WHERE data->>'id' = :id)", Exists::byId('dox'),
|
|
'Existence query not generated correctly');
|
|
}
|
|
|
|
#[TestDox('byFields() succeeds')]
|
|
public function testByFieldsSucceeds(): void
|
|
{
|
|
Configuration::overrideMode(Mode::SQLite);
|
|
$this->assertEquals("SELECT EXISTS (SELECT 1 FROM box WHERE data->>'status' <> :status)",
|
|
Exists::byFields('box', [Field::notEqual('status', 'occupied', ':status')]),
|
|
'Existence query not generated correctly');
|
|
}
|
|
|
|
#[TestDox('byContains() succeeds for PostgreSQL')]
|
|
public function testByContainsSucceedsForPostgreSQL(): void
|
|
{
|
|
Configuration::overrideMode(Mode::PgSQL);
|
|
$this->assertEquals('SELECT EXISTS (SELECT 1 FROM pocket WHERE data @> :criteria)',
|
|
Exists::byContains('pocket'), 'Existence query not generated correctly');
|
|
}
|
|
|
|
#[TestDox('byContains() fails for non PostgreSQL')]
|
|
public function testByContainsFailsForNonPostgreSQL(): void
|
|
{
|
|
$this->expectException(DocumentException::class);
|
|
Exists::byContains('');
|
|
}
|
|
|
|
#[TestDox('byJsonPath() succeeds for PostgreSQL')]
|
|
public function testByJsonPathSucceedsForPostgreSQL(): void
|
|
{
|
|
Configuration::overrideMode(Mode::PgSQL);
|
|
$this->assertEquals('SELECT EXISTS (SELECT 1 FROM lint WHERE jsonb_path_exists(data, :path::jsonpath))',
|
|
Exists::byJsonPath('lint'), 'Existence query not generated correctly');
|
|
}
|
|
|
|
#[TestDox('byJsonPath() fails for non PostgreSQL')]
|
|
public function testByJsonPathFailsForNonPostgreSQL(): void
|
|
{
|
|
$this->expectException(DocumentException::class);
|
|
Exists::byJsonPath('');
|
|
}
|
|
}
|