Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-01 13:20:50 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-07 19:18:29 +0300
commit20d722901fb244166b4b78535e4058c1910c93b5 (patch)
tree583cc56e36ad739ea3385106c2ce106a425cab72 /tests
parent4b3549db1f60048e93410b572a53fdaa4c9b90a4 (diff)
Allow setting publishing permissions for all users
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Model/AttendeeMapperTest.php448
1 files changed, 448 insertions, 0 deletions
diff --git a/tests/php/Model/AttendeeMapperTest.php b/tests/php/Model/AttendeeMapperTest.php
new file mode 100644
index 000000000..dad2fea1b
--- /dev/null
+++ b/tests/php/Model/AttendeeMapperTest.php
@@ -0,0 +1,448 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2021 Joas Schilling <coding@schilljs.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program 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.
+ *
+ * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Talk\Tests\php\Model;
+
+use OCA\Talk\Model\Attendee;
+use OCA\Talk\Model\AttendeeMapper;
+use OCA\Talk\Participant;
+use OCP\AppFramework\Db\DoesNotExistException;
+use Test\TestCase;
+
+/**
+ * @group DB
+ */
+class AttendeeMapperTest extends TestCase {
+
+ /** @var AttendeeMapper */
+ protected $attendeeMapper;
+
+
+ public function setUp(): void {
+ parent::setUp();
+
+ $this->attendeeMapper = new AttendeeMapper(
+ \OC::$server->getDatabaseConnection()
+ );
+ }
+
+ public function dataModifyPublishingPermissions(): array {
+ return [
+ 0 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_CIRCLES,
+ 'actor_id' => 'c1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_GROUPS,
+ 'actor_id' => 'g1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ ],
+ Participant::PERMISSIONS_SET,
+ Participant::FLAG_IN_CALL,
+ false,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_CIRCLES,
+ 'actor_id' => 'c1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_GROUPS,
+ 'actor_id' => 'g1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ ],
+ 1 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_CIRCLES,
+ 'actor_id' => 'c1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_GROUPS,
+ 'actor_id' => 'g1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ ],
+ Participant::PERMISSIONS_SET,
+ Participant::FLAG_IN_CALL,
+ true,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_CIRCLES,
+ 'actor_id' => 'c1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_GROUPS,
+ 'actor_id' => 'g1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ ],
+ 2 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ ],
+ Participant::PERMISSIONS_SET,
+ Participant::FLAG_IN_CALL,
+ false,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ ],
+ 3 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ ],
+ Participant::PERMISSIONS_SET,
+ Participant::FLAG_IN_CALL,
+ true,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ ],
+ 4 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u2',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ Participant::PERMISSIONS_ADD,
+ Participant::FLAG_IN_CALL,
+ true,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_VIDEO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u2',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ ],
+ ],
+ 5 => [
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_VIDEO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u2',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_IN_CALL,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u3',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ ],
+ Participant::PERMISSIONS_REMOVE,
+ Participant::FLAG_IN_CALL,
+ true,
+ [
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'o1',
+ 'participant_type' => Participant::OWNER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'm1',
+ 'participant_type' => Participant::MODERATOR,
+ 'publishing_permissions' => Participant::FLAG_WITH_VIDEO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u1',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u2',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_DISCONNECTED,
+ ],
+ [
+ 'actor_type' => Attendee::ACTOR_USERS,
+ 'actor_id' => 'u3',
+ 'participant_type' => Participant::USER,
+ 'publishing_permissions' => Participant::FLAG_WITH_AUDIO + Participant::FLAG_WITH_VIDEO,
+ ],
+ ],
+ ],
+ ];
+ }
+
+ /**
+ * @dataProvider dataModifyPublishingPermissions
+ * @param array $attendees
+ * @param string $mode
+ * @param int $permission
+ * @param bool $includeModerators
+ * @param array $expected
+ */
+ public function testModifyPublishingPermissions(array $attendees, string $mode, int $permission, bool $includeModerators, array $expected): void {
+ $roomId = 12345678;
+
+ foreach ($attendees as $attendeeData) {
+ try {
+ $attendee = $this->attendeeMapper->findByActor($roomId, $attendeeData['actor_type'], $attendeeData['actor_id']);
+ $this->attendeeMapper->delete($attendee);
+ } catch (DoesNotExistException $e) {
+ }
+
+ $attendee = new Attendee();
+ $attendee->setRoomId($roomId);
+ $attendee->setActorType($attendeeData['actor_type']);
+ $attendee->setActorId($attendeeData['actor_id']);
+ $attendee->setParticipantType($attendeeData['participant_type']);
+ $attendee->setPublishingPermissions($attendeeData['publishing_permissions']);
+ $this->attendeeMapper->insert($attendee);
+ }
+
+ $this->attendeeMapper->modifyPublishingPermissions($roomId, $mode, $permission, $includeModerators);
+
+ foreach ($expected as $attendeeData) {
+ $attendee = $this->attendeeMapper->findByActor($roomId, $attendeeData['actor_type'], $attendeeData['actor_id']);
+
+ $this->assertEquals(
+ $attendeeData['publishing_permissions'],
+ $attendee->getPublishingPermissions(),
+ 'Publishing permissions mismatch for ' . $attendeeData['actor_type'] . '#' . $attendeeData['actor_id']
+ );
+ $this->attendeeMapper->delete($attendee);
+ }
+ }
+}