How to use _pre_record_init method in autotest

Best Python code snippet using autotest_python

job.py

Source:job.py Github

copy

Full Screen

...97 @param drop_caches: If true, utils.drop_caches() is called before and98 between all tests. [True]99 """100 super(base_client_job, self).__init__(options=options)101 self._pre_record_init(control, options)102 try:103 self._post_record_init(control, options, drop_caches)104 except Exception, err:105 self.record(106 'ABORT', None, None,'client.bin.job.__init__ failed: %s' %107 str(err))108 raise109 @classmethod110 def _get_environ_autodir(cls):111 return os.environ['AUTODIR']112 @classmethod113 def _find_base_directories(cls):114 """115 Determine locations of autodir and clientdir (which are the same)116 using os.environ. Serverdir does not exist in this context.117 """118 autodir = clientdir = cls._get_environ_autodir()119 return autodir, clientdir, None120 @classmethod121 def _parse_args(cls, args):122 return re.findall("[^\s]*?['|\"].*?['|\"]|[^\s]+", args)123 def _find_resultdir(self, options):124 """125 Determine the directory for storing results. On a client this is126 always <autodir>/results/<tag>, where tag is passed in on the command127 line as an option.128 """129 output_dir_config = GLOBAL_CONFIG.get_config_value('CLIENT',130 'output_dir',131 default="")132 if options.output_dir:133 basedir = options.output_dir134 elif output_dir_config:135 basedir = output_dir_config136 else:137 basedir = self.autodir138 return os.path.join(basedir, 'results', options.tag)139 def _get_status_logger(self):140 """Return a reference to the status logger."""141 return self._logger142 def _pre_record_init(self, control, options):143 """144 Initialization function that should peform ONLY the required145 setup so that the self.record() method works.146 As of now self.record() needs self.resultdir, self._group_level,147 self.harness and of course self._logger.148 """149 if not options.cont:150 self._cleanup_debugdir_files()151 self._cleanup_results_dir()152 logging_manager.configure_logging(153 client_logging_config.ClientLoggingConfig(),154 results_dir=self.resultdir,155 verbose=options.verbose)156 logging.info('Writing results to %s', self.resultdir)...

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