How to use _is_matched_infomation method in lisa

Best Python code snippet using lisa_python

legacy_runner.py

Source:legacy_runner.py Github

copy

Full Screen

...188 ]189 # remove existing running case, left new running cases190 for running_case in running_cases:191 for result in not_matched_results:192 if self._is_matched_infomation(result, running_case):193 new_running_cases.remove(running_case)194 not_matched_results.remove(result)195 break196 if not_matched_results:197 self.log.error(198 f"not matched should be empty, but {not_matched_results}, "199 f"parsed running cases: {[running_cases]}"200 )201 # set new running case information202 queued_results = [x for x in self._results if x.status == TestStatus.QUEUED]203 for running_case in new_running_cases:204 name = running_case["name"]205 for result in queued_results:206 if result.name == name:207 # initialize new running case208 running_case["status"] = str(TestStatus.RUNNING.name)209 self._set_result(result, information=running_case)210 # every not run just match one211 queued_results.remove(result)212 break213 def _set_completed_results(self, completed_cases: List[Dict[str, str]]) -> None:214 new_completed_cases = completed_cases[:]215 not_matched_results = [216 x217 for x in self._results218 if x.status not in [TestStatus.QUEUED, TestStatus.RUNNING]219 ]220 # remove existing completed case221 for completed_case in completed_cases:222 for result in not_matched_results:223 if self._is_matched_infomation(result, completed_case):224 new_completed_cases.remove(completed_case)225 not_matched_results.remove(result)226 break227 if not_matched_results:228 self.log.error(229 f"not matched should be empty, but {not_matched_results}, "230 f"parsed completed cases: {[completed_cases]}"231 )232 # set new completed case information233 running_results = [x for x in self._results if x.status == TestStatus.RUNNING]234 not_matched_cases = new_completed_cases[:]235 for completed_case in new_completed_cases:236 for result in running_results:237 if self._is_matched_infomation(result, completed_case):238 # complete a case239 self._set_result(240 result,241 information=completed_case,242 )243 # every running result just match one244 running_results.remove(result)245 not_matched_cases.remove(completed_case)246 break247 if not_matched_cases:248 self.log.error(249 f"found unmatched completed results: {not_matched_cases}, "250 f"running results: {running_results}"251 )252 def _get_name(self, name: str) -> str:253 return f"legacy.{name}"254 def _get_case_key(255 self, name: str, image: str, location: str, vmsize: str = ""256 ) -> str:257 # vmsize is nullable due to lack of information on sequence run258 return f"{name}|{image}|{location}|{vmsize}"259 def _is_matched_infomation(260 self, result: TestResult, information: Dict[str, str]261 ) -> bool:262 if result.name != information["name"]:263 # case name doesn't match264 return False265 if "image" not in result.information or "location" not in result.information:266 # it's not a case that have full information267 return False268 # In sequence run, there is no vm size log line.269 # So, when image and location is found, the case can be added.270 result_vmsize = result.information.get("vmsize", "")271 information_vmsize = information.get("vmsize", "")272 if not result_vmsize or not information_vmsize:273 result_vmsize = ""...

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 lisa 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