2024-06-08 23:58:45 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Test\Unit\Query;
|
|
|
|
|
|
|
|
use BitBadger\PDODocument\{Configuration, DocumentException, Field, Mode, Parameters};
|
|
|
|
use BitBadger\PDODocument\Query\RemoveFields;
|
|
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for the RemoveFields class
|
|
|
|
*/
|
2024-06-12 21:43:17 +00:00
|
|
|
#[TestDox('Remove Fields Queries (Unit tests)')]
|
2024-06-08 23:58:45 +00:00
|
|
|
class RemoveFieldsTest extends TestCase
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
protected function tearDown(): void
|
|
|
|
{
|
|
|
|
Configuration::$mode = null;
|
|
|
|
}
|
|
|
|
|
2024-06-08 23:58:45 +00:00
|
|
|
#[TestDox('Update succeeds for PostgreSQL')]
|
|
|
|
public function testUpdateSucceedsForPostgreSQL(): void
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::PgSQL;
|
|
|
|
$this->assertEquals('UPDATE taco SET data = data - :names::text[] WHERE it = true',
|
|
|
|
RemoveFields::update('taco', [':names' => "{one,two}"], 'it = true'), 'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('Update succeeds for SQLite')]
|
|
|
|
public function testUpdateSucceedsForSQLite(): void
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::SQLite;
|
|
|
|
$this->assertEquals('UPDATE burrito SET data = json_remove(data, :name0, :name1, :name2) WHERE a = b',
|
|
|
|
RemoveFields::update('burrito', Parameters::fieldNames(':name', ['one', 'two', 'ten']), 'a = b'),
|
|
|
|
'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateFailsWhenModeNotSet(): void
|
|
|
|
{
|
|
|
|
$this->expectException(DocumentException::class);
|
|
|
|
RemoveFields::update('wow', [], '');
|
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By ID succeeds for PostgreSQL')]
|
|
|
|
public function testByIdSucceedsForPostgreSQL()
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::PgSQL;
|
|
|
|
$this->assertEquals("UPDATE churro SET data = data - :bite::text[] WHERE data->>'id' = :id",
|
|
|
|
RemoveFields::byId('churro', Parameters::fieldNames(':bite', ['byte'])), 'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By ID succeeds for SQLite')]
|
|
|
|
public function testByIdSucceedsForSQLite()
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::SQLite;
|
|
|
|
$this->assertEquals("UPDATE quesadilla SET data = json_remove(data, :bite0) WHERE data->>'id' = :id",
|
|
|
|
RemoveFields::byId('quesadilla', Parameters::fieldNames(':bite', ['byte'])),
|
|
|
|
'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By ID fails when mode not set')]
|
|
|
|
public function testByIdFailsWhenModeNotSet(): void
|
|
|
|
{
|
|
|
|
$this->expectException(DocumentException::class);
|
|
|
|
RemoveFields::byId('oof', []);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By fields succeeds for PostgreSQL')]
|
|
|
|
public function testByFieldsSucceedsForPostgreSQL()
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::PgSQL;
|
|
|
|
$this->assertEquals("UPDATE enchilada SET data = data - :sauce::text[] WHERE data->>'cheese' = :queso",
|
|
|
|
RemoveFields::byFields('enchilada', [Field::EQ('cheese', 'jack', ':queso')],
|
|
|
|
Parameters::fieldNames(':sauce', ['white'])),
|
|
|
|
'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By fields succeeds for SQLite')]
|
|
|
|
public function testByFieldsSucceedsForSQLite()
|
|
|
|
{
|
2024-06-12 21:43:17 +00:00
|
|
|
Configuration::$mode = Mode::SQLite;
|
|
|
|
$this->assertEquals(
|
|
|
|
"UPDATE chimichanga SET data = json_remove(data, :filling0) WHERE data->>'side' = :rice",
|
|
|
|
RemoveFields::byFields('chimichanga', [Field::EQ('side', 'beans', ':rice')],
|
|
|
|
Parameters::fieldNames(':filling', ['beef'])),
|
|
|
|
'UPDATE statement not correct');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testByFieldsFailsWhenModeNotSet(): void
|
|
|
|
{
|
|
|
|
$this->expectException(DocumentException::class);
|
|
|
|
RemoveFields::byFields('boing', [], []);
|
|
|
|
}
|
2024-06-12 21:43:17 +00:00
|
|
|
|
|
|
|
#[TestDox('By contains succeeds for PostgreSQL')]
|
|
|
|
public function testByContainsSucceedsForPostgreSQL(): void
|
|
|
|
{
|
|
|
|
Configuration::$mode = Mode::PgSQL;
|
|
|
|
$this->assertEquals('UPDATE food SET data = data - :drink::text[] WHERE data @> :criteria',
|
|
|
|
RemoveFields::byContains('food', Parameters::fieldNames(':drink', ['a', 'b'])),
|
|
|
|
'UPDATE statement not correct');
|
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By contains fails for non PostgreSQL')]
|
|
|
|
public function testByContainsFailsForNonPostgreSQL(): void
|
|
|
|
{
|
|
|
|
$this->expectException(DocumentException::class);
|
|
|
|
RemoveFields::byContains('', []);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By JSON Path succeeds for PostgreSQL')]
|
|
|
|
public function testByJsonPathSucceedsForPostgreSQL(): void
|
|
|
|
{
|
|
|
|
Configuration::$mode = Mode::PgSQL;
|
2024-06-14 01:39:16 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
'UPDATE dessert SET data = data - :cake::text[] WHERE jsonb_path_exists(data, :path::jsonpath)',
|
2024-06-12 21:43:17 +00:00
|
|
|
RemoveFields::byJsonPath('dessert', Parameters::fieldNames(':cake', ['b', 'c'])),
|
|
|
|
'UPDATE statement not correct');
|
|
|
|
}
|
|
|
|
|
|
|
|
#[TestDox('By JSON Path fails for non PostgreSQL')]
|
|
|
|
public function testByJsonPathFailsForNonPostgreSQL(): void
|
|
|
|
{
|
|
|
|
$this->expectException(DocumentException::class);
|
|
|
|
RemoveFields::byJsonPath('', []);
|
|
|
|
}
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|