How to use _pull_sysinfo_keyval method in autotest

Best Python code snippet using autotest_python

test.py

Source:test.py Github

copy

Full Screen

...100 host.send_file(self.pickle,101 os.path.join(outputdir, "sysinfo.pickle"))102 os.remove(self.pickle)103 self.pickle = None104 def _pull_sysinfo_keyval(self, host, outputdir, mytest):105 """Pulls sysinfo and keyval data from the client.106 """107 # pull the sysinfo data back on to the server108 host.get_file(os.path.join(outputdir, "sysinfo"), mytest.outputdir)109 # pull the keyval data back into the local one110 fd, path = tempfile.mkstemp(dir=self.job.tmpdir)111 os.close(fd)112 host.get_file(os.path.join(outputdir, "keyval"), path)113 keyval = utils.read_keyval(path)114 os.remove(path)115 mytest.write_test_keyval(keyval)116 @log.log_and_ignore_errors("pre-test server sysinfo error:")117 @install_autotest_and_run118 def before_hook(self, mytest, host, at, outputdir):119 # run the pre-test sysinfo script120 at.run(_sysinfo_before_test_script % outputdir,121 results_dir=self.job.resultdir)122 self._pull_pickle(host, outputdir)123 @log.log_and_ignore_errors("pre-test iteration server sysinfo error:")124 @install_autotest_and_run125 def before_iteration_hook(self, mytest, host, at, outputdir):126 # this function is called after before_hook() se we have sysinfo state127 # to push to the server128 self._push_pickle(host, outputdir);129 # run the pre-test iteration sysinfo script130 at.run(_sysinfo_iteration_script %131 (outputdir, 'log_before_each_iteration', mytest.iteration,132 'before'),133 results_dir=self.job.resultdir)134 # get the new sysinfo state from the client135 self._pull_pickle(host, outputdir)136 @log.log_and_ignore_errors("post-test iteration server sysinfo error:")137 @install_autotest_and_run138 def after_iteration_hook(self, mytest, host, at, outputdir):139 # push latest sysinfo state to the client140 self._push_pickle(host, outputdir);141 # run the post-test iteration sysinfo script142 at.run(_sysinfo_iteration_script %143 (outputdir, 'log_after_each_iteration', mytest.iteration,144 'after'),145 results_dir=self.job.resultdir)146 # get the new sysinfo state from the client147 self._pull_pickle(host, outputdir)148 self._pull_sysinfo_keyval(host, outputdir, mytest)149 @log.log_and_ignore_errors("post-test server sysinfo error:")150 @install_autotest_and_run151 def after_hook(self, mytest, host, at, outputdir):152 self._push_pickle(host, outputdir);153 # run the post-test sysinfo script154 at.run(_sysinfo_after_test_script % outputdir,155 results_dir=self.job.resultdir)156 self._pull_sysinfo_keyval(host, outputdir, mytest)157 def cleanup(self, host_close=True):158 if self.host and self.autotest:159 try:160 try:161 self.autotest.uninstall()162 finally:163 if host_close:164 self.host.close()165 else:166 self.host.erase_dir_contents(self.outputdir)167 except Exception:168 # ignoring exceptions here so that we don't hide the true169 # reason of failure from runtest170 logging.exception('Error cleaning up the sysinfo autotest/host '...

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