Best Python code snippet using locust
test_web.py
Source: test_web.py
...354 STATS_HISTORY_FILENAME = "{}_stats_history.csv".format(STATS_BASE_NAME)355 STATS_FAILURES_FILENAME = "{}_failures.csv".format(STATS_BASE_NAME)356 def setUp(self):357 super().setUp()358 self.remove_files_if_exists()359 parser = get_parser(default_config_files=[])360 self.environment.parsed_options = parser.parse_args(["--csv", self.STATS_BASE_NAME, "--csv-full-history"])361 self.stats = self.environment.stats362 self.stats.CSV_STATS_INTERVAL_SEC = 0.02363 locust.stats.CSV_STATS_INTERVAL_SEC = 0.1364 self.stats_csv_writer = StatsCSVFileWriter(365 self.environment, stats.PERCENTILES_TO_REPORT, self.STATS_BASE_NAME, full_history=True366 )367 self.web_ui = self.environment.create_web_ui("127.0.0.1", 0, stats_csv_writer=self.stats_csv_writer)368 self.web_ui.app.view_functions["request_stats"].clear_cache()369 gevent.sleep(0.01)370 self.web_port = self.web_ui.server.server_port371 def tearDown(self):372 super().tearDown()373 self.web_ui.stop()374 self.runner.quit()375 self.remove_files_if_exists()376 def remove_file_if_exists(self, filename):377 if os.path.exists(filename):378 os.remove(filename)379 def remove_files_if_exists(self):380 self.remove_file_if_exists(self.STATS_FILENAME)381 self.remove_file_if_exists(self.STATS_HISTORY_FILENAME)382 self.remove_file_if_exists(self.STATS_FAILURES_FILENAME)383 def test_request_stats_full_history_csv(self):384 self.stats.log_request("GET", "/test", 1.39764125, 2)385 self.stats.log_request("GET", "/test", 999.9764125, 1000)386 self.stats.log_request("GET", "/test2", 120, 5612)387 greenlet = gevent.spawn(self.stats_csv_writer.stats_writer)388 gevent.sleep(0.01)389 self.stats_csv_writer.stats_history_flush()390 gevent.kill(greenlet)391 response = requests.get("http://127.0.0.1:%i/stats/requests_full_history/csv" % self.web_port)392 self.assertEqual(200, response.status_code)393 self._check_csv_headers(response.headers, "requests_full_history")...
pyfile.py
Source: pyfile.py
...45 # å¦æåå¨ååæ件ï¼ä½æ¯ä¸å
许è¦çéåï¼å°±æ¥é46 elif os.path.isfile(path) and not overwrite:47 raise Exception('该ç®å½ä¸å·²ç»åå¨ååçæ件ï¼ä¸å¯å建ä¸æ件ååçæ件夹ï¼'48 'overwrite=Trueå¯ä»¥å
å é¤è¯¥æ件åå建ï¼' + path)49 def remove_files_if_exists(self, path, file_prefix=None, file_suffix=None):50 """51 å é¤pathä¸çæå®æ ¼å¼æ件ã52 :param path: ç®å½æè
æ件å53 :param file_prefix: å¦ææ件å满足è¿ä¸ªåç¼ï¼åå é¤54 :param file_suffix: å¦ææ件å满足è¿ä¸ªåç¼ï¼åå é¤55 å¦æ没ææå®åç¼ååç¼ï¼è¯´æpathçæ件åï¼åªéè¦å é¤è¿ä¸ªæ件56 """57 # file_prefix='__init'58 # file_suffix='.py'59 # å¤ææ¯å¦åå¨60 if not os.path.exists(path):61 print('æå®çç®å½æè
æ件ä¸åå¨ï¼ä¸éè¦æ§è¡å é¤æä½ï¼' + path)62 return63 # å¦ææ¯æ件ï¼åå é¤64 if os.path.isfile(path):65 os.remove(path)66 return67 # å¦åå°±æ¯å é¤æå®åç¼æè
åç¼çæ件68 # å
è·åå
¨é¨æ件69 all_files = os.listdir(path)70 files2 = []71 # æ¾å°åç¼æ ¼å¼æ件72 if file_prefix:73 files = [file for file in all_files if file.startswith(file_prefix)]74 files2.extend(files)75 # æ¾å°åç¼æ ¼å¼æ件76 if file_suffix:77 files = [file for file in all_files if file.endswith(file_suffix)]78 files2.extend(files)79 # å¦æ没ææå®åç¼æè
åç¼ï¼å°±æ¯å é¤å
¨é¨æ件80 if not file_prefix and not file_suffix:81 files2 = all_files82 # å¼å§å é¤æ件83 for file in set(files2):84 file = os.path.join(path, file)85 os.remove(file)86 def remove_dir_and_files(self, path):87 """å é¤ç®å½ä»¥ååç®å½åæ件ç"""88 # path=r'D:\a'89 if not os.path.exists(path):90 print('æå®çç®å½ä¸åå¨ï¼ä¸éè¦æ§è¡å é¤æä½ï¼' + path)91 # å é¤92 shutil.rmtree(path)93 def remove_old_files(self, path, file_prefix, keep_days=5, datefmt='%Y-%m-%d.%H'):94 """å é¤æ§çæ°æ®å¤ä»½æ件ï¼è¦ä¸ªè¦æ±æ件å½åæ ¼å¼ï¼ file_prefix_20150101 """95 # file_prefix = 'file_prefix_'96 # å¤æè·¯å¾æ¯å¦åå¨97 if not os.path.exists(path):98 raise Exception('æå®çè·¯å¾ä¸åå¨ï¼è¯·æ£æ¥ï¼%s' % path)99 # æ¾åºæå®åç¼çæ件100 files = [file for file in os.listdir(path) if file.startswith(file_prefix)]101 # æ¾å°n天åçæ件102 latest_day = (datetime.datetime.today() - datetime.timedelta(keep_days)).strftime(datefmt)103 old_file = file_prefix + latest_day104 remove_files = [file for file in files if file < old_file]105 # å¼å§å æ件106 for file in remove_files:107 file = os.path.join(path, file)108 os.remove(file)109 print('å é¤æ§çæ件ï¼%s' % file)110 return111 def back_file(self, file, suffix='_bak'):112 """å¤ä»½æ件"""113 file_bak = '%s%s' % (file, suffix)114 self.remove_files_if_exists(file_bak)115 shutil.copy(file, file_bak)116 def copy(self, source, target):117 """å¤å¶æ件ææ件夹å°å¦å¤çå°æ¹"""118 if not os.path.exists(self.get_path_name(target)):119 os.makedirs(self.get_path_name(target))120 print('ç®æ ç®å½ä¸åå¨ï¼å°å建ï¼%s' % self.get_path_name(target))121 # å¤å¶122 shutil.copyfile(source, target)123 def copy_dir(self, source, target):124 """å¤å¶æ件夹"""125 if not os.path.exists(self.get_path_name(target)):126 os.makedirs(self.get_path_name(target))127 print('ç®æ ç®å½ä¸åå¨ï¼å°å建ï¼%s' % self.get_path_name(target))128 # å¤å¶...
parallel_func.py
Source: parallel_func.py
...112 pypickle.write(result_file, all_result_data)113 print('ç»æåå°æ件ï¼%s'%result_file)114 # -------------------------------------------------------------------------------------------------------115 # å é¤ä¸´æ¶æ件116 pyos.remove_files_if_exists(path, file_prefix=split_prefix)117 pyos.remove_files_if_exists(path, file_prefix=result_prefix)118 print('å é¤ä¸´æ¶æ°æ®æ件')119 t2 = datetime.datetime.now()120 print('å®æå
¨é¨å¹¶è¡è®¡ç®ï¼èæ¶ï¼%d ç§'%(t2-t1).seconds)121 # è¿å122 if result_file:123 return result_file124 else:125 return all_result_data126def _test():...
Check out the latest blogs from LambdaTest on this topic:
Joseph, who has been working as a Quality Engineer, was assigned to perform web automation for the company’s website.
Lack of training is something that creates a major roadblock for a tester. Often, testers working in an organization are all of a sudden forced to learn a new framework or an automation tool whenever a new project demands it. You may be overwhelmed on how to learn test automation, where to start from and how to master test automation for web applications, and mobile applications on a new technology so soon.
There are times when developers get stuck with a problem that has to do with version changes. Trying to run the code or test without upgrading the package can result in unexpected errors.
Websites and web apps are growing in number day by day, and so are the expectations of people for a pleasant web experience. Even though the World Wide Web (WWW) was invented only in 1989 (32 years back), this technology has revolutionized the world we know back then. The best part is that it has made life easier for us. You no longer have to stand in long queues to pay your bills. You can get that done within a few minutes by visiting their website, web app, or mobile app.
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!