From c3de7b6d5a3c23cc297f7e6565c3a6d6bd214d52 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 12 Jan 2018 16:40:23 +0100 Subject: [PATCH] Add capabilities Signed-off-by: Joas Schilling --- lib/Capabilities.php | 51 ++++++++++++++++++++++++++++++++++ tests/php/CapabilitiesTest.php | 44 +++++++++++++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 lib/Capabilities.php create mode 100644 tests/php/CapabilitiesTest.php diff --git a/lib/Capabilities.php b/lib/Capabilities.php new file mode 100644 index 00000000000..e5ce6886570 --- /dev/null +++ b/lib/Capabilities.php @@ -0,0 +1,51 @@ + + * + * @author Joas Schilling + * + * @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 . + * + */ + +namespace OCA\Spreed; + +use OCP\Capabilities\ICapability; + +/** + * Class Capabilities + * + * @package OCA\Notifications + */ +class Capabilities implements ICapability { + + /** + * Return this classes capabilities + * + * @return array + */ + public function getCapabilities() { + return [ + 'spreed' => [ + 'features' => [ + 'audio', + 'video', + 'chat', + ], + ], + ]; + } +} diff --git a/tests/php/CapabilitiesTest.php b/tests/php/CapabilitiesTest.php new file mode 100644 index 00000000000..090142b841c --- /dev/null +++ b/tests/php/CapabilitiesTest.php @@ -0,0 +1,44 @@ + + * + * @author Joas Schilling + * + * @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 . + * + */ + +namespace OCA\Spreed\Tests\Unit; + +use OCA\Spreed\Capabilities; +use Test\TestCase; + +class CapabilitiesTest extends TestCase { + + public function testGetCapabilities() { + $capabilities = new Capabilities(); + + $this->assertSame([ + 'spreed' => [ + 'features' => [ + 'audio', + 'video', + 'chat', + ], + ], + ], $capabilities->getCapabilities()); + } +}