. /** * Tests for mod/assign/submission/onlinetext/locallib.php * * @package assignsubmission_onlinetext * @copyright 2016 Cameron Ball * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG; require_once($CFG->dirroot . '/mod/assign/tests/base_test.php'); /** * Unit tests for mod/assign/submission/onlinetext/locallib.php * * @copyright 2016 Cameron Ball * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class assignsubmission_onlinetext_locallib_testcase extends advanced_testcase { /** @var stdClass $user A user to submit an assignment. */ protected $user; /** @var stdClass $course New course created to hold the assignment activity. */ protected $course; /** @var stdClass $cm A context module object. */ protected $cm; /** @var stdClass $context Context of the assignment activity. */ protected $context; /** @var stdClass $assign The assignment object. */ protected $assign; /** * Setup all the various parts of an assignment activity including creating an onlinetext submission. */ protected function setUp() { $this->user = $this->getDataGenerator()->create_user(); $this->course = $this->getDataGenerator()->create_course(); $generator = $this->getDataGenerator()->get_plugin_generator('mod_assign'); $params = ['course' => $this->course->id, 'assignsubmission_onlinetext_enabled' => 1]; $instance = $generator->create_instance($params); $this->cm = get_coursemodule_from_instance('assign', $instance->id); $this->context = context_module::instance($this->cm->id); $this->assign = new testable_assign($this->context, $this->cm, $this->course); $this->setUser($this->user->id); } /** * Test submission_is_empty * * @dataProvider submission_is_empty_testcases * @param string $submissiontext The online text submission text * @param bool $expected The expected return value */ public function test_submission_is_empty($submissiontext, $expected) { $this->resetAfterTest(); $plugin = $this->assign->get_submission_plugin_by_type('onlinetext'); $data = new stdClass(); $data->onlinetext_editor = ['text' => $submissiontext]; $result = $plugin->submission_is_empty($data); $this->assertTrue($result === $expected); } /** * Test new_submission_empty * * @dataProvider submission_is_empty_testcases * @param string $submissiontext The file submission data * @param bool $expected The expected return value */ public function test_new_submission_empty($submissiontext, $expected) { $this->resetAfterTest(); $data = new stdClass(); $data->onlinetext_editor = ['text' => $submissiontext]; $result = $this->assign->new_submission_empty($data); $this->assertTrue($result === $expected); } /** * Dataprovider for the test_submission_is_empty testcase * * @return array of testcases */ public function submission_is_empty_testcases() { return [ 'Empty submission string' => ['', true], 'Empty submission null' => [null, true], 'Value 0' => [0, false], 'String 0' => ['0', false], 'Text' => ['Ai! laurië lantar lassi súrinen, yéni únótimë ve rámar aldaron!', false] ]; } }