2018-09-16 00:58:25 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-09-16 00:58:25 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Database;
|
|
|
|
|
|
|
|
use Engelsystem\Database\Database;
|
|
|
|
use Illuminate\Database\Capsule\Manager as CapsuleManager;
|
|
|
|
use Illuminate\Database\Connection as DatabaseConnection;
|
|
|
|
use PDO;
|
2019-04-24 10:45:00 +02:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2018-09-16 00:58:25 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class DatabaseTest extends TestCase
|
|
|
|
{
|
2022-12-15 19:50:56 +01:00
|
|
|
protected DatabaseConnection $connection;
|
2018-09-16 00:58:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::__construct()
|
|
|
|
* @covers \Engelsystem\Database\Database::getConnection()
|
2019-04-24 11:01:37 +02:00
|
|
|
* @covers \Engelsystem\Database\Database::getPdo()
|
2018-09-16 00:58:25 +02:00
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testInit(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
2022-04-16 10:38:28 +02:00
|
|
|
/** @var PDO|MockObject $pdo */
|
|
|
|
$pdo = $this->getMockBuilder(PDO::class)
|
2018-09-16 00:58:25 +02:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
/** @var DatabaseConnection|MockObject $databaseConnection */
|
|
|
|
$databaseConnection = $this->getMockBuilder(DatabaseConnection::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$databaseConnection->expects($this->atLeastOnce())
|
|
|
|
->method('getPdo')
|
|
|
|
->willReturn($pdo);
|
|
|
|
|
|
|
|
$db = new Database($databaseConnection);
|
|
|
|
|
|
|
|
$this->assertEquals($databaseConnection, $db->getConnection());
|
|
|
|
$this->assertEquals($pdo, $db->getPdo());
|
|
|
|
$this->assertInstanceOf(PDO::class, $db->getPdo());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::select()
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testSelect(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$db = new Database($this->connection);
|
|
|
|
|
|
|
|
$return = $db->select('SELECT * FROM test_data');
|
|
|
|
$this->assertTrue(count($return) > 3);
|
|
|
|
|
|
|
|
$return = $db->select('SELECT * FROM test_data WHERE id = ?', [2]);
|
|
|
|
$this->assertCount(1, $return);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::selectOne()
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testSelectOne(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$db = new Database($this->connection);
|
|
|
|
|
|
|
|
$return = $db->selectOne('SELECT * FROM test_data');
|
|
|
|
$this->assertEquals('Foo', $return->data);
|
|
|
|
|
|
|
|
$return = $db->selectOne('SELECT * FROM test_data WHERE id = -1');
|
|
|
|
$this->assertEmpty($return);
|
|
|
|
|
|
|
|
$return = $db->selectOne('SELECT * FROM test_data WHERE id = ?', [3]);
|
2019-04-24 10:45:00 +02:00
|
|
|
$this->assertIsNotArray($return);
|
2018-09-16 00:58:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::insert()
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testInsert(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$db = new Database($this->connection);
|
|
|
|
|
|
|
|
$result = $db->insert("INSERT INTO test_data (id, data) VALUES (5, 'Some random text'), (6, 'another text')");
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::update()
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testUpdate(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$db = new Database($this->connection);
|
|
|
|
|
|
|
|
$count = $db->update("UPDATE test_data SET data='NOPE' WHERE data LIKE '%Replaceme%'");
|
|
|
|
$this->assertEquals(3, $count);
|
|
|
|
|
|
|
|
$count = $db->update("UPDATE test_data SET data=? WHERE data LIKE '%NOPE%'", ['Some random text!']);
|
|
|
|
$this->assertEquals(3, $count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Database\Database::delete()
|
|
|
|
*/
|
2022-12-14 19:15:20 +01:00
|
|
|
public function testDelete(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$db = new Database($this->connection);
|
|
|
|
|
|
|
|
$count = $db->delete('DELETE FROM test_data WHERE id=1');
|
|
|
|
$this->assertEquals(1, $count);
|
|
|
|
|
|
|
|
$count = $db->delete('DELETE FROM test_data WHERE data LIKE ?', ['%Replaceme%']);
|
|
|
|
$this->assertEquals(3, $count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup in memory database
|
|
|
|
*/
|
2019-04-24 10:45:00 +02:00
|
|
|
protected function setUp(): void
|
2018-09-16 00:58:25 +02:00
|
|
|
{
|
|
|
|
$dbManager = new CapsuleManager();
|
|
|
|
$dbManager->addConnection(['driver' => 'sqlite', 'database' => ':memory:']);
|
|
|
|
|
|
|
|
$connection = $dbManager->getConnection();
|
|
|
|
$this->connection = $connection;
|
|
|
|
|
|
|
|
$connection->getPdo()->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
|
|
$connection->statement(
|
|
|
|
'
|
|
|
|
CREATE TABLE test_data(
|
|
|
|
id INT PRIMARY KEY NOT NULL,
|
|
|
|
data TEXT NOT NULL
|
|
|
|
);
|
2019-04-24 11:01:37 +02:00
|
|
|
'
|
|
|
|
);
|
2018-09-16 00:58:25 +02:00
|
|
|
$connection->statement('CREATE UNIQUE INDEX test_data_id_uindex ON test_data (id);');
|
|
|
|
$connection->insert("
|
|
|
|
INSERT INTO test_data (id, data)
|
|
|
|
VALUES
|
|
|
|
(1, 'Foo'),
|
|
|
|
(2, 'Bar'),
|
|
|
|
(3, 'Batz'),
|
|
|
|
(4, 'Lorem ipsum dolor sit'),
|
|
|
|
(10, 'Replaceme ipsum dolor sit amet'),
|
|
|
|
(11, 'Lorem Replaceme dolor sit amet'),
|
|
|
|
(12, 'Lorem ipsum Replaceme sit amet')
|
|
|
|
;");
|
|
|
|
}
|
|
|
|
}
|