Skip to content
Snippets Groups Projects
Commit e7759417 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-722: Forget about removing attributes as that is broken in hdbpp at the moment.

parent 068cf332
No related branches found
No related tags found
1 merge request!299Resolve L2SS-722: Fix the integration tests
...@@ -55,10 +55,12 @@ class TestArchiver(BaseIntegrationTestCase): ...@@ -55,10 +55,12 @@ class TestArchiver(BaseIntegrationTestCase):
recv_proxy.set_defaults() recv_proxy.set_defaults()
recv_proxy.on() recv_proxy.on()
self.assertEqual(DevState.ON, recv_proxy.state()) self.assertEqual(DevState.ON, recv_proxy.state())
"""
# Safety operation that prevents event subscriber to go in Fault state # Safety operation that prevents event subscriber to go in Fault state
self.archiver.remove_attributes_in_error() self.archiver.remove_attributes_in_error()
time.sleep(3) time.sleep(3)
"""
attr_fullname = 'stat/recv/1/recvtr_translator_busy_r' # boolean attr_fullname = 'stat/recv/1/recvtr_translator_busy_r' # boolean
self.archiver.add_attribute_to_archiver(attr_fullname, polling_period=1000, archive_event_period=3000) self.archiver.add_attribute_to_archiver(attr_fullname, polling_period=1000, archive_event_period=3000)
time.sleep(3) time.sleep(3)
...@@ -76,11 +78,13 @@ class TestArchiver(BaseIntegrationTestCase): ...@@ -76,11 +78,13 @@ class TestArchiver(BaseIntegrationTestCase):
self.assertEqual(datetime,type(item.data_time)) # column datetime self.assertEqual(datetime,type(item.data_time)) # column datetime
self.assertEqual(bool,type(item.value)) # column value self.assertEqual(bool,type(item.value)) # column value
"""
# Remove attribute at the end of the test # Remove attribute at the end of the test
self.archiver.remove_attribute_from_archiver(attr_fullname) self.archiver.remove_attribute_from_archiver(attr_fullname)
time.sleep(3) time.sleep(3)
# Test if the attribute has been correctly removed # Test if the attribute has been correctly removed
self.assertFalse(self.archiver.is_attribute_archived(attribute_fqdn(attr_fullname))) self.assertFalse(self.archiver.is_attribute_archived(attribute_fqdn(attr_fullname)))
"""
recv_proxy.off() recv_proxy.off()
def test_archive_array_attribute(self): def test_archive_array_attribute(self):
...@@ -96,9 +100,11 @@ class TestArchiver(BaseIntegrationTestCase): ...@@ -96,9 +100,11 @@ class TestArchiver(BaseIntegrationTestCase):
sdp_proxy.on() sdp_proxy.on()
self.assertEqual(DevState.ON, sdp_proxy.state()) self.assertEqual(DevState.ON, sdp_proxy.state())
"""
# Safety operation that prevents event subscriber to go in Fault state # Safety operation that prevents event subscriber to go in Fault state
self.archiver.remove_attributes_in_error() self.archiver.remove_attributes_in_error()
time.sleep(3) time.sleep(3)
"""
attr_fullname = 'stat/sdp/1/fpga_temp_r' # double attr_fullname = 'stat/sdp/1/fpga_temp_r' # double
self.archiver.add_attribute_to_archiver(attr_fullname, polling_period=1000, archive_event_period=3000) self.archiver.add_attribute_to_archiver(attr_fullname, polling_period=1000, archive_event_period=3000)
time.sleep(3) time.sleep(3)
...@@ -117,11 +123,13 @@ class TestArchiver(BaseIntegrationTestCase): ...@@ -117,11 +123,13 @@ class TestArchiver(BaseIntegrationTestCase):
self.assertEqual(int,type(item.x)) # column index self.assertEqual(int,type(item.x)) # column index
self.assertEqual(float,type(item.value)) # column value self.assertEqual(float,type(item.value)) # column value
"""
# Remove attribute at the end of the test # Remove attribute at the end of the test
self.archiver.remove_attribute_from_archiver(attr_fullname) self.archiver.remove_attribute_from_archiver(attr_fullname)
time.sleep(3) time.sleep(3)
# Test if the attribute has been correctly removed # Test if the attribute has been correctly removed
self.assertFalse(self.archiver.is_attribute_archived(attribute_fqdn(attr_fullname))) self.assertFalse(self.archiver.is_attribute_archived(attribute_fqdn(attr_fullname)))
"""
sdp_proxy.off() sdp_proxy.off()
def test_get_maximum_device_load(self): def test_get_maximum_device_load(self):
......
...@@ -25,8 +25,8 @@ def warn_if_attribute_not_found(): ...@@ -25,8 +25,8 @@ def warn_if_attribute_not_found():
try: try:
return func(self, attribute_name, *args, **kwargs) return func(self, attribute_name, *args, **kwargs)
except DevFailed as e: except DevFailed as e:
if e.args[0].reason == 'Attribute not found' or 'NOT FOUND in signal list': if e.args[0].reason in ['Attribute not found', 'BadSignalName']:
logger.warning(f"Attribute {attribute_name} not found!") logger.warning(f"Attribute {attribute_name} not found: {e.args[0].desc}")
else: else:
raise raise
...@@ -59,7 +59,7 @@ class Archiver(): ...@@ -59,7 +59,7 @@ class Archiver():
self.cm = DeviceProxy(cm_name) self.cm = DeviceProxy(cm_name)
try: try:
if self.cm.state() == DevState.FAULT: if self.cm.state() == DevState.FAULT:
raise Exception(f"Configuration Manager {cm_name} is in FAULT state") raise Exception(f"Configuration Manager {cm_name} is in FAULT state: {self.cm.status()}")
except Exception as e: except Exception as e:
raise Exception(f"Connection failed with Configuration Manager {cm_name}") from e raise Exception(f"Connection failed with Configuration Manager {cm_name}") from e
self.es_list = [es_name for es_name in self.get_subscribers(from_db=False)] self.es_list = [es_name for es_name in self.get_subscribers(from_db=False)]
...@@ -145,7 +145,8 @@ class Archiver(): ...@@ -145,7 +145,8 @@ class Archiver():
dev_polling_time, dev_archive_abs_change, dev_archive_rel_change, dev_archive_period, dev_event_period, dev_strategy = get_global_env_parameters(config_dict, environment) dev_polling_time, dev_archive_abs_change, dev_archive_rel_change, dev_archive_period, dev_event_period, dev_strategy = get_global_env_parameters(config_dict, environment)
# Attributes to be included in archiving stategy # Attributes to be included in archiving stategy
include_att_list = get_include_attribute_list(device, config_dict, environment) include_att_list = get_include_attribute_list(device, config_dict, environment)
self.remove_attributes_by_device(device, exclude=include_att_list) # TODO Cleanup the subscriber
# self.remove_attributes_by_device(device, exclude=include_att_list)
# Include attributes by custom configuration # Include attributes by custom configuration
try: try:
for att in include_att_list: for att in include_att_list:
...@@ -281,6 +282,10 @@ class Archiver(): ...@@ -281,6 +282,10 @@ class Archiver():
""" """
Stops the data archiving of the attribute passed as input, and remove it from the subscriber's list. Stops the data archiving of the attribute passed as input, and remove it from the subscriber's list.
""" """
# Removal of attributes leads to hdbpp-es freezing up, see https://github.com/tango-controls-hdbpp/hdbpp-es/issues/25
raise NotImplementedError("Removing attributes is not supported yet")
attribute_name = attribute_fqdn(attribute_name) attribute_name = attribute_fqdn(attribute_name)
self.cm.AttributeStop(attribute_name) self.cm.AttributeStop(attribute_name)
self.cm.AttributeRemove(attribute_name) self.cm.AttributeRemove(attribute_name)
...@@ -341,6 +346,7 @@ class Archiver(): ...@@ -341,6 +346,7 @@ class Archiver():
Starts the archiving of the attribute passed as input. Starts the archiving of the attribute passed as input.
The attribute must be already present in the subscriber's list The attribute must be already present in the subscriber's list
""" """
attribute_name = attribute_fqdn(attribute_name)
self.cm.AttributeStart(attribute_name) self.cm.AttributeStart(attribute_name)
@warn_if_attribute_not_found() @warn_if_attribute_not_found()
...@@ -349,6 +355,7 @@ class Archiver(): ...@@ -349,6 +355,7 @@ class Archiver():
Stops the archiving of the attribute passed as input. Stops the archiving of the attribute passed as input.
The attribute must be already present in the subscriber's list The attribute must be already present in the subscriber's list
""" """
attribute_name = attribute_fqdn(attribute_name)
self.cm.AttributeStop(attribute_name) self.cm.AttributeStop(attribute_name)
def is_attribute_archived(self, attribute_name:str): def is_attribute_archived(self, attribute_name:str):
......
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