Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 310] [Versions 39 and 311] [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   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   * This file contains tests for the 'missing' behaviour.
  19   *
  20   * @package    qbehaviour
  21   * @subpackage missing
  22   * @copyright  2009 The Open University
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  
  27  defined('MOODLE_INTERNAL') || die();
  28  
  29  global $CFG;
  30  require_once (__DIR__ . '/../../../engine/lib.php');
  31  require_once (__DIR__ . '/../../../engine/tests/helpers.php');
  32  require_once (__DIR__ . '/../behaviour.php');
  33  
  34  
  35  /**
  36   * Unit tests for the 'missing' behaviour.
  37   *
  38   * @copyright  2009 The Open University
  39   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  40   */
  41  class qbehaviour_missing_test extends advanced_testcase {
  42  
  43      /**
  44       * @expectedException moodle_exception
  45       */
  46      public function test_missing_cannot_start() {
  47          $qa = new question_attempt(test_question_maker::make_question('truefalse', 'true'), 0);
  48          $behaviour = new qbehaviour_missing($qa, 'deferredfeedback');
  49          $behaviour->init_first_step(new question_attempt_step(array()), 1);
  50      }
  51  
  52      /**
  53       * @expectedException moodle_exception
  54       */
  55      public function test_missing_cannot_process() {
  56          $qa = new question_attempt(test_question_maker::make_question('truefalse', 'true'), 0);
  57          $behaviour = new qbehaviour_missing($qa, 'deferredfeedback');
  58          $behaviour->process_action(new question_attempt_pending_step(array()));
  59      }
  60  
  61      /**
  62       * @expectedException moodle_exception
  63       */
  64      public function test_missing_cannot_get_min_fraction() {
  65          $qa = new question_attempt(test_question_maker::make_question('truefalse', 'true'), 0);
  66          $behaviour = new qbehaviour_missing($qa, 'deferredfeedback');
  67          $behaviour->get_min_fraction();
  68      }
  69  
  70      /**
  71       * @expectedException moodle_exception
  72       */
  73      public function test_missing_cannot_get_max_fraction() {
  74          $qa = new question_attempt(test_question_maker::make_question('truefalse', 'true'), 0);
  75          $behaviour = new qbehaviour_missing($qa, 'deferredfeedback');
  76          $behaviour->get_max_fraction();
  77      }
  78  
  79      public function test_render_missing() {
  80          $records = new question_test_recordset(array(
  81              array('questionattemptid', 'contextid', 'questionusageid', 'slot',
  82                                     'behaviour', 'questionid', 'variant', 'maxmark', 'minfraction', 'maxfraction', 'flagged',
  83                                              'questionsummary', 'rightanswer', 'responsesummary',
  84                      'timemodified', 'attemptstepid', 'sequencenumber', 'state', 'fraction',
  85                                                         'timecreated', 'userid', 'name', 'value'),
  86              array(1, 123, 1, 1, 'strangeunknown', -1, 1, 2.0000000, 0.0000000, 1.0000000, 0, '', '', '',
  87                      1256233790, 1, 0, 'todo',     null, 1256233700, 1,   '_order', '1,2,3'),
  88              array(1, 123, 1, 1, 'strangeunknown', -1, 1, 2.0000000, 0.0000000, 1.0000000, 0, '', '', '',
  89                      1256233790, 2, 1, 'complete', 0.50, 1256233705, 1,  '-submit',  '1'),
  90              array(1, 123, 1, 1, 'strangeunknown', -1, 1, 2.0000000, 0.0000000, 1.0000000, 0, '', '', '',
  91                      1256233790, 2, 1, 'complete', 0.50, 1256233705, 1,  'choice0',  '1'),
  92          ));
  93  
  94          $question = test_question_maker::make_question('truefalse', 'true');
  95          $question->id = -1;
  96  
  97          question_bank::start_unit_test();
  98          question_bank::load_test_question_data($question);
  99          $qa = question_attempt::load_from_records($records, 1,
 100                  new question_usage_null_observer(), 'deferredfeedback');
 101          question_bank::end_unit_test();
 102  
 103          $this->assertEquals(2, $qa->get_num_steps());
 104  
 105          $step = $qa->get_step(0);
 106          $this->assertEquals(question_state::$todo, $step->get_state());
 107          $this->assertNull($step->get_fraction());
 108          $this->assertEquals(1256233700, $step->get_timecreated());
 109          $this->assertEquals(1, $step->get_user_id());
 110          $this->assertEquals(array('_order' => '1,2,3'), $step->get_all_data());
 111  
 112          $step = $qa->get_step(1);
 113          $this->assertEquals(question_state::$complete, $step->get_state());
 114          $this->assertEquals(0.5, $step->get_fraction());
 115          $this->assertEquals(1256233705, $step->get_timecreated());
 116          $this->assertEquals(1, $step->get_user_id());
 117          $this->assertEquals(array('-submit' => '1', 'choice0' => '1'), $step->get_all_data());
 118  
 119          $output = $qa->render(new question_display_options(), '1');
 120          $this->assertRegExp('/' . preg_quote($qa->get_question(false)->questiontext, '/') . '/', $output);
 121          $this->assertRegExp('/' . preg_quote(
 122                  get_string('questionusedunknownmodel', 'qbehaviour_missing'), '/') . '/', $output);
 123          $this->assertTag(array('tag'=>'div', 'attributes'=>array('class'=>'warning')), $output);
 124      }
 125  }