How to use _check_invalid_related_objects method in autotest

Best Python code snippet using autotest_python

monitor_db_cleanup.py

Source:monitor_db_cleanup.py Github

copy

Full Screen

...84 second_model.__name__, related_list))85 related_manager = getattr(invalid_object, relation_field)86 related_manager.clear()87 return error_lines88 def _check_invalid_related_objects(self, first_model, first_field,89 second_model, second_field):90 errors = self._check_invalid_related_objects_one_way(91 first_model, first_field, second_model)92 errors.extend(self._check_invalid_related_objects_one_way(93 second_model, second_field, first_model))94 return errors95 def _check_all_invalid_related_objects(self):96 model_pairs = ((models.Host, 'labels', models.Label, 'host_set'),97 (models.AclGroup, 'hosts', models.Host, 'aclgroup_set'),98 (models.AclGroup, 'users', models.User, 'aclgroup_set'),99 (models.Test, 'dependency_labels', models.Label,100 'test_set'))101 errors = []102 for first_model, first_field, second_model, second_field in model_pairs:103 errors.extend(self._check_invalid_related_objects(104 first_model, first_field, second_model, second_field))105 if errors:106 subject = ('%s relationships to invalid models, cleaned all' %107 len(errors))108 message = '\n'.join(errors)109 logging.warning(subject)110 logging.warning(message)111 mail.manager.enqueue_admin(subject, message)112 def _clear_inactive_blocks(self):113 msg = 'Clear out blocks for all completed jobs.'114 logging.info(msg)115 # this would be simpler using NOT IN (subquery), but MySQL116 # treats all IN subqueries as dependent, so this optimizes much117 # better...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run autotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful