2023-10-01 19:58:49 +05:30
|
|
|
from behave import *
|
|
|
|
|
2023-10-06 19:06:04 +05:30
|
|
|
from ftest_common.logger import upload_logs_to_ftest
|
2023-10-01 19:58:49 +05:30
|
|
|
|
|
|
|
|
|
|
|
def before_all(context):
|
|
|
|
context.success = []
|
|
|
|
context.failure = {}
|
|
|
|
|
|
|
|
|
|
|
|
def after_all(context):
|
|
|
|
max_score = 3
|
|
|
|
score = 0
|
|
|
|
|
|
|
|
score = len(context.success)
|
|
|
|
print("\n\n===============")
|
|
|
|
if score == max_score:
|
|
|
|
print("All tests passed")
|
|
|
|
elif score > 0:
|
|
|
|
print(f"Partial success. {score} out of {max_score} tests passed")
|
|
|
|
|
|
|
|
print("Summary:\n")
|
|
|
|
|
|
|
|
logs = ""
|
|
|
|
|
|
|
|
if context.success:
|
|
|
|
print(f"Successful tests:\n")
|
|
|
|
for s in context.success:
|
|
|
|
log = f"[OK] {s}\n"
|
|
|
|
print(log)
|
|
|
|
logs += log
|
|
|
|
|
|
|
|
if "failure" in context:
|
|
|
|
print(f"\n\nFailed tests:\n")
|
|
|
|
for _, (test, error) in enumerate(context.failure.items()):
|
|
|
|
log = f"[FAIL] {test} failed with error:\n{error}\n-----\n"
|
|
|
|
print(log)
|
|
|
|
logs += log
|
|
|
|
|
2023-10-13 16:02:29 +05:30
|
|
|
upload_logs_to_ftest(score == max_score, logs)
|