芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/cepali/question/type/multichoice/tests/question_single_test.php
. /** * Unit tests for the multiple choice, single response question definition classes. * * @package qtype_multichoice * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->dirroot . '/question/engine/tests/helpers.php'); /** * Unit tests for the multiple choice, single response question definition class. * * @copyright 2009 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class qtype_multichoice_single_question_test extends advanced_testcase { public function test_get_expected_data() { $question = test_question_maker::make_a_multichoice_single_question(); $this->assertEquals(array('answer' => PARAM_INT), $question->get_expected_data()); } public function test_is_complete_response() { $question = test_question_maker::make_a_multichoice_single_question(); $this->assertFalse($question->is_complete_response(array())); $this->assertTrue($question->is_complete_response(array('answer' => '0'))); $this->assertTrue($question->is_complete_response(array('answer' => '2'))); $this->assertFalse($question->is_complete_response(array('answer' => '-1'))); $this->assertFalse($question->is_complete_response(array('answer' => -1))); } public function test_is_gradable_response() { $question = test_question_maker::make_a_multichoice_single_question(); $this->assertFalse($question->is_gradable_response(array())); $this->assertTrue($question->is_gradable_response(array('answer' => '0'))); $this->assertTrue($question->is_gradable_response(array('answer' => '2'))); $this->assertFalse($question->is_gradable_response(array('answer' => '-1'))); } public function test_is_same_response() { $question = test_question_maker::make_a_multichoice_single_question(); $question->start_attempt(new question_attempt_step(), 1); $this->assertTrue($question->is_same_response( array(), array())); $this->assertFalse($question->is_same_response( array(), array('answer' => '0'))); $this->assertTrue($question->is_same_response( array('answer' => '0'), array('answer' => '0'))); $this->assertFalse($question->is_same_response( array('answer' => '0'), array('answer' => '1'))); $this->assertTrue($question->is_same_response( array('answer' => '2'), array('answer' => '2'))); $this->assertFalse($question->is_same_response( array('answer' => '0'), array('answer' => '-1'))); $this->assertFalse($question->is_same_response( array('answer' => '-1'), array('answer' => '0'))); $this->assertTrue($question->is_same_response( array('answer' => '-1'), array('answer' => '-1'))); $this->assertTrue($question->is_same_response( array(), array('answer' => '-1'))); } public function test_grading() { $question = test_question_maker::make_a_multichoice_single_question(); $question->start_attempt(new question_attempt_step(), 1); $this->assertEquals(array(1, question_state::$gradedright), $question->grade_response($question->prepare_simulated_post_data(array('answer' => 'A')))); $this->assertEquals(array(-0.3333333, question_state::$gradedwrong), $question->grade_response($question->prepare_simulated_post_data(array('answer' => 'B')))); $this->assertEquals(array(-0.3333333, question_state::$gradedwrong), $question->grade_response($question->prepare_simulated_post_data(array('answer' => 'C')))); } public function test_grading_rounding_three_right() { question_bank::load_question_definition_classes('multichoice'); $mc = new qtype_multichoice_multi_question(); test_question_maker::initialise_a_question($mc); $mc->name = 'Odd numbers'; $mc->questiontext = 'Which are the odd numbers?'; $mc->generalfeedback = '1, 3 and 5 are the odd numbers.'; $mc->qtype = question_bank::get_qtype('multichoice'); $mc->answernumbering = 'abc'; test_question_maker::set_standard_combined_feedback_fields($mc); $mc->answers = array( 11 => new question_answer(11, '1', 0.3333333, '', FORMAT_HTML), 12 => new question_answer(12, '2', -1, '', FORMAT_HTML), 13 => new question_answer(13, '3', 0.3333333, '', FORMAT_HTML), 14 => new question_answer(14, '4', -1, '', FORMAT_HTML), 15 => new question_answer(15, '5', 0.3333333, '', FORMAT_HTML), 16 => new question_answer(16, '6', -1, '', FORMAT_HTML), ); $mc->start_attempt(new question_attempt_step(), 1); list($grade, $state) = $mc->grade_response($mc->prepare_simulated_post_data(array('1' => '1', '3' => '1', '5' => '1'))); $this->assertEquals(1, $grade, '', 0.000001); $this->assertEquals(question_state::$gradedright, $state); } public function test_get_correct_response() { $question = test_question_maker::make_a_multichoice_single_question(); $question->start_attempt(new question_attempt_step(), 1); $this->assertEquals($question->prepare_simulated_post_data(array('answer' => 'A')), $question->get_correct_response()); } public function test_summarise_response() { $mc = test_question_maker::make_a_multichoice_single_question(); $mc->start_attempt(new question_attempt_step(), 1); $summary = $mc->summarise_response($mc->prepare_simulated_post_data(array('answer' => 'A')), test_question_maker::get_a_qa($mc)); $this->assertEquals('A', $summary); $this->assertNull($mc->summarise_response(array(), test_question_maker::get_a_qa($mc))); $this->assertNull($mc->summarise_response(array('answer' => '-1'), test_question_maker::get_a_qa($mc))); } public function test_classify_response() { $mc = test_question_maker::make_a_multichoice_single_question(); $mc->start_attempt(new question_attempt_step(), 1); $this->assertEquals(array($mc->id => new question_classified_response(14, 'B', -0.3333333)), $mc->classify_response($mc->prepare_simulated_post_data(array('answer' => 'B')))); $this->assertEquals(array( $mc->id => question_classified_response::no_response(), ), $mc->classify_response(array())); $this->assertEquals(array( $mc->id => question_classified_response::no_response(), ), $mc->classify_response(array('answer' => '-1'))); } public function test_make_html_inline() { $mc = test_question_maker::make_a_multichoice_single_question(); $this->assertEquals('Frog', $mc->make_html_inline('
Frog
')); $this->assertEquals('Frog
Toad', $mc->make_html_inline("
Frog
\n
Toad
")); $this->assertEquals('
', $mc->make_html_inline( '
')); $this->assertEquals("Frog
XXX
", $mc->make_html_inline("
Frog
\n\r
XXX
")); $this->assertEquals('Frog', $mc->make_html_inline('
Frog
')); $this->assertEquals('Frog
†', $mc->make_html_inline('
Frog
†
')); } public function test_simulated_post_data() { $mc = test_question_maker::make_a_multichoice_single_question(); $mc->shuffleanswers = false; $mc->answers[13]->answer = '
A
'; $mc->answers[14]->answer = '
B
'; $mc->answers[15]->answer = '
C
'; $mc->start_attempt(new question_attempt_step(), 1); $originalresponse = array('answer' => 1); $simulated = $mc->get_student_response_values_for_simulation($originalresponse); $this->assertEquals(array('answer' => 'B'), $simulated); $reconstucted = $mc->prepare_simulated_post_data($simulated); $this->assertEquals($originalresponse, $reconstucted); } }