. /** * Base class for unit tests for message_jabber. * * @package message_jabber * @copyright 2018 Mihail Geshoski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); use \core_privacy\tests\provider_testcase; /** * Unit tests for message\output\jabber\classes\privacy\provider.php * * @copyright 2018 Mihail Geshoski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class message_jabber_testcase extends provider_testcase { /** * Basic setup for these tests. */ public function setUp() { $this->resetAfterTest(true); } /** * Test returning metadata. */ public function test_get_metadata() { $collection = new \core_privacy\local\metadata\collection('message_jabber'); $collection = \message_jabber\privacy\provider::get_metadata($collection); $this->assertNotEmpty($collection); } /** * Test getting the context for the user ID related to this plugin. */ public function test_get_contexts_for_userid() { $user = $this->getDataGenerator()->create_user(); $contextlist = \message_jabber\privacy\provider::get_contexts_for_userid($user->id); $this->assertEmpty($contextlist); } }