Skip to content
Snippets Groups Projects
Commit b53c2d88 authored by Mario Raciti's avatar Mario Raciti
Browse files

TMSS-610: Add observed_start_time and observed_duration to SUB model; add test...

TMSS-610: Add observed_start_time and observed_duration to SUB model; add test assert for observed_start_time
parent a3c35eb5
No related branches found
No related tags found
3 merge requests!634WIP: COBALT commissioning delta,!492Resolve TMSS-610,!481Draft: SW-971 SW-973 SW-975: Various fixes to build LOFAR correctly.
...@@ -43,7 +43,7 @@ def _get_telescope_time_distribution(cycle: models.Cycle): ...@@ -43,7 +43,7 @@ def _get_telescope_time_distribution(cycle: models.Cycle):
# At the moment just return some 0 placeholder values. # At the moment just return some 0 placeholder values.
# for p in projects: # for p in projects:
# # Get durations for single project and aggregate to get the totals # # Get durations for single project and aggregate to get the totals
# # Note: We can filter observations by considering observed_end_time in the SUB, for now. See TMSS-610. # # Note: We can filter observations by considering observed_duration in the SUB, for now. See TMSS-610.
# _, durations = _get_subs_and_durations_from_project(p) # _, durations = _get_subs_and_durations_from_project(p)
# total += durations['total'] # total += durations['total']
# succeeded += durations['total_succeeded'] # succeeded += durations['total_succeeded']
...@@ -216,7 +216,7 @@ def _get_subs_and_durations_from_project(project_pk: int) -> ({}, {}): ...@@ -216,7 +216,7 @@ def _get_subs_and_durations_from_project(project_pk: int) -> ({}, {}):
# TODO: Use QA workflow flag to get successful or failed SUBs, instead of SUBs' states. # TODO: Use QA workflow flag to get successful or failed SUBs, instead of SUBs' states.
# Cancelled SUBs are not failed SUBs. We need to adjust this once the QA workflow flag will be defined. # Cancelled SUBs are not failed SUBs. We need to adjust this once the QA workflow flag will be defined.
# Also clarify if this info should be related only to obs or all SUBs in general. The latter are considered for now. # Also clarify if this info should be related only to obs or all SUBs in general. The latter are considered for now.
# We can filter observations by considering observed_end_time in the SUB, for now. See TMSS-610 comments. # We can filter observations by considering observed_duration in the SUB, for now. See TMSS-610 comments.
if sub.status == 'finished': # Succeeded SUBs if sub.status == 'finished': # Succeeded SUBs
total_succeeded_duration += sub.duration total_succeeded_duration += sub.duration
subs_succeeded.append({'id': sub.pk, 'name': sub.name, 'duration': sub.duration.total_seconds()}) subs_succeeded.append({'id': sub.pk, 'name': sub.name, 'duration': sub.duration.total_seconds()})
......
...@@ -557,6 +557,21 @@ class SchedulingUnitBlueprint(RefreshFromDbInvalidatesCachedPropertiesMixin, Tem ...@@ -557,6 +557,21 @@ class SchedulingUnitBlueprint(RefreshFromDbInvalidatesCachedPropertiesMixin, Tem
else: else:
return None return None
@property
def observed_start_time(self) -> datetime or None:
"""
return the earliest start time of all (observation) tasks of this scheduling unit with the status observed/finished
"""
observed_tasks = []
for task in self.task_blueprints.all():
if task.specifications_template.type.value == TaskType.Choices.OBSERVATION.value and \
(task.status == "observed" or task.status == "finished") and task.start_time is not None:
observed_tasks.append(task)
if observed_tasks:
return min(observed_tasks, key=lambda x: x.start_time).start_time
else:
return None
@property @property
def observed_end_time(self) -> datetime or None: def observed_end_time(self) -> datetime or None:
""" """
...@@ -572,6 +587,16 @@ class SchedulingUnitBlueprint(RefreshFromDbInvalidatesCachedPropertiesMixin, Tem ...@@ -572,6 +587,16 @@ class SchedulingUnitBlueprint(RefreshFromDbInvalidatesCachedPropertiesMixin, Tem
else: else:
return None return None
@property
def observed_duration(self) -> datetime or None:
"""
return the overall observed duration of all (observation) tasks of this scheduling unit
"""
if self.observed_start_time and self.observed_end_time:
return self.observed_end_time - self.observed_start_time
else:
return None
@property @property
def status(self): def status(self):
""" """
......
...@@ -887,6 +887,7 @@ class TestWithUC1Specifications(unittest.TestCase): ...@@ -887,6 +887,7 @@ class TestWithUC1Specifications(unittest.TestCase):
set_subtask_state_following_allowed_transitions(subtask, "finished") set_subtask_state_following_allowed_transitions(subtask, "finished")
# Check times # Check times
self.assertEqual("2020-11-01 08:00:00", self.scheduling_unit_blueprint.observed_start_time.strftime("%Y-%m-%d %H:%M:%S"))
self.assertEqual("2020-11-01 19:20:00", self.scheduling_unit_blueprint.observed_end_time.strftime("%Y-%m-%d %H:%M:%S")) self.assertEqual("2020-11-01 19:20:00", self.scheduling_unit_blueprint.observed_end_time.strftime("%Y-%m-%d %H:%M:%S"))
self.assertEqual(timedelta(0), self.scheduling_unit_blueprint.relative_start_time) self.assertEqual(timedelta(0), self.scheduling_unit_blueprint.relative_start_time)
self.assertEqual(timedelta(hours=8, minutes=22), self.scheduling_unit_blueprint.relative_stop_time) self.assertEqual(timedelta(hours=8, minutes=22), self.scheduling_unit_blueprint.relative_stop_time)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment