2021-08-18 17:34:11 +01:00
|
|
|
<?php
|
|
|
|
|
2021-10-10 09:26:18 +01:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-08-18 17:34:11 +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/>.
|
|
|
|
// }}}
|
|
|
|
|
2022-03-08 01:50:24 +00:00
|
|
|
namespace Component\Group\tests\Entity;
|
2021-08-18 17:34:11 +01:00
|
|
|
|
2022-03-27 15:19:09 +01:00
|
|
|
use App\Core\DB;
|
2022-03-08 01:50:24 +00:00
|
|
|
use App\Entity\Actor;
|
2021-08-18 17:34:11 +01:00
|
|
|
use App\Util\GNUsocialTestCase;
|
2022-03-08 01:50:24 +00:00
|
|
|
use Component\Group\Entity\LocalGroup;
|
2021-08-18 17:34:11 +01:00
|
|
|
use Jchook\AssertThrows\AssertThrows;
|
|
|
|
|
|
|
|
class GroupTest extends GNUsocialTestCase
|
|
|
|
{
|
|
|
|
use AssertThrows;
|
|
|
|
|
|
|
|
public function testGetActor()
|
|
|
|
{
|
2022-03-08 01:50:24 +00:00
|
|
|
$group = DB::findOneBy(LocalGroup::class, ['nickname' => 'taken_public_group']);
|
|
|
|
$actor = DB::findOneBy(Actor::class, ['nickname' => 'taken_public_group']);
|
|
|
|
static::assertObjectEquals($actor, $group->getActor());
|
2021-08-18 17:34:11 +01:00
|
|
|
}
|
|
|
|
}
|