mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
100bc51f1d
All externallib_test, generator_test and filter_test classes: - Namespaced with component[\level2-API] - Moved to level2-API subdirectory when required. - Fixed incorrect use statements with leading backslash. - Changed code to point to global scope when needed. - Fix some relative paths and comments here and there. - All them passing individually. - Complete runs passing too. Special mention to tests under testing/tests: 1) The core_testing component doesn't exist. 2) But testing/tests are allowed because there is a suite pointing to it (phpunit.xml). 3) So, the only possible namespace for them is "core". 4) And to avoid problems with other core testcases (under lib/tests) they have been renamed to have testing_xxxx as prefix. Finally, also modified calendar/tests/events/events_test.php because it uses some renamed (core_calendar_externallib_testcase => \core_calendar\externallib_test) classes.
238 lines
13 KiB
PHP
238 lines
13 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
namespace core_competency;
|
|
|
|
/**
|
|
* Tool LP data generator testcase.
|
|
*
|
|
* @package core_competency
|
|
* @category test
|
|
* @copyright 2015 Frédéric Massart - FMCorz.net
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class generator_test extends \advanced_testcase {
|
|
|
|
public function test_create_framework() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$this->assertEquals(0, competency_framework::count_records());
|
|
$framework = $lpg->create_framework();
|
|
$framework = $lpg->create_framework();
|
|
$this->assertEquals(2, competency_framework::count_records());
|
|
$this->assertInstanceOf('\core_competency\competency_framework', $framework);
|
|
}
|
|
|
|
public function test_create_competency() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$framework = $lpg->create_framework();
|
|
$this->assertEquals(0, competency::count_records());
|
|
$competency = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$competency = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$this->assertEquals(2, competency::count_records());
|
|
$this->assertInstanceOf('\core_competency\competency', $competency);
|
|
}
|
|
|
|
public function test_create_related_competency() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c3 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$this->assertEquals(0, related_competency::count_records());
|
|
$rc = $lpg->create_related_competency(array('competencyid' => $c1->get('id'), 'relatedcompetencyid' => $c2->get('id')));
|
|
$rc = $lpg->create_related_competency(array('competencyid' => $c2->get('id'), 'relatedcompetencyid' => $c3->get('id')));
|
|
$this->assertEquals(2, related_competency::count_records());
|
|
$this->assertInstanceOf('\core_competency\related_competency', $rc);
|
|
}
|
|
|
|
public function test_create_plan() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$this->assertEquals(0, plan::count_records());
|
|
$plan = $lpg->create_plan(array('userid' => $user->id));
|
|
$this->assertEquals(1, plan::count_records());
|
|
$this->assertInstanceOf('\core_competency\plan', $plan);
|
|
}
|
|
|
|
public function test_create_user_competency() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c3 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$this->assertEquals(0, user_competency::count_records());
|
|
$rc = $lpg->create_user_competency(array('userid' => $user->id, 'competencyid' => $c1->get('id')));
|
|
$rc = $lpg->create_user_competency(array('userid' => $user->id, 'competencyid' => $c2->get('id')));
|
|
$this->assertEquals(2, user_competency::count_records());
|
|
$this->assertInstanceOf('\core_competency\user_competency', $rc);
|
|
}
|
|
|
|
public function test_create_user_competency_plan() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$plan = $lpg->create_plan(array('userid' => $user->id));
|
|
$this->assertEquals(0, user_competency_plan::count_records());
|
|
$ucp = $lpg->create_user_competency_plan(array(
|
|
'userid' => $user->id,
|
|
'competencyid' => $c1->get('id'),
|
|
'planid' => $plan->get('id')
|
|
));
|
|
$ucp = $lpg->create_user_competency_plan(array(
|
|
'userid' => $user->id,
|
|
'competencyid' => $c2->get('id'),
|
|
'planid' => $plan->get('id')
|
|
));
|
|
$this->assertEquals(2, user_competency_plan::count_records());
|
|
$this->assertInstanceOf('\core_competency\user_competency_plan', $ucp);
|
|
}
|
|
|
|
public function test_create_template() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$this->assertEquals(0, template::count_records());
|
|
$template = $lpg->create_template();
|
|
$template = $lpg->create_template();
|
|
$this->assertEquals(2, template::count_records());
|
|
$this->assertInstanceOf('\core_competency\template', $template);
|
|
}
|
|
|
|
public function test_create_template_competency() {
|
|
$this->resetAfterTest(true);
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
|
|
$this->assertEquals(0, template_competency::count_records());
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$template = $lpg->create_template();
|
|
$relation = $lpg->create_template_competency(array('competencyid' => $c1->get('id'), 'templateid' => $template->get('id')));
|
|
$relation = $lpg->create_template_competency(array('competencyid' => $c2->get('id'), 'templateid' => $template->get('id')));
|
|
$this->assertEquals(2, template_competency::count_records());
|
|
$this->assertInstanceOf('\core_competency\template_competency', $relation);
|
|
}
|
|
|
|
public function test_create_plan_competency() {
|
|
$this->resetAfterTest(true);
|
|
$user = $this->getDataGenerator()->create_user();
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
|
|
$plan = $lpg->create_plan(array('userid' => $user->id));
|
|
|
|
$pc1 = $lpg->create_plan_competency(array('planid' => $plan->get('id'), 'competencyid' => $c1->get('id')));
|
|
$pc2 = $lpg->create_plan_competency(array('planid' => $plan->get('id'), 'competencyid' => $c2->get('id')));
|
|
|
|
$this->assertEquals(2, plan_competency::count_records());
|
|
$this->assertInstanceOf('\core_competency\plan_competency', $pc1);
|
|
$this->assertInstanceOf('\core_competency\plan_competency', $pc2);
|
|
$this->assertEquals($plan->get('id'), $pc1->get('planid'));
|
|
}
|
|
|
|
public function test_create_template_cohort() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$c1 = $this->getDataGenerator()->create_cohort();
|
|
$c2 = $this->getDataGenerator()->create_cohort();
|
|
$t1 = $lpg->create_template();
|
|
$this->assertEquals(0, template_cohort::count_records());
|
|
$tc = $lpg->create_template_cohort(array('templateid' => $t1->get('id'), 'cohortid' => $c1->id));
|
|
$this->assertEquals(1, template_cohort::count_records());
|
|
$tc = $lpg->create_template_cohort(array('templateid' => $t1->get('id'), 'cohortid' => $c2->id));
|
|
$this->assertEquals(2, template_cohort::count_records());
|
|
$this->assertInstanceOf('\core_competency\template_cohort', $tc);
|
|
}
|
|
|
|
public function test_create_evidence() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$user = $this->getDataGenerator()->create_user();
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$rc1 = $lpg->create_user_competency(array('userid' => $user->id, 'competencyid' => $c1->get('id')));
|
|
$rc2 = $lpg->create_user_competency(array('userid' => $user->id, 'competencyid' => $c2->get('id')));
|
|
$e = $lpg->create_evidence(array('usercompetencyid' => $rc1->get('id')));
|
|
$e = $lpg->create_evidence(array('usercompetencyid' => $rc2->get('id')));
|
|
$this->assertEquals(2, evidence::count_records());
|
|
$this->assertInstanceOf('\core_competency\evidence', $e);
|
|
}
|
|
|
|
public function test_create_course_competency() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$course1 = $this->getDataGenerator()->create_course();
|
|
$course2 = $this->getDataGenerator()->create_course();
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c3 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$this->assertEquals(0, course_competency::count_records());
|
|
$rc = $lpg->create_course_competency(array('competencyid' => $c1->get('id'), 'courseid' => $course1->id));
|
|
$rc = $lpg->create_course_competency(array('competencyid' => $c2->get('id'), 'courseid' => $course1->id));
|
|
$this->assertEquals(2, course_competency::count_records(array('courseid' => $course1->id)));
|
|
$this->assertEquals(0, course_competency::count_records(array('courseid' => $course2->id)));
|
|
$rc = $lpg->create_course_competency(array('competencyid' => $c3->get('id'), 'courseid' => $course2->id));
|
|
$this->assertEquals(1, course_competency::count_records(array('courseid' => $course2->id)));
|
|
$this->assertInstanceOf('\core_competency\course_competency', $rc);
|
|
}
|
|
|
|
public function test_create_course_module_competency() {
|
|
$this->resetAfterTest(true);
|
|
|
|
$lpg = $this->getDataGenerator()->get_plugin_generator('core_competency');
|
|
$course1 = $this->getDataGenerator()->create_course();
|
|
$cm1 = $this->getDataGenerator()->create_module('forum', array('course' => $course1->id));
|
|
$cm2 = $this->getDataGenerator()->create_module('forum', array('course' => $course1->id));
|
|
$framework = $lpg->create_framework();
|
|
$c1 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c2 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$c3 = $lpg->create_competency(array('competencyframeworkid' => $framework->get('id')));
|
|
$this->assertEquals(0, course_module_competency::count_records());
|
|
$rc = $lpg->create_course_module_competency(array('competencyid' => $c1->get('id'), 'cmid' => $cm1->cmid));
|
|
$rc = $lpg->create_course_module_competency(array('competencyid' => $c2->get('id'), 'cmid' => $cm1->cmid));
|
|
$this->assertEquals(2, course_module_competency::count_records(array('cmid' => $cm1->cmid)));
|
|
$this->assertEquals(0, course_module_competency::count_records(array('cmid' => $cm2->cmid)));
|
|
$rc = $lpg->create_course_module_competency(array('competencyid' => $c3->get('id'), 'cmid' => $cm2->cmid));
|
|
$this->assertEquals(1, course_module_competency::count_records(array('cmid' => $cm2->cmid)));
|
|
$this->assertInstanceOf('\core_competency\course_module_competency', $rc);
|
|
}
|
|
|
|
}
|
|
|