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_description;
18
 
19
use qtype_description;
20
use qtype_description_edit_form;
21
 
22
defined('MOODLE_INTERNAL') || die();
23
 
24
global $CFG;
25
require_once($CFG->dirroot . '/question/type/description/questiontype.php');
26
require_once($CFG->dirroot . '/question/engine/tests/helpers.php');
27
require_once($CFG->dirroot . '/question/type/edit_question_form.php');
28
require_once($CFG->dirroot . '/question/type/description/edit_description_form.php');
29
 
30
 
31
/**
32
 * Unit tests for the description question type class.
33
 *
34
 * @package    qtype_description
35
 * @copyright  2013 The Open University
36
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37
 */
1441 ariadna 38
final class question_type_test extends \advanced_testcase {
1 efrain 39
    protected $qtype;
40
 
41
    protected function setUp(): void {
1441 ariadna 42
        parent::setUp();
1 efrain 43
        $this->qtype = new qtype_description();
44
    }
45
 
46
    protected function tearDown(): void {
47
        $this->qtype = null;
1441 ariadna 48
        parent::tearDown();
1 efrain 49
    }
50
 
11 efrain 51
    public function test_name(): void {
1 efrain 52
        $this->assertEquals($this->qtype->name(), 'description');
53
    }
54
 
11 efrain 55
    public function test_actual_number_of_questions(): void {
1 efrain 56
        $this->assertEquals(0, $this->qtype->actual_number_of_questions(null));
57
    }
58
 
11 efrain 59
    public function test_can_analyse_responses(): void {
1 efrain 60
        $this->assertFalse($this->qtype->can_analyse_responses());
61
    }
62
 
11 efrain 63
    public function test_get_random_guess_score(): void {
1 efrain 64
        $this->assertNull($this->qtype->get_random_guess_score(null));
65
    }
66
 
11 efrain 67
    public function test_get_possible_responses(): void {
1 efrain 68
        $this->assertEquals(array(), $this->qtype->get_possible_responses(null));
69
    }
70
 
71
 
11 efrain 72
    public function test_question_saving(): void {
1 efrain 73
        $this->resetAfterTest(true);
74
        $this->setAdminUser();
75
 
76
        $questiondata = \test_question_maker::get_question_data('description');
77
        $formdata = \test_question_maker::get_question_form_data('description');
78
 
79
        $generator = $this->getDataGenerator()->get_plugin_generator('core_question');
80
        $cat = $generator->create_question_category(array());
81
 
82
        $formdata->category = "{$cat->id},{$cat->contextid}";
83
        qtype_description_edit_form::mock_submit((array)$formdata);
84
 
85
        $form = \qtype_description_test_helper::get_question_editing_form($cat, $questiondata);
86
 
87
        $this->assertTrue($form->is_validated());
88
 
89
        $fromform = $form->get_data();
90
 
91
        $returnedfromsave = $this->qtype->save_question($questiondata, $fromform);
92
        $actualquestionsdata = question_load_questions(array($returnedfromsave->id));
93
        $actualquestiondata = end($actualquestionsdata);
94
 
95
        foreach ($questiondata as $property => $value) {
96
            if (!in_array($property, array('id', 'timemodified', 'timecreated', 'idnumber'))) {
97
                $this->assertEquals($value, $actualquestiondata->$property);
98
            }
99
        }
100
    }
101
}