mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Merge branch 'MDL-65601_master' of git://github.com/dmonllao/moodle
This commit is contained in:
commit
d15589bc08
4 changed files with 48 additions and 9 deletions
|
@ -216,6 +216,7 @@ class analysis {
|
||||||
|
|
||||||
$result = new \stdClass();
|
$result = new \stdClass();
|
||||||
|
|
||||||
|
$timesplitting->set_modelid($this->analyser->get_modelid());
|
||||||
if (!$timesplitting->is_valid_analysable($analysable)) {
|
if (!$timesplitting->is_valid_analysable($analysable)) {
|
||||||
$result->status = \core_analytics\model::ANALYSABLE_REJECTED_TIME_SPLITTING_METHOD;
|
$result->status = \core_analytics\model::ANALYSABLE_REJECTED_TIME_SPLITTING_METHOD;
|
||||||
$result->message = get_string('invalidanalysablefortimesplitting', 'analytics',
|
$result->message = get_string('invalidanalysablefortimesplitting', 'analytics',
|
||||||
|
|
|
@ -100,6 +100,15 @@ abstract class base {
|
||||||
$this->validate_ranges();
|
$this->validate_ranges();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Assigns the model id to this time-splitting method it case it needs it.
|
||||||
|
*
|
||||||
|
* @param int $modelid
|
||||||
|
*/
|
||||||
|
public function set_modelid(int $modelid) {
|
||||||
|
$this->modelid = $modelid;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get_analysable
|
* get_analysable
|
||||||
*
|
*
|
||||||
|
|
|
@ -1014,6 +1014,7 @@ class model {
|
||||||
|
|
||||||
// Append new elements (we can not get duplicates because sample-analysable relation is N-1).
|
// Append new elements (we can not get duplicates because sample-analysable relation is N-1).
|
||||||
$timesplitting = $this->get_time_splitting();
|
$timesplitting = $this->get_time_splitting();
|
||||||
|
$timesplitting->set_modelid($this->get_id());
|
||||||
$timesplitting->set_analysable($data->analysable);
|
$timesplitting->set_analysable($data->analysable);
|
||||||
$range = $timesplitting->get_range_by_index($rangeindex);
|
$range = $timesplitting->get_range_by_index($rangeindex);
|
||||||
|
|
||||||
|
@ -1076,6 +1077,7 @@ class model {
|
||||||
|
|
||||||
$analysable = $this->get_analyser()->get_sample_analysable($sampleid);
|
$analysable = $this->get_analyser()->get_sample_analysable($sampleid);
|
||||||
$timesplitting = $this->get_time_splitting();
|
$timesplitting = $this->get_time_splitting();
|
||||||
|
$timesplitting->set_modelid($this->get_id());
|
||||||
$timesplitting->set_analysable($analysable);
|
$timesplitting->set_analysable($analysable);
|
||||||
$range = $timesplitting->get_range_by_index($rangeindex);
|
$range = $timesplitting->get_range_by_index($rangeindex);
|
||||||
if ($range) {
|
if ($range) {
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
require_once(__DIR__ . '/fixtures/test_timesplitting_upcoming_seconds.php');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for the analysis class.
|
* Unit tests for the analysis class.
|
||||||
*
|
*
|
||||||
|
@ -40,20 +42,45 @@ class analytics_analysis_testcase extends advanced_testcase {
|
||||||
public function test_fill_firstanalyses_cache() {
|
public function test_fill_firstanalyses_cache() {
|
||||||
$this->resetAfterTest();
|
$this->resetAfterTest();
|
||||||
|
|
||||||
$this->insert_used(1, 1, 'training', 123);
|
$modelid = 1;
|
||||||
$this->insert_used(1, 2, 'training', 124);
|
|
||||||
$this->insert_used(1, 1, 'prediction', 125);
|
|
||||||
|
|
||||||
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache(1);
|
$params = ['startdate' => (new DateTimeImmutable('-5 seconds'))->getTimestamp()];
|
||||||
|
$course1 = $this->getDataGenerator()->create_course($params);
|
||||||
|
$course2 = $this->getDataGenerator()->create_course($params);
|
||||||
|
$analysable1 = new \core_analytics\course($course1);
|
||||||
|
|
||||||
|
$afewsecsago = time() - 5;
|
||||||
|
$earliest = $afewsecsago - 1;
|
||||||
|
|
||||||
|
$this->insert_used($modelid, $course1->id, 'training', $afewsecsago);
|
||||||
|
|
||||||
|
// Course2 processed after course1.
|
||||||
|
$this->insert_used($modelid, $course2->id, 'training', $afewsecsago + 1);
|
||||||
|
|
||||||
|
// After the first process involving course1.
|
||||||
|
$this->insert_used($modelid, $course1->id, 'prediction', $afewsecsago + 5);
|
||||||
|
|
||||||
|
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache($modelid);
|
||||||
$this->assertCount(2, $firstanalyses);
|
$this->assertCount(2, $firstanalyses);
|
||||||
$this->assertEquals(123, $firstanalyses['1_1']);
|
$this->assertEquals($afewsecsago, $firstanalyses[$modelid . '_' . $course1->id]);
|
||||||
$this->assertEquals(124, $firstanalyses['1_2']);
|
$this->assertEquals($afewsecsago + 1, $firstanalyses[$modelid . '_' . $course2->id]);
|
||||||
|
|
||||||
// The cached elements gets refreshed.
|
// The cached elements gets refreshed.
|
||||||
$this->insert_used(1, 1, 'prediction', 122);
|
$this->insert_used($modelid, $course1->id, 'prediction', $earliest);
|
||||||
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache(1, 1);
|
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache($modelid, $course1->id);
|
||||||
$this->assertCount(1, $firstanalyses);
|
$this->assertCount(1, $firstanalyses);
|
||||||
$this->assertEquals(122, $firstanalyses['1_1']);
|
$this->assertEquals($earliest, $firstanalyses[$modelid . '_' . $course1->id]);
|
||||||
|
|
||||||
|
// Upcoming periodic time-splitting methods can read and process the cached data.
|
||||||
|
$seconds = new test_timesplitting_upcoming_seconds();
|
||||||
|
$seconds->set_modelid($modelid);
|
||||||
|
$seconds->set_analysable($analysable1);
|
||||||
|
|
||||||
|
// The generated ranges should start from the cached firstanalysis value, which is $earliest.
|
||||||
|
$ranges = $seconds->get_all_ranges();
|
||||||
|
$this->assertCount(7, $ranges);
|
||||||
|
$firstrange = reset($ranges);
|
||||||
|
$this->assertEquals($earliest, $firstrange['time']);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function insert_used($modelid, $analysableid, $action, $timestamp) {
|
private function insert_used($modelid, $analysableid, $action, $timestamp) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue