2021-05-11 22:04:15 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-05-11 22:04:15 +01:00
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
namespace App\Tests\Core\DB;
|
|
|
|
|
|
|
|
use App\Core\DB\DB;
|
2021-09-18 03:22:27 +01:00
|
|
|
use App\Entity\Actor;
|
2021-05-11 22:04:15 +01:00
|
|
|
use App\Entity\LocalUser;
|
|
|
|
use App\Util\Exception\DuplicateFoundException;
|
|
|
|
use App\Util\Exception\NotFoundException;
|
|
|
|
use App\Util\GNUsocialTestCase;
|
|
|
|
use Jchook\AssertThrows\AssertThrows;
|
|
|
|
|
|
|
|
class DBTest extends GNUsocialTestCase
|
|
|
|
{
|
|
|
|
use AssertThrows;
|
|
|
|
|
|
|
|
public function testDql()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
2021-09-18 03:22:27 +01:00
|
|
|
$actor = DB::dql('select a from actor a where a.nickname = :nickname', ['nickname' => 'taken_user']);
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertIsArray($actor);
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertTrue($actor[0] instanceof Actor);
|
2021-05-11 22:04:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSql()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
2021-11-08 20:21:41 +00:00
|
|
|
$actor = DB::sql('select {select} from actor a where a.nickname = :nickname', ['nickname' => 'taken_user']);
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertIsArray($actor);
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertTrue($actor[0] instanceof Actor);
|
2021-05-11 22:04:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindBy()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
2021-09-18 03:22:27 +01:00
|
|
|
$actor = DB::findBy('actor', ['nickname' => 'taken_user']);
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertIsArray($actor);
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertTrue($actor[0] instanceof Actor);
|
2021-05-11 22:04:15 +01:00
|
|
|
|
2021-09-18 03:22:27 +01:00
|
|
|
$actor = DB::findBy('actor', ['and' => ['is_null' => 'bio', 'or' => ['nickname' => 'user does not exist', 'gte' => ['id' => 0]]]]);
|
2021-10-10 09:26:18 +01:00
|
|
|
static::assertIsArray($actor);
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertTrue($actor[0] instanceof Actor);
|
2021-05-11 22:04:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testFindOneBy()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
2021-09-18 03:22:27 +01:00
|
|
|
$actor = DB::findOneBy('actor', ['nickname' => 'taken_user']);
|
|
|
|
static::assertTrue($actor instanceof Actor);
|
2021-05-11 22:04:15 +01:00
|
|
|
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertThrows(DuplicateFoundException::class, fn () => DB::findOneBy('actor', ['is_null' => 'bio']));
|
|
|
|
static::assertThrows(NotFoundException::class, fn () => DB::findOneBy('actor', ['nickname' => 'nickname_not_in_use']));
|
2021-05-11 22:04:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCount()
|
|
|
|
{
|
|
|
|
static::bootKernel();
|
2021-09-18 03:22:27 +01:00
|
|
|
static::assertTrue(DB::count('actor', ['nickname' => 'taken_user']) == 1);
|
|
|
|
static::assertTrue(DB::count('actor', []) != 1);
|
2021-05-11 22:04:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testPersistWithSameId()
|
|
|
|
{
|
2021-11-23 22:34:35 +00:00
|
|
|
$actor = Actor::create(['nickname' => 'test', 'bio' => 'some very interesting bio', 'is_local' => false]);
|
2021-05-11 22:04:15 +01:00
|
|
|
$user = LocalUser::create(['nickname' => 'test']);
|
|
|
|
$id = DB::persistWithSameId($actor, $user, fn ($id) => $id);
|
|
|
|
static::assertTrue($id != 0);
|
|
|
|
static::assertTrue($actor->getId() == $id);
|
|
|
|
static::assertTrue($user->getId() == $id);
|
|
|
|
}
|
|
|
|
}
|