mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-65601 analytics: Add missing set_modelid calls
This commit is contained in:
parent
b742fe1403
commit
589a3f57a0
@ -216,6 +216,7 @@ class analysis {
|
||||
|
||||
$result = new \stdClass();
|
||||
|
||||
$timesplitting->set_modelid($this->analyser->get_modelid());
|
||||
if (!$timesplitting->is_valid_analysable($analysable)) {
|
||||
$result->status = \core_analytics\model::ANALYSABLE_REJECTED_TIME_SPLITTING_METHOD;
|
||||
$result->message = get_string('invalidanalysablefortimesplitting', 'analytics',
|
||||
|
@ -100,6 +100,15 @@ abstract class base {
|
||||
$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
|
||||
*
|
||||
|
@ -1014,6 +1014,7 @@ class model {
|
||||
|
||||
// Append new elements (we can not get duplicates because sample-analysable relation is N-1).
|
||||
$timesplitting = $this->get_time_splitting();
|
||||
$timesplitting->set_modelid($this->get_id());
|
||||
$timesplitting->set_analysable($data->analysable);
|
||||
$range = $timesplitting->get_range_by_index($rangeindex);
|
||||
|
||||
@ -1076,6 +1077,7 @@ class model {
|
||||
|
||||
$analysable = $this->get_analyser()->get_sample_analysable($sampleid);
|
||||
$timesplitting = $this->get_time_splitting();
|
||||
$timesplitting->set_modelid($this->get_id());
|
||||
$timesplitting->set_analysable($analysable);
|
||||
$range = $timesplitting->get_range_by_index($rangeindex);
|
||||
if ($range) {
|
||||
|
@ -24,6 +24,8 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
require_once(__DIR__ . '/../../analytics/tests/fixtures/test_timesplitting_upcoming_seconds.php');
|
||||
|
||||
/**
|
||||
* Unit tests for the analysis class.
|
||||
*
|
||||
@ -40,20 +42,45 @@ class analytics_analysis_testcase extends advanced_testcase {
|
||||
public function test_fill_firstanalyses_cache() {
|
||||
$this->resetAfterTest();
|
||||
|
||||
$this->insert_used(1, 1, 'training', 123);
|
||||
$this->insert_used(1, 2, 'training', 124);
|
||||
$this->insert_used(1, 1, 'prediction', 125);
|
||||
$modelid = 1;
|
||||
|
||||
$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->assertEquals(123, $firstanalyses['1_1']);
|
||||
$this->assertEquals(124, $firstanalyses['1_2']);
|
||||
$this->assertEquals($afewsecsago, $firstanalyses[$modelid . '_' . $course1->id]);
|
||||
$this->assertEquals($afewsecsago + 1, $firstanalyses[$modelid . '_' . $course2->id]);
|
||||
|
||||
// The cached elements gets refreshed.
|
||||
$this->insert_used(1, 1, 'prediction', 122);
|
||||
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache(1, 1);
|
||||
$this->insert_used($modelid, $course1->id, 'prediction', $earliest);
|
||||
$firstanalyses = \core_analytics\analysis::fill_firstanalyses_cache($modelid, $course1->id);
|
||||
$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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user