1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- // {{{ 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;
- use App\Entity\GSActor;
- 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();
- $actor = DB::dql('select a from gsactor a where a.nickname = :nickname', ['nickname' => 'taken_user']);
- static::assertTrue(is_array($actor));
- static::assertTrue($actor[0] instanceof GSActor);
- }
- public function testSql()
- {
- static::bootKernel();
- $actor = DB::sql('select {select} from gsactor a where a.nickname = :nickname', ['a' => 'App\Entity\GSActor'], ['nickname' => 'taken_user']);
- static::assertTrue(is_array($actor));
- static::assertTrue($actor[0] instanceof GSActor);
- }
- public function testFindBy()
- {
- static::bootKernel();
- $actor = DB::findBy('gsactor', ['nickname' => 'taken_user']);
- static::assertTrue(is_array($actor));
- static::assertTrue($actor[0] instanceof GSActor);
- $actor = DB::findBy('gsactor', ['and' => ['is_null' => 'bio', 'or' => ['nickname' => 'user does not exist', 'gte' => ['id' => 0]]]]);
- static::assertTrue(is_array($actor));
- static::assertTrue($actor[0] instanceof GSActor);
- }
- public function testFindOneBy()
- {
- static::bootKernel();
- $actor = DB::findOneBy('gsactor', ['nickname' => 'taken_user']);
- static::assertTrue($actor instanceof GSActor);
- static::assertThrows(DuplicateFoundException::class, fn () => DB::findOneBy('gsactor', ['is_null' => 'bio']));
- static::assertThrows(NotFoundException::class, fn () => DB::findOneBy('gsactor', ['nickname' => 'nickname_not_in_use']));
- }
- public function testCount()
- {
- static::bootKernel();
- static::assertTrue(DB::count('gsactor', ['nickname' => 'taken_user']) == 1);
- static::assertTrue(DB::count('gsactor', []) != 1);
- }
- public function testPersistWithSameId()
- {
- $actor = GSActor::create(['nickname' => 'test', 'normalized_nickname' => 'test']);
- $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);
- }
- }
|