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 * mod_workshop generator tests
19 *
20 * @package    mod_workshop
21 * @category   test
22 * @copyright  2013 Marina Glancy
23 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 */
25
26/**
27 * Genarator tests class for mod_workshop.
28 *
29 * @package    mod_workshop
30 * @category   test
31 * @copyright  2013 Marina Glancy
32 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 */
34class mod_workshop_generator_testcase extends advanced_testcase {
35
36    public function test_create_instance() {
37        global $DB;
38        $this->resetAfterTest();
39        $this->setAdminUser();
40
41        $course = $this->getDataGenerator()->create_course();
42
43        $this->assertFalse($DB->record_exists('workshop', array('course' => $course->id)));
44        $workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course));
45        $records = $DB->get_records('workshop', array('course' => $course->id), 'id');
46        $this->assertEquals(1, count($records));
47        $this->assertTrue(array_key_exists($workshop->id, $records));
48
49        $params = array('course' => $course->id, 'name' => 'Another workshop');
50        $workshop = $this->getDataGenerator()->create_module('workshop', $params);
51        $records = $DB->get_records('workshop', array('course' => $course->id), 'id');
52        $this->assertEquals(2, count($records));
53        $this->assertEquals('Another workshop', $records[$workshop->id]->name);
54    }
55
56    public function test_create_submission() {
57        global $DB;
58        $this->resetAfterTest();
59        $this->setAdminUser();
60
61        $course = $this->getDataGenerator()->create_course();
62        $workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course));
63        $user = $this->getDataGenerator()->create_user();
64        $this->getDataGenerator()->enrol_user($user->id, $course->id);
65        $workshopgenerator = $this->getDataGenerator()->get_plugin_generator('mod_workshop');
66
67        $id = $workshopgenerator->create_submission($workshop->id, $user->id, array(
68            'title' => 'My custom title',
69        ));
70
71        $submissions = $DB->get_records('workshop_submissions', array('workshopid' => $workshop->id));
72        $this->assertEquals(1, count($submissions));
73        $this->assertTrue(isset($submissions[$id]));
74        $this->assertEquals($submissions[$id]->authorid, $user->id);
75        $this->assertSame('My custom title', $submissions[$id]->title);
76    }
77
78    public function test_create_assessment() {
79        global $DB;
80        $this->resetAfterTest();
81        $this->setAdminUser();
82
83        $course = $this->getDataGenerator()->create_course();
84        $workshop = $this->getDataGenerator()->create_module('workshop', array('course' => $course));
85        $user1 = $this->getDataGenerator()->create_user();
86        $user2 = $this->getDataGenerator()->create_user();
87        $this->getDataGenerator()->enrol_user($user1->id, $course->id);
88        $this->getDataGenerator()->enrol_user($user2->id, $course->id);
89        $workshopgenerator = $this->getDataGenerator()->get_plugin_generator('mod_workshop');
90
91        $submissionid1 = $workshopgenerator->create_submission($workshop->id, $user1->id);
92        $submissionid2 = $workshopgenerator->create_submission($workshop->id, $user2->id);
93
94        $assessmentid1 = $workshopgenerator->create_assessment($submissionid1, $user2->id, array(
95            'weight' => 3,
96            'grade' => 95.00000,
97        ));
98        $assessmentid2 = $workshopgenerator->create_assessment($submissionid2, $user1->id);
99
100        $assessments = $DB->get_records('workshop_assessments');
101        $this->assertTrue(isset($assessments[$assessmentid1]));
102        $this->assertTrue(isset($assessments[$assessmentid2]));
103        $this->assertEquals(3, $assessments[$assessmentid1]->weight);
104        $this->assertEquals(95.00000, $assessments[$assessmentid1]->grade);
105        $this->assertEquals(1, $assessments[$assessmentid2]->weight);
106        $this->assertNull($assessments[$assessmentid2]->grade);
107    }
108}
109