Skip to content
Snippets Groups Projects
Commit b54a1a96 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

TMSS-320: fixed tests

parent b81dba68
No related branches found
No related tags found
2 merge requests!308Resolve TMSS-495,!306Resolve TMSS-320
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
# You should have received a copy of the GNU General Public License along # You should have received a copy of the GNU General Public License along
# with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>. # with the LOFAR software suite. If not, see <http://www.gnu.org/licenses/>.
from dateutil import parser
from lofar.sas.tmss.tmss.tmssapp.models import * from lofar.sas.tmss.tmss.tmssapp.models import *
from lofar.sas.tmss.tmss.tmssapp.conversions import antennafields_for_antennaset_and_station from lofar.sas.tmss.tmss.tmssapp.conversions import antennafields_for_antennaset_and_station
import logging import logging
...@@ -103,6 +104,7 @@ def process_subtask_feedback(subtask:Subtask): ...@@ -103,6 +104,7 @@ def process_subtask_feedback(subtask:Subtask):
antennafields = input_dataproduct.feedback_doc["antennas"]['fields'] antennafields = input_dataproduct.feedback_doc["antennas"]['fields']
pointing = input_dataproduct.feedback_doc["target"]['pointing'] pointing = input_dataproduct.feedback_doc["target"]['pointing']
# add feedback doc to dataproduct # add feedback doc to dataproduct
dataproduct.feedback_doc={ dataproduct.feedback_doc={
"percentage_written": int(feedback_dict[dpkey+'.percentageWritten']), "percentage_written": int(feedback_dict[dpkey+'.percentageWritten']),
...@@ -113,7 +115,7 @@ def process_subtask_feedback(subtask:Subtask): ...@@ -113,7 +115,7 @@ def process_subtask_feedback(subtask:Subtask):
"channels_per_subband": int(feedback_dict[dpkey + '.channelsPerSubband']) "channels_per_subband": int(feedback_dict[dpkey + '.channelsPerSubband'])
}, },
"time": { "time": {
"start_time": feedback_dict[dpkey+'.startTime'], "start_time": parser.parse(feedback_dict[dpkey+'.startTime'], ignoretz=True).isoformat(),
"duration": duration, "duration": duration,
"sample_width": float(feedback_dict[dpkey+'.integrationInterval']), "sample_width": float(feedback_dict[dpkey+'.integrationInterval']),
}, },
......
...@@ -24,7 +24,7 @@ import unittest ...@@ -24,7 +24,7 @@ import unittest
import requests import requests
import logging import logging
logger = logging.getLogger(__name__) logger = logging.getLogger('lofar.'+__name__)
logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.INFO) logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.INFO)
# Do Mandatory setup step: # Do Mandatory setup step:
...@@ -70,8 +70,6 @@ class SIPadapterTest(unittest.TestCase): ...@@ -70,8 +70,6 @@ class SIPadapterTest(unittest.TestCase):
Check the number of SIP identifiers are increased with 3 Check the number of SIP identifiers are increased with 3
Check that all SIP identifiers are unique Check that all SIP identifiers are unique
""" """
nbr_expected_sip_identifiers_before_setup = len(models.SIPidentifier.objects.all())
subtask_template = models.SubtaskTemplate.objects.get(name='observation control') subtask_template = models.SubtaskTemplate.objects.get(name='observation control')
specifications_doc = get_default_json_object_for_schema(subtask_template.schema) specifications_doc = get_default_json_object_for_schema(subtask_template.schema)
specifications_doc['stations']['filter'] = "HBA_210_250" specifications_doc['stations']['filter'] = "HBA_210_250"
...@@ -83,12 +81,11 @@ class SIPadapterTest(unittest.TestCase): ...@@ -83,12 +81,11 @@ class SIPadapterTest(unittest.TestCase):
# Create SubTask(output) # Create SubTask(output)
subtask_data = Subtask_test_data(subtask_template=subtask_template, specifications_doc=specifications_doc) subtask_data = Subtask_test_data(subtask_template=subtask_template, specifications_doc=specifications_doc)
subtask:models.Subtask = models.Subtask.objects.create(**subtask_data) subtask:models.Subtask = models.Subtask.objects.create(**subtask_data)
subtask.save()
subtask_output = models.SubtaskOutput.objects.create(**SubtaskOutput_test_data(subtask=subtask)) subtask_output = models.SubtaskOutput.objects.create(**SubtaskOutput_test_data(subtask=subtask))
# Create Dataproduct # Create Dataproduct
dataproduct: models.Dataproduct = models.Dataproduct.objects.create( dataproduct: models.Dataproduct = models.Dataproduct.objects.create(**Dataproduct_test_data(feedback_doc=feedback_doc, producer=subtask_output))
**Dataproduct_test_data(feedback_doc=feedback_doc, producer=subtask_output))
dataproduct.save()
# Create SAP # Create SAP
sap_template = models.SAPTemplate.objects.get(name="SAP") sap_template = models.SAPTemplate.objects.get(name="SAP")
specifications_doc = get_default_json_object_for_schema(sap_template.schema) specifications_doc = get_default_json_object_for_schema(sap_template.schema)
...@@ -107,11 +104,6 @@ class SIPadapterTest(unittest.TestCase): ...@@ -107,11 +104,6 @@ class SIPadapterTest(unittest.TestCase):
self.assertIn(str(dataproduct.global_identifier.unique_identifier), sip.get_prettyxml()) self.assertIn(str(dataproduct.global_identifier.unique_identifier), sip.get_prettyxml())
self.assertIn(str(sap.global_identifier.unique_identifier), sip.get_prettyxml()) self.assertIn(str(sap.global_identifier.unique_identifier), sip.get_prettyxml())
all_sip_ids = list(models.SIPidentifier.objects.all())
self.assertEqual(nbr_expected_sip_identifiers_before_setup+3, len(all_sip_ids))
for sip_id in all_sip_ids:
self.assertEqual(models.SIPidentifier.objects.filter(unique_identifier=sip_id.unique_identifier).count(), 1)
class FeedbackAdapterTest(unittest.TestCase): class FeedbackAdapterTest(unittest.TestCase):
......
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