How to use run_behave method in Behave

Best Python code snippet using behave

taas.py

Source:taas.py Github

copy

Full Screen

...41 return {"tests": test_list}, 20042 except Exception as e:43 return {"Status": "error",44 "Reason": e.__str__()}, 50045def run_behave(testname):46 """Run the Behave machinery, read overall test result, capture log file."""47 test_specification = "{dir}/{test}{suffix}".format(dir=TEST_DIR, test=testname,48 suffix=TEST_SUFFIX)49 logfile = mktemp()50 print("Logfile: {logfile}".format(logfile=logfile))51 output_specification = "--outfile={logfile}".format(logfile=logfile)52 result = behave_main([test_specification, output_specification])53 print("Test result: {result}:".format(result=result))54 try:55 log = None56 with open(logfile, "r") as fin:57 log = fin.read()58 remove(logfile)59 return result, log60 except Exception as e:61 print("Exception occured: ", e)62 return 2, None63def run_test(testname):64 """Run the specified tests."""65 if not testname:66 return {"Status": "error",67 "Reason": "No test name supplied"}, 40068 tests = get_file_list(TEST_DIR, TEST_SUFFIX)69 if testname not in tests:70 return {"Status": "error",71 "Reason": "The specified test was not found"}, 40472 enabled_tests = try_to_read_enabled_tests(argv)73 if testname not in enabled_tests:74 return {"Status": "not allowed",75 "Reason": "You can not run the test specified"}, 40576 result, log = run_behave(testname)77 if result == 0:78 return {"Status": "ok", "Log": log}, 20079 else:80 return {"Status": "error"}, 50081def try_to_read_enabled_tests(argv):82 """Try to read all enabled tests."""83 if len(argv) > 1:84 return read_enabled_tests(argv[1])85 else:86 return []87def read_enabled_tests(filename):88 """Read list of enabled tests from specified file."""89 with open(filename) as fin:90 content = fin.readlines()...

Full Screen

Full Screen

output_strings.py

Source:output_strings.py Github

copy

Full Screen

1# -*- coding: utf-8 -*-2"""3/*4* BehaveX - Agile test wrapper on top of Behave (BDD)5*/6This module provides a dictionary with the contents that are displayed in7test execution outputs.8"""9TEXTS = {10 'commons': {11 'expand': 'Expand the {} information',12 'collapse': 'Collapse the {} information',13 'error_background': 'Error in background',14 'framework_name': 'BehaveX',15 'framework_description': 'Agile test wrapper on top of Behave (BDD)',16 'help': {'title': 'Click here for more details'},17 'text': {'total_time': 'Total execution time'},18 'footer': {'name': 'BehaveX'},19 },20 'report': {21 'title': 'Test Report',22 'description': '',23 'modal': {24 'title': '',25 'body': '',26 },27 'muted': 'This scenario has been muted in build server reports (@MUTE tag)',28 'show_background': '(show background)',29 'hide_background': '(hide background)',30 'execution_tag': 'Execution Tag',31 'filter_tag': {'label': 'Tag'},32 'reset_filter': {'label': 'Reset'},33 'skip_fix_process': {'label': 'Skip scenarios under fix process'},34 'icon_duplicate': {'title': 'Copy link to this scenario'},35 'icon_repeat': {36 'title': 'This scenario was executed more than once (see @AUTORETRY tag)'37 },38 'filter_status': {'label': 'Status'},39 },40 'steps': {'title': 'Steps', 'description': '', 'modal': {'title': '', 'body': ''}},41 'metrics': {42 'title': 'Metrics',43 'description': '',44 'modal': {45 'title': '',46 'body': '<b>Test Automation Rate:</b> % of automated scenarios.<br>'47 '<b>Pass Rate:</b>: % of passed scenarios.<br>',48 },49 },50 'joined': {'title': '', 'description': '', 'modal': {'title': '', 'modal': 'the'}},51 'feature': {52 'serial_execution': '{0}\nRunning serial features (tagged as @SERIAL)'53 '.\n\n{0}'.format('*' * 60),54 'running_parallels': '{0}\nRunning parallel features.\n\n{0}'.format('*' * 60),55 'run_behave': u"Running feature '{}'.",56 },57 'scenario': {58 'serial_execution': u'{0}\nRunning serial scenarios (tagged as @SERIAL)'59 u'\n\n{0}'.format('*' * 60),60 'running_parallels': u'{0}\nRunning parallel scenarios\n\n{0}'.format('*' * 60),61 'run_behave': u"Running feature '{}' with scenario '{}'.",62 'duplicated_scenarios': '{0}\nThere are duplicate scenario names to run.\n'63 'Parallel test execution by scenario cannot be performed.\n'64 'Duplicated scenario names: \n{1}.\n\n{0}'.format('*' * 60, {}),65 },66 'folder': {'run_behave': u"Running folder: '{}' and feature '{}'."},67 'path': {'not_found': u'\nThe path "{}" was not found.\n'},...

Full Screen

Full Screen

run_behave.py

Source:run_behave.py Github

copy

Full Screen

...52 f"{feature_order} -f allure_behave.formatter:AllureFormatter "53 f"-o {reports} --no-skipped -f plain {tags_option}"54 )55 configuration = Configuration(arguments, verbose=verbose)56 run_behave(configuration)57 # adding hardware and user location to scenario headlines in allure report58 hardware = get_env("HARDWARE")59 user_location = (60 "Localhost" if is_truthy(get_env("IS_LOCALHOST")) else "Remotehost"61 )62 update_allure_result_json_files(reports, hardware, user_location)63if __name__ == "__main__":64 env_path = Path(".") / ".env"65 env = load_dotenv(dotenv_path=env_path)...

Full Screen

Full Screen

btw-behave.py

Source:btw-behave.py Github

copy

Full Screen

...15 :param args: Command-line args (or string) to use.16 :return: 0, if successful. Non-zero, in case of errors/failures.17 """18 config = Configuration(args)19 return run_behave(config, BTWRunner)20if __name__ == "__main__":21 # -- EXAMPLE: main("--version")...

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