This test case generates some streaming requests to the server to ensure an alert is triggered and then tests the log file for this alert. Different logs can be tested by
appending to the list of parameters in the pytest decorator
:param log: the path of the log file that is under test
:param streaming_url: the fixture providing the streaming url for this test case
:param streaming_manifest: the fixture providing the root of the XML streaming manifest
"""
try:
ifisfile(log):
remove(log)# delete log file if existing from previous tests
exceptPermissionError:
system("sudo rm {0}".format(log))# handles the case for running on linux where permission will be required to delete the old log file