Proyectos de Subversion Moodle

Rev

Rev 11 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
namespace message_email\privacy;
18
 
19
use context_system;
20
use core_message_external;
21
use core_privacy\local\request\writer;
22
use core_privacy\tests\provider_testcase;
23
 
24
/**
25
 * Unit tests for message\output\email\classes\privacy\provider.php
26
 *
27
 * @package    message_email
28
 * @covers     \message_email\privacy\provider
29
 * @copyright  2018 Mihail Geshoski <mihail@moodle.com>
30
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31
 */
1441 ariadna 32
final class provider_test extends provider_testcase {
1 efrain 33
    /**
34
     * Basic setup for these tests.
35
     */
36
    public function setUp(): void {
1441 ariadna 37
        parent::setUp();
1 efrain 38
        $this->resetAfterTest(true);
39
    }
40
 
41
    /**
42
     * Test returning metadata.
43
     */
11 efrain 44
    public function test_get_metadata(): void {
1 efrain 45
        $collection = new \core_privacy\local\metadata\collection('message_email');
46
        $collection = \message_email\privacy\provider::get_metadata($collection);
47
        $this->assertNotEmpty($collection);
48
    }
49
 
50
    /**
51
     * Test getting the context for the user ID related to this plugin.
52
     */
11 efrain 53
    public function test_get_contexts_for_userid(): void {
1 efrain 54
        $user = $this->getDataGenerator()->create_user();
55
 
56
        $contextlist = \message_email\privacy\provider::get_contexts_for_userid($user->id);
57
        $this->assertEmpty($contextlist);
58
    }
59
 
60
    /**
61
     * Test exporting user preferences
62
     */
63
    public function test_export_user_preferences(): void {
64
        global $CFG;
65
 
66
        require_once("{$CFG->dirroot}/message/externallib.php");
67
 
68
        $user = $this->getDataGenerator()->create_user();
69
        $this->setUser($user);
70
 
71
        // Submit configuration form, which adds the preferences..
72
        core_message_external::message_processor_config_form($user->id, 'email', [
73
            [
74
                'name' => 'email_email',
75
                'value' => 'alternate@example.com',
76
            ],
77
        ]);
78
 
79
        // Switch to admin user (so we can validate preferences of the correct user are being exported).
80
        $this->setAdminUser();
81
 
82
        provider::export_user_preferences($user->id);
83
 
84
        $writer = writer::with_context(context_system::instance());
85
        $this->assertTrue($writer->has_any_data());
86
 
87
        $preferences = $writer->get_user_preferences('message_email');
88
        $this->assertNotEmpty($preferences->email);
89
 
90
        $this->assertEquals('alternate@example.com', $preferences->email->value);
91
        $this->assertEquals(get_string('privacy:preference:email', 'message_email'), $preferences->email->description);
92
    }
93
}