From 99c930986152bf66fa0cf01d8493925398293588 Mon Sep 17 00:00:00 2001 From: Ryan Smith <3045513+ryansmith94@users.noreply.github.com> Date: Mon, 30 Jul 2018 17:47:41 +0100 Subject: [PATCH] feat: Adds statement for shortanswer quiz questions. (#199) --- .../mod_quiz/question_answered/handler.php | 2 + .../question_answered/shortanswer.php | 74 +++++++ .../attempt_submitted/shortanswer/data.json | 65 ++++++ .../attempt_submitted/shortanswer/event.json | 10 + .../shortanswer/statements.json | 187 ++++++++++++++++++ .../attempt_submitted/shortanswer/test.php | 24 +++ 6 files changed, 362 insertions(+) create mode 100644 src/transformer/events/mod_quiz/question_answered/shortanswer.php create mode 100644 tests/mod_quiz/attempt_submitted/shortanswer/data.json create mode 100644 tests/mod_quiz/attempt_submitted/shortanswer/event.json create mode 100644 tests/mod_quiz/attempt_submitted/shortanswer/statements.json create mode 100644 tests/mod_quiz/attempt_submitted/shortanswer/test.php diff --git a/src/transformer/events/mod_quiz/question_answered/handler.php b/src/transformer/events/mod_quiz/question_answered/handler.php index 63a1d3f3c..61790cf39 100644 --- a/src/transformer/events/mod_quiz/question_answered/handler.php +++ b/src/transformer/events/mod_quiz/question_answered/handler.php @@ -29,6 +29,8 @@ function handler(array $config, \stdClass $event, \stdClass $questionattempt) { return essay($config, $event, $questionattempt, $question); case 'truefalse': return truefalse($config, $event, $questionattempt, $question); + case 'shortanswer': + return shortanswer($config, $event, $questionattempt, $question); case 'multichoice': return multichoice($config, $event, $questionattempt, $question); case 'numerical': diff --git a/src/transformer/events/mod_quiz/question_answered/shortanswer.php b/src/transformer/events/mod_quiz/question_answered/shortanswer.php new file mode 100644 index 000000000..77e77a107 --- /dev/null +++ b/src/transformer/events/mod_quiz/question_answered/shortanswer.php @@ -0,0 +1,74 @@ +. + +namespace src\transformer\events\mod_quiz\question_answered; + +defined('MOODLE_INTERNAL') || die(); + +use src\transformer\utils as utils; + +function shortanswer(array $config, \stdClass $event, \stdClass $questionattempt, \stdClass $question) { + $repo = $config['repo']; + $user = $repo->read_record_by_id('user', $event->relateduserid); + $course = $repo->read_record_by_id('course', $event->courseid); + $attempt = $repo->read_record_by_id('quiz_attempts', $questionattempt->questionusageid); + $quiz = $repo->read_record_by_id('quiz', $attempt->quiz); + $coursemodule = $repo->read_record_by_id('course_modules', $event->contextinstanceid); + $lang = utils\get_course_lang($course); + + return [[ + 'actor' => utils\get_user($config, $user), + 'verb' => [ + 'id' => 'http://adlnet.gov/expapi/verbs/answered', + 'display' => [ + $lang => 'answered' + ], + ], + 'object' => [ + 'id' => $config['app_url'].'/question/question.php?cmid='.$coursemodule->id.'&id='.$question->id, + 'definition' => [ + 'type' => 'http://adlnet.gov/expapi/activities/question', + 'name' => [ + $lang => $questionattempt->questionsummary, + ], + 'interactionType' => 'fill-in', + ] + ], + 'timestamp' => utils\get_event_timestamp($event), + 'result' => [ + 'response' => $questionattempt->responsesummary, + 'completion' => $questionattempt->responsesummary !== '', + ], + 'context' => [ + 'platform' => $config['source_name'], + 'language' => $lang, + 'extensions' => [ + utils\INFO_EXTENSION => utils\get_info($config, $event), + ], + 'contextActivities' => [ + 'grouping' => [ + utils\get_activity\site($config), + utils\get_activity\course($config, $course), + utils\get_activity\module($config, 'quiz', $quiz, $lang), + utils\get_activity\module($config, 'attempt', $attempt, $lang), + ], + 'category' => [ + utils\get_activity\source($config), + ] + ], + ] + ]]; +} \ No newline at end of file diff --git a/tests/mod_quiz/attempt_submitted/shortanswer/data.json b/tests/mod_quiz/attempt_submitted/shortanswer/data.json new file mode 100644 index 000000000..5cdcd1d58 --- /dev/null +++ b/tests/mod_quiz/attempt_submitted/shortanswer/data.json @@ -0,0 +1,65 @@ +{ + "user": [ + { + "id": 1, + "firstname": "test_fullname", + "email": "test@test.com" + } + ], + "course": [ + { + "id": 1, + "fullname": "test_name", + "lang": "en" + } + ], + "course_modules": [ + { + "id": 1, + "course": 1, + "module": 1, + "instance": 1 + } + ], + "quiz_attempts": [ + { + "id": 1, + "quiz": 1, + "sumgrades": 50, + "state": "finished", + "timefinish": 1, + "timestart": 0 + } + ], + "quiz": [ + { + "id": 1, + "name": "test_quiz_name" + } + ], + "grade_items": [ + { + "id": 1, + "iteminstance": 1, + "itemmodule": "quiz", + "grademin": 0, + "grademax": 100, + "gradepass": 50 + } + ], + "question_attempts": [ + { + "id": 1, + "questionusageid": 1, + "questionid": 1, + "questionsummary": "test_question", + "responsesummary": "test_answer" + } + ], + "question": [ + { + "id": 1, + "qtype": "shortanswer" + } + ] +} \ No newline at end of file diff --git a/tests/mod_quiz/attempt_submitted/shortanswer/event.json b/tests/mod_quiz/attempt_submitted/shortanswer/event.json new file mode 100644 index 000000000..0f8370b23 --- /dev/null +++ b/tests/mod_quiz/attempt_submitted/shortanswer/event.json @@ -0,0 +1,10 @@ +{ + "id": 1, + "relateduserid": 1, + "courseid": 1, + "timecreated": 1433946701, + "objecttable": "attempt", + "objectid": 1, + "contextinstanceid": 1, + "eventname": "\\mod_quiz\\event\\attempt_submitted" +} \ No newline at end of file diff --git a/tests/mod_quiz/attempt_submitted/shortanswer/statements.json b/tests/mod_quiz/attempt_submitted/shortanswer/statements.json new file mode 100644 index 000000000..4bc56ffb3 --- /dev/null +++ b/tests/mod_quiz/attempt_submitted/shortanswer/statements.json @@ -0,0 +1,187 @@ +[ + { + "actor": { + "name": "test_fullname", + "account": { + "homePage": "http:\/\/www.example.org", + "name": "1" + } + }, + "verb": { + "id": "http:\/\/adlnet.gov\/expapi\/verbs\/completed", + "display": { + "en": "completed" + } + }, + "object": { + "id": "http:\/\/www.example.org\/mod\/quiz\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/module", + "name": { + "en": "test_quiz_name" + } + } + }, + "timestamp": "2015-06-10T15:31:41+01:00", + "result": { + "score": { + "raw": 50, + "min": 0, + "max": 100, + "scaled": 0.5 + }, + "completion": true, + "success": true, + "duration": "PT1S" + }, + "context": { + "platform": "Moodle", + "language": "en", + "extensions": { + "http:\/\/lrs.learninglocker.net\/define\/extensions\/info": { + "http:\/\/moodle.org": "1.0.0", + "https:\/\/github.com\/xAPI-vle\/moodle-logstore_xapi": "0.0.0-development", + "event_name": "\\mod_quiz\\event\\attempt_submitted", + "event_function": "\\src\\transformer\\events\\mod_quiz\\attempt_submitted\\handler" + } + }, + "contextActivities": { + "other": [ + { + "id": "http:\/\/www.example.org\/mod\/attempt\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/module", + "name": { + "en": "attempt" + } + } + } + ], + "grouping": [ + { + "id": "http:\/\/www.example.org", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms", + "name": { + "en": "test_name" + } + } + }, + { + "id": "http:\/\/www.example.org\/course\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/course", + "name": { + "en": "test_name" + } + } + } + ], + "category": [ + { + "id": "http:\/\/moodle.org", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/source", + "name": { + "en": "Moodle" + } + } + } + ] + } + } + }, + { + "actor": { + "name": "test_fullname", + "account": { + "homePage": "http:\/\/www.example.org", + "name": "1" + } + }, + "verb": { + "id": "http:\/\/adlnet.gov\/expapi\/verbs\/answered", + "display": { + "en": "answered" + } + }, + "object": { + "id": "http:\/\/www.example.org\/question\/question.php?cmid=1&id=1", + "definition": { + "type": "http:\/\/adlnet.gov\/expapi\/activities\/question", + "name": { + "en": "test_question" + }, + "interactionType": "fill-in" + } + }, + "timestamp": "2015-06-10T15:31:41+01:00", + "result": { + "response": "test_answer", + "completion": true + }, + "context": { + "platform": "Moodle", + "language": "en", + "extensions": { + "http:\/\/lrs.learninglocker.net\/define\/extensions\/info": { + "http:\/\/moodle.org": "1.0.0", + "https:\/\/github.com\/xAPI-vle\/moodle-logstore_xapi": "0.0.0-development", + "event_name": "\\mod_quiz\\event\\attempt_submitted", + "event_function": "\\src\\transformer\\events\\mod_quiz\\attempt_submitted\\handler" + } + }, + "contextActivities": { + "grouping": [ + { + "id": "http:\/\/www.example.org", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms", + "name": { + "en": "test_name" + } + } + }, + { + "id": "http:\/\/www.example.org\/course\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/course", + "name": { + "en": "test_name" + } + } + }, + { + "id": "http:\/\/www.example.org\/mod\/quiz\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/module", + "name": { + "en": "test_quiz_name" + } + } + }, + { + "id": "http:\/\/www.example.org\/mod\/attempt\/view.php?id=1", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/lms\/module", + "name": { + "en": "attempt" + } + } + } + ], + "category": [ + { + "id": "http:\/\/moodle.org", + "definition": { + "type": "http:\/\/id.tincanapi.com\/activitytype\/source", + "name": { + "en": "Moodle" + } + } + } + ] + } + } + } +] \ No newline at end of file diff --git a/tests/mod_quiz/attempt_submitted/shortanswer/test.php b/tests/mod_quiz/attempt_submitted/shortanswer/test.php new file mode 100644 index 000000000..3ba4bdd7e --- /dev/null +++ b/tests/mod_quiz/attempt_submitted/shortanswer/test.php @@ -0,0 +1,24 @@ +. + +namespace tests\mod_quiz\attempt_submitted\shortanswer; +defined('MOODLE_INTERNAL') || die(); + +class test extends \tests\xapi_test_case { + protected function get_test_dir() { + return __DIR__; + } +} \ No newline at end of file