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 qtype_random;
18
 
19
use qtype_random;
20
use question_bank;
21
 
22
defined('MOODLE_INTERNAL') || die();
23
 
24
global $CFG;
25
require_once($CFG->dirroot . '/question/engine/tests/helpers.php');
26
require_once($CFG->dirroot . '/question/type/random/questiontype.php');
27
 
28
 
29
/**
30
 * Unit tests for the random question type class.
31
 *
32
 * @package    qtype_random
33
 * @copyright  2010 The Open University
34
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35
 */
1441 ariadna 36
final class question_type_test extends \advanced_testcase {
1 efrain 37
    protected $qtype;
38
 
39
    protected function setUp(): void {
1441 ariadna 40
        parent::setUp();
1 efrain 41
        $this->qtype = new qtype_random();
42
    }
43
 
44
    protected function tearDown(): void {
45
        $this->qtype = null;
1441 ariadna 46
        parent::tearDown();
1 efrain 47
    }
48
 
11 efrain 49
    public function test_name(): void {
1 efrain 50
        $this->assertEquals($this->qtype->name(), 'random');
51
    }
52
 
11 efrain 53
    public function test_can_analyse_responses(): void {
1 efrain 54
        $this->assertFalse($this->qtype->can_analyse_responses());
55
    }
56
 
11 efrain 57
    public function test_get_random_guess_score(): void {
1 efrain 58
        $this->assertNull($this->qtype->get_random_guess_score(null));
59
    }
60
 
11 efrain 61
    public function test_load_question(): void {
1 efrain 62
        $this->resetAfterTest();
63
 
64
        $syscontext = \context_system::instance();
65
        /** @var core_question_generator $generator */
66
        $generator = $this->getDataGenerator()->get_plugin_generator('core_question');
67
        $category = $generator->create_question_category(['contextid' => $syscontext->id]);
68
 
69
        $fromform = \test_question_maker::get_question_form_data('random');
70
        $fromform->category = $category->id . ',' . $syscontext->id;
71
 
72
        $question = new \stdClass();
73
        $question->category = $category->id;
74
        $question->qtype = 'random';
75
        $question->createdby = 0;
76
 
77
        $this->qtype->save_question($question, $fromform);
78
        $questiondata = question_bank::load_question_data($question->id);
79
 
80
        $this->assertEquals(['id', 'category', 'parent', 'name', 'questiontext', 'questiontextformat',
81
                'generalfeedback', 'generalfeedbackformat', 'defaultmark', 'penalty', 'qtype',
82
                'length', 'stamp', 'timecreated', 'timemodified', 'createdby', 'modifiedby', 'idnumber', 'contextid',
83
                'status', 'versionid', 'version', 'questionbankentryid', 'categoryobject', 'options', 'hints'],
84
                array_keys(get_object_vars($questiondata)));
85
        $this->assertEquals($category->id, $questiondata->category);
86
 
87
        // Random questions are not real questions. This is signaled by parent
88
        // being non-zero - and in fact equal to question id.
89
        $this->assertEquals($questiondata->id, $questiondata->parent);
90
        $this->assertEquals('Random (' . $category->name . ')', $questiondata->name);
91
        $this->assertEquals(0, $questiondata->questiontext); // Used to store 'Select from subcategories'.
92
        $this->assertEquals('random', $questiondata->qtype);
93
        $this->assertEquals(1, $questiondata->length);
94
        $this->assertEquals(\core_question\local\bank\question_version_status::QUESTION_STATUS_READY, $questiondata->status);
95
        $this->assertEquals($category->contextid, $questiondata->contextid);
96
 
97
        // Options - not used.
98
        $this->assertEquals(['answers'], array_keys(get_object_vars($questiondata->options)));
99
        $this->assertEquals([], $questiondata->options->answers);
100
 
101
        // Hints - not used.
102
        $this->assertEquals([], $questiondata->hints);
103
    }
104
 
11 efrain 105
    public function test_get_possible_responses(): void {
1 efrain 106
        $this->assertEquals(array(), $this->qtype->get_possible_responses(null));
107
    }
108
 
11 efrain 109
    public function test_question_creation(): void {
1 efrain 110
        $this->resetAfterTest();
111
        question_bank::get_qtype('random')->clear_caches_before_testing();
112
 
113
        $generator = $this->getDataGenerator()->get_plugin_generator('core_question');
114
        $cat = $generator->create_question_category();
115
        $question1 = $generator->create_question('shortanswer', null, array('category' => $cat->id));
116
        $question2 = $generator->create_question('numerical', null, array('category' => $cat->id));
117
 
118
        $randomquestion = $generator->create_question('random', null, array('category' => $cat->id));
119
 
120
        $expectedids = array($question1->id, $question2->id);
121
        $actualids = question_bank::get_qtype('random')->get_available_questions_from_category($cat->id, 0);
122
        sort($expectedids);
123
        sort($actualids);
124
        $this->assertEquals($expectedids, $actualids);
125
 
126
        $q = question_bank::load_question($randomquestion->id);
127
 
128
        $this->assertContainsEquals($q->id, array($question1->id, $question2->id));
129
    }
130
}