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
/**
18
 * Tests for class core_course_category methods invoking hooks.
19
 *
20
 * @package    core_course
21
 * @category   test
22
 * @copyright  2020 Ruslan Kabalin
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
namespace core_course;
27
 
28
defined('MOODLE_INTERNAL') || die();
29
 
30
global $CFG;
31
require_once($CFG->dirroot . '/course/tests/fixtures/mock_hooks.php');
32
 
33
use PHPUnit\Framework\MockObject\MockObject;
34
use core_course\test\mock_hooks;
35
 
36
/**
37
 * Functional test for class core_course_category methods invoking hooks.
38
 */
1441 ariadna 39
final class category_hooks_test extends \advanced_testcase {
1 efrain 40
 
41
    protected function setUp(): void {
1441 ariadna 42
        parent::setUp();
1 efrain 43
        $this->resetAfterTest();
44
        $this->setAdminUser();
45
    }
46
 
47
    /**
48
     * Provides mocked category configured for named callback function.
49
     *
50
     * get_plugins_callback_function will return callable prefixed with `tool_unittest_`,
51
     * the actual callbacks are defined in mock_hooks.php fixture file.
52
     *
53
     * @param core_course_category $category Category to mock
54
     * @param string $callback Callback function used in method we test.
55
     * @return MockObject
56
     */
57
    public function get_mock_category(\core_course_category $category, string $callback = ''): MockObject {
58
        // Setup mock object for \core_course_category.
59
        // Disable original constructor, since we can't use it directly since it is private.
60
        $mockcategory = $this->getMockBuilder(\core_course_category::class)
61
            ->onlyMethods(['get_plugins_callback_function'])
62
            ->disableOriginalConstructor()
63
            ->getMock();
64
 
65
        // Define get_plugins_callback_function use and return value.
66
        if (!empty($callback)) {
67
            $mockcategory->method('get_plugins_callback_function')
68
                ->with($this->equalTo($callback))
69
                ->willReturn(['tool_unittest_' . $callback]);
70
        }
71
 
72
        // Modify constructor visibility and invoke mock object with real object.
73
        // This is used to overcome private constructor.
74
        $reflected = new \ReflectionClass(\core_course_category::class);
75
        $constructor = $reflected->getConstructor();
76
        $constructor->invoke($mockcategory, $category->get_db_record());
77
 
78
        return $mockcategory;
79
    }
80
 
11 efrain 81
    public function test_can_course_category_delete_hook(): void {
1 efrain 82
        $category1 = \core_course_category::create(array('name' => 'Cat1'));
83
        $category2 = \core_course_category::create(array('name' => 'Cat2', 'parent' => $category1->id));
84
        $category3 = \core_course_category::create(array('name' => 'Cat3'));
85
 
86
        $mockcategory2 = $this->get_mock_category($category2, 'can_course_category_delete');
87
 
88
        // Add course to mocked clone of category2.
89
        $course1 = $this->getDataGenerator()->create_course(array('category' => $mockcategory2->id));
90
 
91
        // Now configure fixture to return false for the callback.
92
        mock_hooks::set_can_course_category_delete_return(false);
93
        $this->assertFalse($mockcategory2->can_delete_full($category3->id));
94
 
95
        // Now configure fixture to return true for the callback.
96
        mock_hooks::set_can_course_category_delete_return(true);
97
        $this->assertTrue($mockcategory2->can_delete_full($category3->id));
98
 
99
        // Verify passed arguments.
100
        $arguments = mock_hooks::get_calling_arguments();
101
        $this->assertCount(1, $arguments);
102
 
103
        // Argument 1 is the same core_course_category instance.
104
        $argument = array_shift($arguments);
105
        $this->assertSame($mockcategory2, $argument);
106
    }
107
 
11 efrain 108
    public function test_can_course_category_delete_move_hook(): void {
1 efrain 109
        $category1 = \core_course_category::create(array('name' => 'Cat1'));
110
        $category2 = \core_course_category::create(array('name' => 'Cat2', 'parent' => $category1->id));
111
        $category3 = \core_course_category::create(array('name' => 'Cat3'));
112
 
113
        $mockcategory2 = $this->get_mock_category($category2, 'can_course_category_delete_move');
114
 
115
        // Add course to mocked clone of category2.
116
        $course1 = $this->getDataGenerator()->create_course(array('category' => $mockcategory2->id));
117
 
118
        // Now configure fixture to return false for the callback.
119
        mock_hooks::set_can_course_category_delete_move_return(false);
120
        $this->assertFalse($mockcategory2->can_move_content_to($category3->id));
121
 
122
        // Now configure fixture to return true for the callback.
123
        mock_hooks::set_can_course_category_delete_move_return(true);
124
        $this->assertTrue($mockcategory2->can_move_content_to($category3->id));
125
 
126
        // Verify passed arguments.
127
        $arguments = mock_hooks::get_calling_arguments();
128
        $this->assertCount(2, $arguments);
129
 
130
        // Argument 1 is the same core_course_category instance.
131
        $argument = array_shift($arguments);
132
        $this->assertSame($mockcategory2, $argument);
133
 
134
        // Argument 2 is referring to category 3.
135
        $argument = array_shift($arguments);
136
        $this->assertInstanceOf(\core_course_category::class, $argument);
137
        $this->assertEquals($category3->id, $argument->id);
138
    }
139
 
11 efrain 140
    public function test_pre_course_category_delete_hook(): void {
1 efrain 141
        $category1 = \core_course_category::create(array('name' => 'Cat1'));
142
        $category2 = \core_course_category::create(array('name' => 'Cat2', 'parent' => $category1->id));
143
 
144
        $mockcategory2 = $this->get_mock_category($category2, 'pre_course_category_delete');
145
        $mockcategory2->delete_full();
146
 
147
        // Verify passed arguments.
148
        $arguments = mock_hooks::get_calling_arguments();
149
        $this->assertCount(1, $arguments);
150
 
151
        // Argument 1 is the category object.
152
        $argument = array_shift($arguments);
153
        $this->assertEquals($mockcategory2->get_db_record(), $argument);
154
    }
155
 
11 efrain 156
    public function test_pre_course_category_delete_move_hook(): void {
1 efrain 157
        $category1 = \core_course_category::create(array('name' => 'Cat1'));
158
        $category2 = \core_course_category::create(array('name' => 'Cat2', 'parent' => $category1->id));
159
        $category3 = \core_course_category::create(array('name' => 'Cat3'));
160
 
161
        $mockcategory2 = $this->get_mock_category($category2, 'pre_course_category_delete_move');
162
 
163
        // Add course to mocked clone of category2.
164
        $course1 = $this->getDataGenerator()->create_course(array('category' => $mockcategory2->id));
165
 
166
        $mockcategory2->delete_move($category3->id);
167
 
168
        // Verify passed arguments.
169
        $arguments = mock_hooks::get_calling_arguments();
170
        $this->assertCount(2, $arguments);
171
 
172
        // Argument 1 is the same core_course_category instance.
173
        $argument = array_shift($arguments);
174
        $this->assertSame($mockcategory2, $argument);
175
 
176
        // Argument 2 is referring to category 3.
177
        $argument = array_shift($arguments);
178
        $this->assertInstanceOf(\core_course_category::class, $argument);
179
        $this->assertEquals($category3->id, $argument->id);
180
    }
181
 
11 efrain 182
    public function test_get_course_category_contents_hook(): void {
1 efrain 183
        $category1 = \core_course_category::create(array('name' => 'Cat1'));
184
        $category2 = \core_course_category::create(array('name' => 'Cat2', 'parent' => $category1->id));
185
 
186
        $mockcategory2 = $this->get_mock_category($category2);
187
 
188
        // Define get_plugins_callback_function use in the mock, it is called twice for different callback in the form.
1441 ariadna 189
        $callbackinvocations = $this->exactly(2);
190
        $mockcategory2->expects($callbackinvocations)
1 efrain 191
            ->method('get_plugins_callback_function')
1441 ariadna 192
            ->willReturnCallback(function ($method) use ($callbackinvocations): array {
193
                switch (self::getInvocationCount($callbackinvocations)) {
194
                    case 1:
195
                        $this->assertEquals('can_course_category_delete', $method);
196
                        return ['tool_unittest_can_course_category_delete'];
197
                    case 2:
198
                        $this->assertEquals('get_course_category_contents', $method);
199
                        return ['tool_unittest_get_course_category_contents'];
200
                    default:
201
                        $this->fail('Unexpected callback invocation');
202
                }
203
            });
1 efrain 204
 
205
        // Now configure fixture to return string for the callback.
206
        $content = 'Bunch of test artefacts';
207
        mock_hooks::set_get_course_category_contents_return($content);
208
 
209
        $mform = new \core_course_deletecategory_form(null, $mockcategory2);
210
        $this->expectOutputRegex("/<li>$content<\/li>/");
211
        $mform->display();
212
 
213
        // Verify passed arguments.
214
        $arguments = mock_hooks::get_calling_arguments();
215
        $this->assertCount(1, $arguments);
216
 
217
        // Argument 1 is the same core_course_category instance.
218
        $argument = array_shift($arguments);
219
        $this->assertSame($mockcategory2, $argument);
220
    }
221
}