]> git.mxchange.org Git - friendica.git/blob - tests/src/Security/PermissionSet/Entity/PermissionSetTest.php
Add yet another case to DateTimeFormat::fix
[friendica.git] / tests / src / Security / PermissionSet / Entity / PermissionSetTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Security\PermissionSet\Entity;
23
24 use Friendica\Security\PermissionSet\Entity\PermissionSet;
25 use Friendica\Test\MockedTest;
26
27 class PermissionSetTest extends MockedTest
28 {
29         public function dateAllowedContacts()
30         {
31                 return [
32                         'default' => [
33                                 'id'         => 10,
34                                 'allow_cid'  => ['1', '2'],
35                                 'allow_gid'  => ['3', '4'],
36                                 'deny_cid'   => ['5', '6', '7'],
37                                 'deny_gid'   => ['8'],
38                                 'update_cid' => ['10'],
39                         ],
40                 ];
41         }
42
43         /**
44          * Test if the call "withAllowedContacts()" creates a clone
45          *
46          * @dataProvider dateAllowedContacts
47          */
48         public function testWithAllowedContacts(int $id, array $allow_cid, array $allow_gid, array $deny_cid, array $deny_gid, array $update_cid)
49         {
50                 $permissionSetOrig = new PermissionSet(
51                         $id,
52                         $allow_cid,
53                         $allow_gid,
54                         $deny_cid,
55                         $deny_gid
56                 );
57
58                 $permissionSetNew = $permissionSetOrig->withAllowedContacts($update_cid);
59
60                 self::assertNotSame($permissionSetOrig, $permissionSetNew);
61                 self::assertEquals($update_cid, $permissionSetNew->allow_cid);
62                 self::assertEquals($allow_cid, $permissionSetOrig->allow_cid);
63         }
64 }