Skip to content
Snippets Groups Projects
Commit 21a00c45 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-574: fix recv unit test

parent b9d6bcd8
No related branches found
No related tags found
1 merge request!234Resolve L2SS-574 "Move hbat code to recv"
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
import time import time
import numpy import numpy
from tango import DevState
from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy
from .base import AbstractTestBases from .base import AbstractTestBases
...@@ -18,6 +19,29 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase): ...@@ -18,6 +19,29 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase):
def setUp(self): def setUp(self):
super().setUp("STAT/Beam/1") super().setUp("STAT/Beam/1")
def test_HBAT_delays_dims(self):
"""Verify HBAT delays are retrieved with correct dimensions"""
# setup RECV
recv_proxy = TestDeviceProxy("STAT/RECV/1")
recv_proxy.off()
recv_proxy.initialise()
recv_proxy.set_defaults()
recv_proxy.on()
# setup BEAM
self.proxy.init()
self.proxy.Initialise()
self.self.assertEqual(DevState.STANDBY, self.proxy.state())
self.proxy.set_defaults()
self.proxy.on()
self.self.assertEqual(DevState.ON, self.proxy.state())
# verify HBAT_delays method returns the correct dimensions
pointing_direction = numpy.array([["J2000","0deg","0deg"]] * 96).flatten()
HBAT_delays = self.proxy.HBAT_delays(pointing_direction)
self.assertEqual(1536, len(HBAT_delays)) # 96*16
def test_write_HBAT_delays(self): def test_write_HBAT_delays(self):
""" Test whether the delay values are correctly saved into the relative RECV attribute""" """ Test whether the delay values are correctly saved into the relative RECV attribute"""
......
...@@ -36,7 +36,6 @@ class TestBeamDevice(base.TestCase): ...@@ -36,7 +36,6 @@ class TestBeamDevice(base.TestCase):
def test_get_pointing_timestamps(self): def test_get_pointing_timestamps(self):
"""Verify can read timestamps attribute and length matches without err""" """Verify can read timestamps attribute and length matches without err"""
with DeviceTestContext(beam.Beam, process=True) as proxy: with DeviceTestContext(beam.Beam, process=True) as proxy:
self.assertEqual(96, len(proxy.read_attribute( self.assertEqual(96, len(proxy.read_attribute(
"HBAT_pointing_timestamp_R").value)) "HBAT_pointing_timestamp_R").value))
...@@ -8,8 +8,9 @@ ...@@ -8,8 +8,9 @@
# See LICENSE.txt for more info. # See LICENSE.txt for more info.
from tango.test_context import DeviceTestContext from tango.test_context import DeviceTestContext
from tango import DeviceProxy
from tangostationcontrol.devices import recv, opcua_device, lofar_device from tangostationcontrol.devices import recv, lofar_device
import mock import mock
...@@ -24,28 +25,38 @@ class TestRecvDevice(base.TestCase): ...@@ -24,28 +25,38 @@ class TestRecvDevice(base.TestCase):
# Patch DeviceProxy to allow making the proxies during initialisation # Patch DeviceProxy to allow making the proxies during initialisation
# that we otherwise avoid using # that we otherwise avoid using
for device in [recv, opcua_device, lofar_device]: for device in [lofar_device]:
proxy_patcher = mock.patch.object( proxy_patcher = mock.patch.object(
device, 'DeviceProxy') device, 'DeviceProxy')
proxy_patcher.start() proxy_patcher.start()
self.addCleanup(proxy_patcher.stop) self.addCleanup(proxy_patcher.stop)
def init_device(self, proxy:DeviceProxy):
proxy.off()
proxy.initialise()
proxy.set_defaults()
proxy.on()
def test_get_hbat_bf_delay_step_delays(self): def test_get_hbat_bf_delay_step_delays(self):
"""Verify can read delay step attribute and length matches without err""" """Verify can read delay step attribute and length matches without err"""
with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy: with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy:
self.init_device(proxy)
self.assertEqual(32, len(proxy.get_hbat_bf_delay_step_delays())) self.assertEqual(32, len(proxy.get_hbat_bf_delay_step_delays()))
def test_get_hbat_reference_itrf(self): def test_get_hbat_reference_itrf(self):
"""Verify can read hbat reference itrf attribute and length matches without err""" """Verify can read hbat reference itrf attribute and length matches without err"""
with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy: with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy:
self.init_device(proxy)
self.assertEqual(288, len(proxy.get_hbat_reference_itrf())) # 96x3=288 self.assertEqual(288, len(proxy.get_hbat_reference_itrf())) # 96x3=288
def test_get_hbat_antenna_itrf(self): def test_get_hbat_antenna_itrf(self):
"""Verify can read hbat antenna itrf attribute and length matches without err""" """Verify can read hbat antenna itrf attribute and length matches without err"""
with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy: with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy:
self.init_device(proxy)
self.assertEqual(4608, len(proxy.get_hbat_antenna_itrf())) # 96x16X3=4608 self.assertEqual(4608, len(proxy.get_hbat_antenna_itrf())) # 96x16X3=4608
def test_get_hbat_signal_input_delays(self): def test_get_hbat_signal_input_delays(self):
"""Verify can read signal input delay attribute and length matches without err""" """Verify can read signal input delay attribute and length matches without err"""
with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy: with DeviceTestContext(recv.RECV, properties=self.recv_properties, process=True) as proxy:
self.init_device(proxy)
self.assertEqual(3072, len(proxy.get_hbat_signal_input_delays())) # 96x32=3072 self.assertEqual(3072, len(proxy.get_hbat_signal_input_delays())) # 96x32=3072
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