Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11 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 report_progress;
18
 
19
use advanced_testcase;
20
use completion_info;
21
use testing_data_generator;
22
 
23
/**
24
 * Class for testing report progress helper.
25
 *
26
 * @package   report_progress
27
 * @covers    \report_progress\local\helper
28
 * @copyright 2021 The Open University
29
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later.
30
 */
31
final class report_progress_helper_test extends advanced_testcase {
32
 
33
    /** @var testing_data_generator data generator.*/
34
    protected $generator;
35
 
36
    /**
37
     * Set up testcase.
38
     */
39
    public function setUp(): void {
40
        global $CFG;
41
 
42
        $CFG->enablecompletion = true;
43
        $this->setAdminUser();
44
        $this->resetAfterTest();
45
        $this->generator = $this->getDataGenerator();
46
    }
47
 
48
    /**
49
     * Test process_activities_by_filter_options function.
50
     */
51
    public function test_sort_activities() {
52
        $expectedactivitytypes = ['all' => 'All activities and resources', 'assign' => 'Assignments', 'quiz' => 'Quizzes'];
53
 
54
        // Generate test data.
55
        $course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1));
56
        $quiz2 = $this->generator->create_module('quiz', ['course' => $course->id, 'name' => 'Quiz 2'],
57
                ['completion' => 1]);
58
        $quiz1 = $this->generator->create_module('quiz', ['course' => $course->id, 'name' => 'Quiz 1'],
59
                ['completion' => 1]);
60
        $assign1 = $this->generator->create_module('assign', ['course' => $course->id, 'name' => 'Assignment'],
61
                ['completion' => 1]);
62
        $completion = new completion_info($course);
63
        // Sort the activities by name.
64
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, 'quiz',
65
                'alphabetical');
66
 
67
        // Check weather the result is filtered and sorted.
68
        $this->assertEquals(2, count($activities));
69
        $this->assertEquals('Quiz 1', $activities[0]->name);
70
        $this->assertEquals('Quiz 2', $activities[1]->name);
71
        $this->assertEquals($activitytypes, $expectedactivitytypes);
72
    }
73
 
74
    /**
75
     * Test filtering by section.
76
     */
77
    public function test_filter_activities_by_section() {
78
        $course = $this->getDataGenerator()->create_course(array('enablecompletion' => 1));
79
        $this->generator->create_module('quiz', ['course' => $course->id, 'name' => 'Quiz 2', 'section' => 1],
80
                ['completion' => 1]);
81
        $this->generator->create_module('quiz', ['course' => $course->id, 'name' => 'Quiz 1', 'section' => 2],
82
                ['completion' => 1]);
83
        $this->generator->create_module('assign', ['course' => $course->id, 'name' => 'Assignment', 'section' => 2],
84
                ['completion' => 1]);
85
        $completion = new completion_info($course);
86
 
87
        // Get activities of section 0.
88
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, '', '', 0);
89
        $this->assertEquals(0, count($activities));
90
        $this->assertEquals($activitytypes, ['all' => 'All activities and resources']);
91
 
92
        // Get activities of section 1.
93
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, '', '', 1);
94
        $this->assertEquals(1, count($activities));
95
        $this->assertEquals('Quiz 2', array_shift($activities)->name);
96
        $this->assertEquals($activitytypes, ['all' => 'All activities and resources', 'quiz' => 'Quizzes']);
97
 
98
        // Get activities of section 2.
99
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, '', '', 2);
100
        $this->assertEquals(2, count($activities));
101
        $this->assertEquals('Quiz 1', array_shift($activities)->name);
102
        $this->assertEquals('Assignment', array_shift($activities)->name);
103
        $this->assertEquals(
104
                $activitytypes,
105
                ['all' => 'All activities and resources', 'assign' => 'Assignments', 'quiz' => 'Quizzes']
106
        );
107
 
108
        // Get assignments of section 2.
109
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, 'assign', '', 2);
110
        $this->assertEquals(1, count($activities));
111
        $this->assertEquals('Assignment', array_shift($activities)->name);
112
        $this->assertEquals(
113
                $activitytypes,
114
                ['all' => 'All activities and resources', 'assign' => 'Assignments', 'quiz' => 'Quizzes']
115
        );
116
 
117
        // Get assignments of section 1.
118
        list($activitytypes, $activities) = \report_progress\local\helper::get_activities_to_show($completion, 'assign', '', 1);
119
        $this->assertEquals(0, count($activities));
120
        $this->assertEquals(
121
                $activitytypes,
122
                ['all' => 'All activities and resources', 'assign' => 'Assignments', 'quiz' => 'Quizzes']
123
        );
124
    }
125
}