Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smoke Test Loop Script #2038

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ format:
smoke-test:
cd tests_smoke && poetry run python smoke_test.py

.PHONY: smoke-loop
smoke-loop:
cd tests_smoke && poetry run python smoke_loop.py $(ARGS)

.PHONY: run
run: ## Run the web app
flask run -p 6011 --host=0.0.0.0
Expand Down
100 changes: 100 additions & 0 deletions tests_smoke/smoke_loop.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
import subprocess
import os
import time
from argparse import ArgumentParser
from smoke.common import Attachment_type, Config, Notification_type # type: ignore
from smoke.test_admin_csv import test_admin_csv # type: ignore
from smoke.test_admin_one_off import test_admin_one_off # type: ignore
from smoke.test_api_bulk import test_api_bulk # type: ignore
from smoke.test_api_one_off import test_api_one_off # type: ignore

runCount = 0
maxRuns = 0

class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'

def init():

global maxRuns

parser = ArgumentParser()
parser.add_argument("-m", "--max-runs", dest="maxruns",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you could add this documentation in either the Makefile and on top of this script so folks have an example of how to run it

help="Set the maximum number of runs you want", metavar="MAXRUNS")
parser.add_argument("-s", "--source-script", dest="source",
help="Pass a shell script to source environment variables from", metavar="SOURCE")
args = parser.parse_args()

print(bcolors.OKBLUE)

print("API Smoke test\n")
for key in ["API_HOST_NAME", "SERVICE_ID", "EMAIL_TEMPLATE_ID", "SMS_TEMPLATE_ID", "EMAIL_TO", "SMS_TO"]:
print(f"{key:>17}: {Config.__dict__[key]}")
print("")

if args.maxruns != None:
print(f"Running smoke tests in a loop up to {args.maxruns} times")
maxRuns = int(args.maxruns)
else:
print(f"Running smoke tests in a loop indefinitely")

os.chdir('../')

if args.source != None:
print(f"Sourcing environment variables from external shell script {args.source}")
subprocess.run(["source", args.source],executable='/bin/bash')

print(bcolors.ENDC)

init()


while True:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would put both the init() and this part under the main function, that would be the pythonic way to call this:

def main():
    print("Hello World!")

if __name__ == "__main__":
    main()


result = None
seconds = None
startTime = None
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you don't need to initiatize both startTime and endTime as you are reinitializing underneath

endTime = None

try:
runCount +=1
print(bcolors.OKBLUE)
print(f"Running smoke test #{str(runCount)}")
print(bcolors.ENDC)
startTime = time.time()

for notification_type in [Notification_type.EMAIL, Notification_type.SMS]:
test_admin_one_off(notification_type)
test_admin_csv(notification_type)
test_api_one_off(notification_type)
test_api_bulk(notification_type)
test_api_one_off(Notification_type.EMAIL, Attachment_type.ATTACHED)
test_api_one_off(Notification_type.EMAIL, Attachment_type.LINK)

print(subprocess.STDOUT)
endTime = time.time()
totalTime = endTime - startTime
print(bcolors.OKBLUE)
print(f"Smoke Test {str(runCount)} complete in {totalTime} seconds")
print(bcolors.ENDC)
if maxRuns != 0:
if maxRuns >= runCount:
print(bcolors.WARNING)
print(f"Run limit reached. Stopping")
print(bcolors.ENDC)
break

except:
Fixed Show fixed Hide fixed

print(bcolors.FAIL)
print(f"Smoke Test run {str(runCount)} failed")
print(bcolors.ENDC)
break
Loading