From 2617c874622a1c4543e9e0ac0f5c4d074f77644f Mon Sep 17 00:00:00 2001 From: asures684 Date: Tue, 2 Jun 2026 11:42:27 +0530 Subject: [PATCH 1/9] TDK-11955: MVS framework cleanup & fixes for app loading issue [Sprint M149] Reason for change: MVS Framework Updates Test Procedure: Verify with TDK TM Risks: None Signed-off-by: Aromal Suresh --- framework/fileStore/MediaValidationUtility.py | 244 ++---------------- 1 file changed, 23 insertions(+), 221 deletions(-) diff --git a/framework/fileStore/MediaValidationUtility.py b/framework/fileStore/MediaValidationUtility.py index 1ca8097b..7d9b920f 100644 --- a/framework/fileStore/MediaValidationUtility.py +++ b/framework/fileStore/MediaValidationUtility.py @@ -31,8 +31,10 @@ # Device specific config file deviceConfigFile = "" + # Global variable to store all the operations all_operations = "" + # Global variable to store all the url arguments all_arguments = {} @@ -41,30 +43,34 @@ # Global variable to store websocket conn feature webkit_socket_conn = True + # Global variable to store default webinspect port webkit_socket_port = webinspect_port - expectedResult = "SUCCESS" + # Global variable to store client with high z-order next_z_order_client = None # Global variables to store default AV port video_port = None audio_port = None + # Global variables to store resolution info current_resolution = None resolution_revert = False + # Global variables to store sound modes current_mode = None mode_revert = False auto_mode = 0 + # Global variable to store proc validation mode proc_check_mode = None + # Global variable to store events evt_lst = [] - #************************************************************************************************************# # Function to set the operation and interval @@ -111,7 +117,6 @@ def getURLArguments(): url_arguments += args + "=" + str(all_arguments[args]) return url_arguments - # Function to form the complete test app url def getTestURL(appURL,URLarguments): if "player=" in appURL: @@ -172,7 +177,6 @@ def updateLibOptions(val): #result,uselib = rdkv_performancelib.getDeviceConfigKeyValue(deviceConfigFile,"LOAD_USING_HLSLIB") updateOptions(lib_key+"("+uselib+")") - # Function to parser the web inspect json message and display the # console log def dispConsoleMessage(log): @@ -188,7 +192,6 @@ def dispConsoleMessage(log): def dispConsoleLog(log): console_methods = ["Console.messagesCleared","Console.messageRepeatCountUpdated"] try: - #if "Console.messageAdded" in log: # dispConsoleMessage(log) if "%" not in log: @@ -233,12 +236,12 @@ def socketConnectionEnableDisable(flag): global webkit_socket_conn webkit_socket_conn = flag -# Function to update webnspect port +# Function to update webinspect port def setWebKitSocketPort(port): global webkit_socket_port webkit_socket_port = port -# Function to create websocket connection to webki webinspect page +# Function to create websocket connection to webinspect page def createWebKitSocket(obj): print("\nInitiate Connection to Webinspect page (port:%s)..." %(webkit_socket_port)) socket = createEventListener(obj.IP,webkit_socket_port,[],"/devtools/page/1",False) @@ -246,9 +249,7 @@ def createWebKitSocket(obj): status = socket.getConnectionStatus() return status,socket - # Function to set Pre/Post requisites for executing media tests - def checkPluginStatus(obj,plugin): print("\nChecking %s Plugin Status..." %(plugin)) tdkTestObj = obj.createTestStep('rdkservice_getPluginStatus'); @@ -275,44 +276,8 @@ def setPluginState(obj,plugin,state): tdkTestObj.setResultStatus("FAILURE"); return "FAILURE" -def launchPlugin(obj,plugin,url): - print("\nLaunching %s using RDKShell..." %(plugin)) - url = url.replace('\"',"") - try: - result,base_path_from_config = rdkv_performancelib.getDeviceConfigKeyValue(deviceConfigFile,"TEST_STREAMS_BASE_PATH") - except: - base_path_from_config = "" - if base_path_from_config : - url = url.replace(test_streams_base_path,base_path_from_config); - tdkTestObj = obj.createTestStep('rdkservice_setValue') - params = '{"callsign":"'+plugin+'", "type":"'+plugin+'", "uri":"'+url+'"}' - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.launch") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - info = tdkTestObj.getResultDetails(); - if "SUCCESS" in result: - print("Resumed %s plugin " %(plugin)) - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(3) - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method",plugin+".1.url"); - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult() - new_url = tdkTestObj.getResultDetails(); - print("%s Plugin current url: %s" %(plugin,new_url)) - if "SUCCESS" in result and (new_url in url or url in new_url): - tdkTestObj.setResultStatus("SUCCESS") - return "SUCCESS" - else: - tdkTestObj.setResultStatus("FAILURE") - return "FAILURE" - else: - print("Unable to Resume %s plugin " %(plugin)) - tdkTestObj.setResultStatus("FAILURE") - return result - def launchApp(obj,app_id): + max_retries = 2 print(f"\nLaunching the app: {app_id}") tdkTestObj = obj.createTestStep('rdkservice_launch_app') tdkTestObj.addParameter("app_name", app_id) @@ -321,101 +286,20 @@ def launchApp(obj,app_id): if status == "SUCCESS": tdkTestObj.setResultStatus("SUCCESS") print(f"\nChecking if {app_id} is launched successfully") - # Wait for 2 seconds to load the app - time.sleep(2) - app_ids = rdkservice_get_loaded_apps() - if app_id in app_ids: - print(f"\nSuccessfully launched the app: {app_id}") - tdkTestObj.setResultStatus("SUCCESS") - return "SUCCESS" - else: - tdkTestObj.setResultStatus("FAILURE") - print(f"\nThe app {app_id} is not listed in LoadedApps, hence failed to launch\n") - return "FAILURE" - else: + for attempt in range(max_retries): + if app_id in rdkservice_get_loaded_apps(): + print(f"\nSuccessfully launched the app: {app_id}") + tdkTestObj.setResultStatus("SUCCESS") + return "SUCCESS" + if attempt < max_retries - 1: + time.sleep(3) tdkTestObj.setResultStatus("FAILURE") - print(f"\nFailed to launch the app: {app_id}\n") + print(f"\nThe app {app_id} is not listed in LoadedApps, hence failed to launch the app\n") return "FAILURE" - -def checkRDKShellClients(obj,plugin): - print("\nChecking RDKShell Clients...") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.getClients"); - tdkTestObj.executeTestCase("SUCCESS"); - result = tdkTestObj.getResult(); - details = tdkTestObj.getResultDetails(); - check_client = "" - if "SUCCESS" in result: - clients_list = ast.literal_eval(details)["clients"] - print("RDKShell Clients: %s" %(clients_list)) - for client in clients_list: - if client.lower() == plugin.lower(): - check_client = client - break; - if check_client != "": - tdkTestObj.setResultStatus("SUCCESS") - else: - tdkTestObj.setResultStatus("FAILURE") else: - print("Unable to get RDKShell Clients") tdkTestObj.setResultStatus("FAILURE") - - return result,check_client - -def checkClientZOrder(obj,client): - print("\nChecking Clients Z-Order...") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.getZOrder"); - tdkTestObj.executeTestCase("SUCCESS"); - result = tdkTestObj.getResult(); - details = tdkTestObj.getResultDetails(); - client_z_order_status = None - global next_z_order_client - next_z_order_client = None - if "SUCCESS" in result: - clients_list = ast.literal_eval(details)["clients"] - # remove unwanted process from z-order list - clients_list = exclude_from_zorder(clients_list) - print("Clients Z-Order: %s" %(clients_list)) - if len(clients_list) > 0: - tdkTestObj.setResultStatus("SUCCESS") - if clients_list[0] == client: - client_z_order_status = True - if len(clients_list) > 1: - next_z_order_client = clients_list[1] - else: - client_z_order_status = False - else: - print("Clients Z-Order list is empty") - tdkTestObj.setResultStatus("FAILURE") - else: - print("Unable to get Clients Z-Order") - tdkTestObj.setResultStatus("FAILURE") - - return result,client_z_order_status - -#remove unwanted processes from z-order list -def exclude_from_zorder(zorder): - new_zorder = [ element for element in zorder if element not in excluded_process_list ] - return new_zorder - -def checkWebkitReadyState(obj,result,webkit_client,webkit_z_order_status): - if "SUCCESS" in result and not webkit_z_order_status: - move_status = moveToFrontClient(obj,webkit_client) - if "SUCCESS" in move_status: - result,webkit_z_order_status = checkClientZOrder(obj,webkit_client) - if "SUCCESS" in result and webkit_z_order_status: - webkit_ready = True - else: - webkit_ready = False - else: - webkit_ready = False - elif "SUCCESS" in result and webkit_z_order_status: - webkit_ready = True - else: - webkit_ready = False - - return webkit_ready + print(f"\nFailed to launch the app: {app_id}\n") + return "FAILURE" def checkProcEntry(obj,validation_dict): tdkTestObj = obj.createTestStep('rdkv_media_checkProcEntry') @@ -438,49 +322,6 @@ def checkProcEntry(obj,validation_dict): tdkTestObj.setResultStatus(result); return info -def moveToFrontClient(obj,client): - print("\nMoving %s to front..." %(client)) - tdkTestObj = obj.createTestStep('rdkservice_setValue') - params = '{"client":"'+client+'"}' - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.moveToFront") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - info = tdkTestObj.getResultDetails(); - time.sleep(3) - if "SUCCESS" in result: - print("%s plugin moved to front" %(client)) - tdkTestObj.setResultStatus("SUCCESS"); - return "SUCCESS" - else: - print("Unable to move %s plugin to front" %(client)) - tdkTestObj.setResultStatus("FAILURE"); - return "FAILURE" - -# Function to send key code inputs to the RDKShell client -# Values must follow the pattern KeyName:KeyCode seperated by comma. Eg [ArrowLeft:37,ArrowDown:40] -def sendKeysToClient(obj,client,key_sequence): - status = "SUCCESS" - for key_info in key_sequence.split(","): - key_name = key_info.split(":")[0] - key_code = key_info.split(":")[1] - time.sleep(10) - tdkTestObj = obj.createTestStep('rdkservice_setValue') - params = '{"keys":[{"keyCode":'+key_code+',"modifiers": ["'+key_name+'"],"delay": 1.0,"callsign": "'+client+'"}]}' - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.generateKey") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - if "SUCCESS" in result: - print("Key: %s KeyCode: %s sent successfully" %(key_name,key_code)) - tdkTestObj.setResultStatus("SUCCESS"); - else: - print("Key: %s KeyCode: %s sending failed" %(key_name,key_code)) - tdkTestObj.setResultStatus("FAILURE"); - status = "FAILURE" - return status - - def checkDRMSupported(obj,drm): result,ocdm_status = checkPluginStatus(obj,"OCDM"); if str(ocdm_status) != "None": @@ -518,7 +359,6 @@ def checkDRMSupported(obj,drm): print("OCDM plugin not available. DRM not supported") return "NA" - def getConnectedVideoDisplay(obj): global video_port print("\nChecking Connected video displays...") @@ -618,7 +458,6 @@ def checkSupportedAudioModes(obj,mode): tdkTestObj.setResultStatus(check_status) return mode,check_status - def checkSupportedAudioCapabilities(obj,mode): print("\nChecking Supported Audio capabilities...") tdkTestObj = obj.createTestStep('rdkservice_setValue'); @@ -649,7 +488,6 @@ def checkSupportedAudioCapabilities(obj,mode): tdkTestObj.setResultStatus(check_status) return check_status - def checkSupportedResolution(obj,res): print("\nChecking Supported Resolutions...") tdkTestObj = obj.createTestStep('rdkservice_setValue'); @@ -813,7 +651,6 @@ def setCurrentResolution(obj,res): set_status = "FAILURE" tdkTestObj.setResultStatus("FAILURE") print("Unable to set the resolution") - return set_status def setAudioAtmosOutputMode(obj,enable): @@ -833,7 +670,6 @@ def setAudioAtmosOutputMode(obj,enable): tdkTestObj.setResultStatus("FAILURE"); return "FAILURE" - # Function to set the resolution pre-requisites def setResolutionPreRequisites(obj,res): result,ds_status = checkPluginStatus(obj,"org.rdk.DisplaySettings"); @@ -905,7 +741,6 @@ def setSoundModePostRequisites(obj): else: return True - # Function to set the atmos o/p mode pre-requisites def setAudioAtmosOutputModePreRequisites(obj,mode): result,ds_status = checkPluginStatus(obj,"org.rdk.DisplaySettings"); @@ -931,7 +766,6 @@ def setAudioAtmosOutputModePreRequisites(obj,mode): else: return False - # Function to set the primary pre-requisites def setMediaTestPreRequisites(obj,app_id,app_download_url,get_proc_info=True): pre_requisite_status = "SUCCESS" @@ -1014,7 +848,6 @@ def setMediaTestPreRequisites(obj,app_id,app_download_url,get_proc_info=True): return pre_requisite_status,webkit_console_socket,validation_dict - def monitorVideoTest(obj,webkit_console_socket,validation_dict,check_pattern,timeout=60): video_test_result = "" proc_check_list = [] @@ -1022,10 +855,8 @@ def monitorVideoTest(obj,webkit_console_socket,validation_dict,check_pattern,tim video_test_result,proc_check_list = monitorVideoTestUsingWebInspect(obj,webkit_console_socket,validation_dict,check_pattern,timeout) elif logging_method == "REST_API": video_test_result,proc_check_list = monitorVideoTestUsingRestAPI(obj,validation_dict,check_pattern,timeout) - return video_test_result,proc_check_list - def monitorVideoTestUsingRestAPI(obj,validation_dict,check_pattern,timeout): wait_time = timeout/60 continue_count = 0 @@ -1113,7 +944,6 @@ def monitorVideoTestUsingRestAPI(obj,validation_dict,check_pattern,timeout): return video_test_result,proc_check_list - # Function to monitor video test app progress and get the result def monitorVideoTestUsingWebInspect(obj,webkit_console_socket,validation_dict,check_pattern,timeout=60): wait_time = timeout/60 @@ -1168,8 +998,6 @@ def monitorVideoTestUsingWebInspect(obj,webkit_console_socket,validation_dict,ch return video_test_result,proc_check_list - - # Function to monitor animation test app progress and get the result def monitorAnimationTest(obj,webkit_console_socket,check_pattern,timeout=60): animation_test_result = "" @@ -1180,7 +1008,6 @@ def monitorAnimationTest(obj,webkit_console_socket,check_pattern,timeout=60): animation_test_result,diagnosis_info = monitorAnimationTestUsingRestAPI(obj,check_pattern,timeout) return animation_test_result,diagnosis_info - def monitorAnimationTestUsingRestAPI(obj,check_pattern,timeout): wait_time = timeout/60 continue_count = 0 @@ -1249,8 +1076,6 @@ def monitorAnimationTestUsingRestAPI(obj,check_pattern,timeout): return animation_test_result,diagnosis_info - - # Function to monitor animation test app progress and get the result def monitorAnimationTestUsingWebInspect(obj,webkit_console_socket,check_pattern,timeout=60): wait_time = timeout/60 @@ -1288,9 +1113,6 @@ def monitorAnimationTestUsingWebInspect(obj,webkit_console_socket,check_pattern, return animation_test_result,diagnosis_info - - - # Function to monitor conformance test app progress and get the result def monitorConformanceTest(obj,webkit_console_socket,timeout=60): wait_time = timeout/60 @@ -1397,7 +1219,6 @@ def getTestURLs(players_list,appArguments): test_urls.append(test_url) return test_urls - # Function to set the primary post-requisites def setMediaTestPostRequisites(app_id): post_requisite_status = "SUCCESS" @@ -1407,7 +1228,6 @@ def setMediaTestPostRequisites(app_id): post_requisite_status = "FAILURE" return post_requisite_status - # Function to validate the Latency time def validateLatency(obj): loaded_time = getTimeFromMsg(evt_lst[0]) @@ -1433,24 +1253,6 @@ def validateLatency(obj): test_result = "FAILURE" return test_result -def destroyPlugin(obj,plugin): - print("\nDestroying %s using RDKShell..." %(plugin)) - tdkTestObj = obj.createTestStep('rdkservice_setValue') - params = '{"callsign":"'+plugin+'"}' - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.destroy") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - info = tdkTestObj.getResultDetails(); - if "SUCCESS" in result: - print("Destroyed %s plugin " %(plugin)) - tdkTestObj.setResultStatus("SUCCESS") - return "SUCCESS" - else: - print("Unable to Destroy %s plugin " %(plugin)) - tdkTestObj.setResultStatus("FAILURE") - return "FAILURE" - def stop_nginx(): """Stops Nginx running in the Nginx container via SSH.""" try: @@ -1558,7 +1360,7 @@ def printDRMObservation(app_log_file, observe_duration=60): print("[DRM OBSERVE] Playback did NOT reach clear duration") print("[DRM OBSERVE] NOTE:") - print(" 'Video Player Encrypted' indicates DRM presence") - print(" NOT actual encrypted segment playback") + print("'Video Player Encrypted' indicates DRM presence") + print("NOT actual encrypted segment playback") print("--------------------------------------------------") From e585427b20d761c043aaf63ede9d2fbaf2e90018 Mon Sep 17 00:00:00 2001 From: asures684 Date: Tue, 2 Jun 2026 14:27:48 +0530 Subject: [PATCH 2/9] TDK-11955: MVS framework cleanup & fixes for app loading issue [Sprint M149] Reason for change: MVS Framework Updates Test Procedure: Verify with TDK TM Risks: None Signed-off-by: Aromal Suresh --- ...DKV_CERT_MVS_Animation_Average_Device_CPULoad.py | 6 ++---- .../RDKV_CERT_MVS_Animation_Average_FPS.py | 6 ++---- ...KV_CERT_MVS_Animation_Check_Graphics_workload.py | 6 ++---- .../RDKV_CERT_MVS_Animation_Complex_Average_FPS.py | 8 +++----- ...CERT_MVS_Animation_Object_Compare_ScreenShots.py | 5 ++--- .../RDKV_CERT_MVS_Animation_Objects_Average_FPS.py | 6 ++---- .../RDKV_CERT_MVS_Animation_Operations.py | 6 ++---- .../RDKV_CERT_MVS_Animation_PlayPause_STRESS.py | 6 ++---- ...V_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py | 6 ++---- .../RDKV_CERT_MVS_Animation_Simple_Average_FPS.py | 6 ++---- .../RDKV_CERT_MVS_Animation_StartStop_STRESS.py | 6 ++---- .../RDKV_CERT_MVS_Animation_Texts_Average_FPS.py | 6 ++---- .../RDKV_CERT_MVS_Video_FF2X_Play_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264_Main.py | 9 ++------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF2X_Play_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MP4.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264_Main.py | 9 ++------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF3X_Play_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MP4.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264_Main.py | 9 ++------- .../rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF4X_Play_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MP4.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_DASH_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_FF_STRESS_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_VP9.py | 12 +++--------- ...KV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H264_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H265_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF2X_Play_AC3_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_AAC_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF2X_Play_AV1_OPUS_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF2X_Play_AV1_VORBIS_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_VP9.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF2X_Play_H264_AC3_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF2X_Play_H264_MP3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_HEVC.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP8_WEBM.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP9_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP8_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP9_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H264_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H265_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF3X_Play_AC3_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_AAC_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF3X_Play_AV1_OPUS_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF3X_Play_AV1_VORBIS_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF3X_Play_H264_AC3_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF3X_Play_H264_MP3_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP8_WEBM.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP9_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP8_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP9_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H264_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H265_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF4X_Play_AC3_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_AAC_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF4X_Play_AV1_OPUS_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF4X_Play_AV1_VORBIS_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF4X_Play_H264_AC3_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_FF4X_Play_H264_MP3_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP8_WEBM.py | 8 +++----- ...V_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP9_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP8_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP9_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Mute_Unmute_AAC_H264_MP4.py | 8 +++----- ..._CERT_MVS_Video_HTML_Mute_Unmute_AAC_H265_MP4.py | 8 +++----- ..._CERT_MVS_Video_HTML_Mute_Unmute_AC3_H265_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_Mute_Unmute_AV1_AAC_MP4.py | 8 +++----- ...CERT_MVS_Video_HTML_Mute_Unmute_AV1_OPUS_WEBM.py | 8 +++----- ...RT_MVS_Video_HTML_Mute_Unmute_AV1_VORBIS_WEBM.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_H264.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_HEVC.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_VP9.py | 8 +++----- ..._CERT_MVS_Video_HTML_Mute_Unmute_H264_AC3_MP4.py | 8 +++----- ..._CERT_MVS_Video_HTML_Mute_Unmute_H264_MP3_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_HEVC.py | 8 +++----- ...CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP8_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP9_WEBM.py | 8 +++----- ...RT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP8_WEBM.py | 8 +++----- ...RT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP9_WEBM.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_AAC_H264_MP4_2160p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_480p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_720p.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_AAC_H265_MP4_2160p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_480p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_720p.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_AC3_H265_MP4_2160p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_480p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_720p.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_1080p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_2160p.py | 8 +++----- ...ERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_480p.py | 8 +++----- ...ERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_720p.py | 8 +++----- ...V_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM.py | 8 +++----- ..._MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_2160p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_480p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_720p.py | 8 +++----- ...CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM.py | 8 +++----- ...VS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_1080p.py | 8 +++----- ...VS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_2160p.py | 8 +++----- ...MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_480p.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_VP9.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_H264_AC3_MP4_2160p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_480p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_720p.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_H264_MP3_MP4_2160p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_480p.py | 8 +++----- ...RT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_720p.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM.py | 8 +++----- ..._MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_2160p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_480p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_720p.py | 8 +++----- ..._MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_2160p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_480p.py | 8 +++----- ...T_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_720p.py | 8 +++----- ...CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM.py | 8 +++----- ...VS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_2160p.py | 8 +++----- ...MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_480p.py | 8 +++----- ...MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_720p.py | 8 +++----- ...CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM.py | 8 +++----- ...VS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_2160p.py | 8 +++----- ...MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_480p.py | 8 +++----- ...MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_720p.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_PlayPause_Vorbis_Webm.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_PlayPause_Webm.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_AAC_H265_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_AC3_H265_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_AV1_AAC_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_AV1_OPUS_WEBM.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Play_AV1_VORBIS_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_DASH_VP9.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_H264_AC3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_H264_MP3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_HLS_HEVC.py | 8 +++----- .../rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_OPUS_VP8_WEBM.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP8_WEBM.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP9_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Play_Webm.py | 8 +++----- ...CERT_MVS_Video_HTML_SHAKA_FF2X_Play_DASH_H264.py | 8 +++----- ..._CERT_MVS_Video_HTML_SHAKA_FF2X_Play_HLS_H264.py | 8 +++----- ...RT_MVS_Video_HTML_SHAKA_Mute_Unmute_DASH_H264.py | 8 +++----- ...ERT_MVS_Video_HTML_SHAKA_Mute_Unmute_HLS_H264.py | 8 +++----- ...CERT_MVS_Video_HTML_SHAKA_PlayPause_DASH_H264.py | 8 +++----- ..._CERT_MVS_Video_HTML_SHAKA_PlayPause_HLS_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_SHAKA_Play_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_SHAKA_Play_HLS_H264.py | 8 +++----- ..._CERT_MVS_Video_HTML_SHAKA_Seek_BWD_DASH_H264.py | 8 +++----- ...V_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_HLS_H264.py | 8 +++----- ..._CERT_MVS_Video_HTML_SHAKA_Seek_FWD_DASH_H264.py | 8 +++----- ...V_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_HLS_H264.py | 8 +++----- ..._CERT_MVS_Video_HTML_SHAKA_Seek_Pos_DASH_H264.py | 8 +++----- ...V_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_HLS_H264.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H264_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_BWD_AC3_H265_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_AAC_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_BWD_AV1_OPUS_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_BWD_AV1_VORBIS_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_VP9.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_BWD_H264_AC3_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_BWD_H264_MP3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP8_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP9_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP8_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP9_WEBM.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H264_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_FWD_AC3_H265_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_AAC_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_FWD_AV1_OPUS_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_FWD_AV1_VORBIS_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_VP9.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_FWD_H264_AC3_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_FWD_H264_MP3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP8_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP9_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP8_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP9_WEBM.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H264_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_Pos_AC3_H265_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_AAC_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_Pos_AV1_OPUS_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_Pos_AV1_VORBIS_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_VP9.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_Pos_H264_AC3_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Seek_Pos_H264_MP3_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP8_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP9_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP8_WEBM.py | 8 +++----- ..._CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP9_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Setvolume_AAC_H264_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Setvolume_AAC_H265_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Setvolume_AC3_H265_MP4.py | 8 +++----- ...DKV_CERT_MVS_Video_HTML_Setvolume_AV1_AAC_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_Setvolume_AV1_OPUS_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_Setvolume_AV1_VORBIS_WEBM.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Setvolume_H264_AC3_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_HTML_Setvolume_H264_MP3_MP4.py | 8 +++----- ...V_CERT_MVS_Video_HTML_Setvolume_OPUS_VP8_WEBM.py | 8 +++----- ...V_CERT_MVS_Video_HTML_Setvolume_OPUS_VP9_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_Setvolume_VORBIS_VP8_WEBM.py | 8 +++----- ...CERT_MVS_Video_HTML_Setvolume_VORBIS_VP9_WEBM.py | 8 +++----- .../RDKV_CERT_MVS_Video_Loop_Play_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_Audio_Only.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_DASH_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Loop_Play_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MP4.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_4K_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_AV1_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_Audio_Only.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264.py | 12 +++--------- ...DKV_CERT_MVS_Video_Mute_UnMute_DASH_H264_Main.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_Main10.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_MP4.py | 12 +++--------- ...RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_AV1.py | 12 +++--------- ...DKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_DASH.py | 12 +++--------- ...RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_HLS.py | 12 +++--------- ...RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_AV1.py | 12 +++--------- ..._CERT_MVS_Video_Mute_UnMute_STRESS_Audio_Only.py | 12 +++--------- ...V_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264.py | 12 +++--------- ...T_MVS_Video_Mute_UnMute_STRESS_DASH_H264_Main.py | 9 ++------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC.py | 12 +++--------- ...CERT_MVS_Video_Mute_UnMute_STRESS_HEVC_Main10.py | 9 ++------- ...KV_CERT_MVS_Video_Mute_UnMute_STRESS_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MP4.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Mute_UnMute_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AAC.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_AV1_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_Audio_Only.py | 9 ++------- .../RDKV_CERT_MVS_Video_PlayPause_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_DASH_H264_Main.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_HEVC_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_HEVC_Main10.py | 9 ++------- .../RDKV_CERT_MVS_Video_PlayPause_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MP4.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_MPEG_TS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_Opus.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_AV1.py | 12 +++--------- ...KV_CERT_MVS_Video_PlayPause_STRESS_Audio_Only.py | 12 +++--------- ...DKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264.py | 12 +++--------- ...ERT_MVS_Video_PlayPause_STRESS_DASH_H264_Main.py | 9 ++------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC.py | 12 +++--------- ...RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_MKV.py | 11 +++-------- ...V_CERT_MVS_Video_PlayPause_STRESS_HEVC_Main10.py | 9 ++------- ...RDKV_CERT_MVS_Video_PlayPause_STRESS_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_MKV.py | 11 +++-------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_MP4.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_MPEG_TS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_Opus.py | 12 +++--------- .../RDKV_CERT_MVS_Video_PlayPause_STRESS_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_4K_AV1.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_4K_DASH.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_4K_HLS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_AAC.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_AV1_23FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_AV1_24FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_AV1_25FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_AV1_30FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_AV1_50FPS.py | 11 +++-------- .../RDKV_CERT_MVS_Video_Play_AV1_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Audio_Only.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_1080i.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_1080p.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_480i.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_480p.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_720p.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_H264_Main.py | 9 ++------- .../RDKV_CERT_MVS_Video_Play_DASH_H264_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DASH_SegmentBase.py | 8 +++----- .../RDKV_CERT_MVS_Video_Play_DASH_SegmentList.py | 8 +++----- ...RDKV_CERT_MVS_Video_Play_DASH_SegmentTemplate.py | 8 +++----- ...RDKV_CERT_MVS_Video_Play_DASH_SegmentTimeline.py | 8 +++----- ...ERT_MVS_Video_Play_DASH_SoundMode_AtmosOutput.py | 12 +++--------- ...RT_MVS_Video_Play_DASH_SoundMode_DolbyDigital.py | 13 ++++--------- ...DKV_CERT_MVS_Video_Play_DASH_SoundMode_Stereo.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_DTS_Audio.py | 11 +++-------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Full_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_Audio_Only.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_DASH_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Full_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Full_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MP4.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Full_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_H263.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HDR.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_23FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_24FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_25FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_30FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_50FPS.py | 11 +++-------- .../RDKV_CERT_MVS_Video_Play_HEVC_60FPS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HEVC_Main10.py | 9 ++------- .../RDKV_CERT_MVS_Video_Play_HLS_1080i.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_HLS_1080p.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480i.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480p.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_720p.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Live_DASH.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Live_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_M4A_Audio.py | 11 +++-------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP3_Audio.py | 11 +++-------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_MP4.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_23FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_24FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_25FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_29FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_30FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_50FPS.py | 11 +++-------- .../RDKV_CERT_MVS_Video_Play_MP4_59FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_MP4_60FPS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG_TS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_Opus.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH.py | 12 +++--------- ...V_CERT_MVS_Video_Play_PlayReady_CBCS_DASH_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_DASH_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_DASH_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_HLS_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_PlayReady_HLS_HEVC.py | 12 +++--------- ...V_CERT_MVS_Video_Play_PlayReady_MultiKey_DASH.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_PlayReady_MultiKey_HLS.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_VP8.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Play_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_23FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_24FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_25FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_29FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_30FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_50FPS.py | 11 +++-------- .../RDKV_CERT_MVS_Video_Play_VP9_59FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_VP9_60FPS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_WAV_PCM_Audio.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AC3.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AV1.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_EC3.py | 12 +++--------- ...V_CERT_MVS_Video_Play_Widevine_CBCS_DASH_HEVC.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_CBCS_HLS_HEVC.py | 12 +++--------- ...T_MVS_Video_Play_Widevine_Clear_Lead_DASH_AAC.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_DASH_AC3.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_DASH_AV1.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_DASH_EC3.py | 13 ------------- ..._Video_Play_Widevine_Clear_Lead_DASH_HEVC_AAC.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_DASH_VP9.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_HLS_H264.py | 13 ------------- ...T_MVS_Video_Play_Widevine_Clear_Lead_HLS_HEVC.py | 13 ------------- ...o_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AAC.py | 12 +++--------- ...o_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AC3.py | 12 +++--------- ...o_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AV1.py | 12 +++--------- ...o_Play_Widevine_Cypt_Skip_Byte_Block_DASH_EC3.py | 12 +++--------- ...y_Widevine_Cypt_Skip_Byte_Block_DASH_HEVC_AAC.py | 12 +++--------- ...y_Widevine_Cypt_Skip_Byte_Block_DASH_VP9_OPUS.py | 12 +++--------- ...ay_Widevine_Cypt_Skip_Byte_Block_HLS_H264_AAC.py | 12 +++--------- ...ay_Widevine_Cypt_Skip_Byte_Block_HLS_HEVC_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_OPUS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP8.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_HLS_AAC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Play_Widevine_HLS_HEVC.py | 12 +++--------- ...KV_CERT_MVS_Video_Play_Widevine_MultiKey_DASH.py | 12 +++--------- ...DKV_CERT_MVS_Video_Play_Widevine_MultiKey_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_SHAKA_FF2X_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_FF2X_HLS_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_FF2X_Play_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_FF3X_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_FF3X_HLS_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_FF3X_Play_DASH_H264_Main.py | 5 ++--- ...RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_HLS_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_HLS_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_Loop_Play_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Loop_Play_HLS_H264.py | 8 +++----- ...KV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264.py | 8 +++----- ...RT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC_Main10.py | 8 +++----- ...DKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MP4.py | 8 +++----- ..._MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264.py | 8 +++----- ...Video_SHAKA_Mute_UnMute_STRESS_DASH_H264_Main.py | 5 ++--- ...VS_Video_SHAKA_Mute_UnMute_STRESS_HEVC_Main10.py | 5 ++--- ...T_MVS_Video_SHAKA_Mute_UnMute_STRESS_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_VP9.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_PlayPause_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_SHAKA_PlayPause_HEVC_Main10.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_PlayPause_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_PlayPause_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_PlayPause_MP4.py | 8 +++----- ...RT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264.py | 8 +++----- ...S_Video_SHAKA_PlayPause_STRESS_DASH_H264_Main.py | 5 ++--- ..._MVS_Video_SHAKA_PlayPause_STRESS_HEVC_Main10.py | 5 ++--- ...ERT_MVS_Video_SHAKA_PlayPause_STRESS_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_PlayPause_VP9.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_4K_DASH.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_4K_HLS.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_DASH_1080p.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264_Main.py | 5 ++--- ...S_Video_SHAKA_Play_DASH_SoundMode_AtmosOutput.py | 5 ++--- ..._Video_SHAKA_Play_DASH_SoundMode_DolbyDigital.py | 5 ++--- ...RT_MVS_Video_SHAKA_Play_DASH_SoundMode_Stereo.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_4K_AV1.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_AV1.py | 8 +++----- ...DKV_CERT_MVS_Video_SHAKA_Play_Full_Audio_Only.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_Play_Full_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Full_VP9.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_HEVC_Main10.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_HLS_1080p.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_Live_DASH.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_Live_HLS.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Play_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_MP4.py | 8 +++----- ...CERT_MVS_Video_SHAKA_Play_PlayReady_CBCS_DASH.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AAC.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AV1.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_EC3.py | 8 +++----- ...CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_H264.py | 8 +++----- ...V_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_AAC.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Play_VP9.py | 7 +++---- ...V_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_EC3.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Play_Widevine_DASH_H264.py | 8 +++----- ...KV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_AAC.py | 8 +++----- ...V_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_H264.py | 8 +++----- ...V_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_HEVC.py | 8 +++----- ...ERT_MVS_Video_SHAKA_Seek_BWD_STRESS_DASH_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264.py | 8 +++----- ...V_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Seek_FF_HLS_H264.py | 8 +++----- ...ERT_MVS_Video_SHAKA_Seek_FWD_STRESS_DASH_H264.py | 8 +++----- ...CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264.py | 8 +++----- ..._CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_HLS_H264.py | 8 +++----- ...RDKV_CERT_MVS_Video_SHAKA_TrickPlay_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_SHAKA_TrickPlay_HLS_H264.py | 8 +++----- ..._MVS_Video_SHAKA_TrickPlay_PlayReady_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_AV1.py | 12 +++--------- ...RDKV_CERT_MVS_Video_Seek_BWD_STRESS_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_BWD_STRESS_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_DASH_H264_Main.py | 9 ++------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FF_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_AV1.py | 12 +++--------- ...RDKV_CERT_MVS_Video_Seek_FWD_STRESS_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_EC3.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HLS_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_FWD_STRESS_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264_Main.py | 9 ++------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_Seek_Pos_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_MKV.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_VP9.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_4K_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_4K_DASH.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_4K_HLS.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_4K_VP9.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_AV1.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_DASH_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_EC3.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HDR.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_HEVC.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_HEVC_MKV.py | 12 +++--------- .../RDKV_CERT_MVS_Video_TrickPlay_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_MKV.py | 12 +++--------- ..._CERT_MVS_Video_TrickPlay_PlayReady_DASH_H264.py | 12 +++--------- ...V_CERT_MVS_Video_TrickPlay_PlayReady_HLS_H264.py | 12 +++--------- .../rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_VP9.py | 12 +++--------- ...CERT_MVS_Video_UVE_AAMP_Change_Audio_Language.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Change_Text_Track_DASH.py | 8 +++----- ...Video_UVE_AAMP_Change_Video_Bitrate_DASH_H264.py | 8 +++----- ..._Video_UVE_AAMP_Change_Video_Bitrate_HLS_H264.py | 8 +++----- ...ideo_UVE_AAMP_Current_Audio_Bitrate_Dash_H264.py | 8 +++----- ...Video_UVE_AAMP_Current_Audio_Bitrate_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Get_Audio_Info.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Get_Manifest.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Get_Playback_Statistics.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AV1.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Latency_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HEVC.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Latency_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_AV1.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_DASH.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AC3.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AV1_AAC.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Mute_Seek_DASH_H264_AAC.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC_MKV.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_Seek_HLS_H264_AAC.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MP4.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_AV1.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_DASH.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AC3.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AV1_AAC.py | 8 +++----- ..._MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_AAC.py | 8 +++----- ...MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HDR.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_AAC.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_MKV.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_Main10.py | 5 ++--- ...T_MVS_Video_UVE_AAMP_Mute_UnMute_HLS_H264_AAC.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MP4.py | 8 +++----- ..._MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_AV1.py | 8 +++----- ...MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_DASH.py | 8 +++----- ..._MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_HLS.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AC3.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AV1.py | 8 +++----- ...deo_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_AAC.py | 8 +++----- ...eo_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_Main.py | 5 ++--- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_EC3.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HDR.py | 8 +++----- ...VS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_AAC.py | 8 +++----- ...Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_Main10.py | 5 ++--- ...ideo_UVE_AAMP_Mute_UnMute_STRESS_HLS_H264_AAC.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MKV.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MP4.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_AV1.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_DASH.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AV1.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264.py | 8 +++----- ...T_MVS_Video_UVE_AAMP_PlayPause_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_MKV.py | 8 +++----- ...CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_Main10.py | 5 ++--- ...KV_CERT_MVS_Video_UVE_AAMP_PlayPause_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MP4.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_AV1.py | 8 +++----- ...T_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_DASH.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_HLS.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AC3.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AV1.py | 8 +++----- ...MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264.py | 8 +++----- ...ideo_UVE_AAMP_PlayPause_STRESS_DASH_H264_Main.py | 5 ++--- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_EC3.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HDR.py | 8 +++----- ...CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC.py | 8 +++----- ..._MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_MKV.py | 8 +++----- ...S_Video_UVE_AAMP_PlayPause_STRESS_HEVC_Main10.py | 5 ++--- ..._MVS_Video_UVE_AAMP_PlayPause_STRESS_HLS_H264.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MKV.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_AV1.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_23FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_24FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_25FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_30FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_50FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_60FPS.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_AC3.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_AV1.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_H265.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_DASH_H264_HLS_H264.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_Main.py | 5 ++--- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_EC3.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_AV1.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AV1.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Play_Full_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC_MKV.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Play_Full_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_H265_AV1.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_23FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_24FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_25FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_30FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_50FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_60FPS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_MKV.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_Main10.py | 5 ++--- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_HLS_H264_DASH_H264.py | 8 +++----- ..._CERT_MVS_Video_UVE_AAMP_Play_Invalid_License.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_URL.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Play_MP4.py | 8 +++----- ...E_AAMP_Play_MultiDRM_DASH_Preferred_PlayReady.py | 8 +++----- ...VE_AAMP_Play_MultiDRM_DASH_Preferred_Widevine.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AC3.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AV1.py | 8 +++----- ...T_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_H264.py | 8 +++----- ...T_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_HEVC.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_H264.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_HEVC.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_AC3.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_H264.py | 8 +++----- ...RT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_HEVC.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_H264.py | 8 +++----- ...ERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_HEVC.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_AV1.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AV1.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC_MKV.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_AV1.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AV1.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC_MKV.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MP4.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_AV1.py | 8 +++----- ...RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_DASH.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_HLS.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AV1.py | 8 +++----- ...KV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_DASH_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_EC3.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HDR.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC_MKV.py | 8 +++----- ...DKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HLS_H264.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MKV.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MP4.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Set_Preferred_Audio.py | 8 +++----- ...V_CERT_MVS_Video_UVE_AAMP_Set_Thumbnail_Track.py | 8 +++----- .../RDKV_CERT_MVS_Video_UVE_AAMP_Set_Video_Track.py | 8 +++----- 854 files changed, 2482 insertions(+), 5544 deletions(-) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py index ff90b2be..7574cee2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py @@ -118,8 +118,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) if pre_requisite_status == "SUCCESS": @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py index 98344f73..3f150f88 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py @@ -119,8 +119,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) config_status = "SUCCESS" @@ -188,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app utl from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py index 59d206a9..0ec23a9a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py @@ -120,8 +120,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.multi_animation_app_id,MediaValidationVariables.multi_animation_app_download_url) config_status = "SUCCESS" @@ -258,8 +257,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.multi_animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py index ed750147..1e23b313 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py @@ -121,9 +121,8 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit insatnce via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and - # disabling proc validation + # Setting the pre-requisites for media test. Launching the required test app via AppManager and + # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.object_animation_app_id,MediaValidationVariables.object_animation_app_download_url) config_status = "SUCCESS" conf_file,result = getDeviceConfigFile(obj.realpath) @@ -191,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.object_animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py index 4cb4d919..1c390103 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.object_animation_app_id,MediaValidationVariables.object_animation_app_download_url) @@ -241,7 +240,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and + # Setting the post-requisites for media test.Removing app url from webkit instance and # moving next high z-order app to front (residentApp if its active) post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.object_animation_app_id) if post_requisite_status == "SUCCESS": diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py index 8fbf9f1b..592afb4f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py @@ -121,8 +121,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.object_animation_app_id,MediaValidationVariables.object_animation_app_download_url) config_status = "SUCCESS" @@ -190,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.object_animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py index 8fba5185..6eb80b11 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py index ede21d58..6d1ccd29 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py @@ -119,8 +119,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) if pre_requisite_status == "SUCCESS": @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py index 1be32829..62746117 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py @@ -121,8 +121,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); socketConnectionEnableDisable(False); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) config_status = "SUCCESS" @@ -192,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py index 71584431..36836d16 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py @@ -121,8 +121,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.object_animation_app_id,MediaValidationVariables.object_animation_app_download_url) config_status = "SUCCESS" @@ -191,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.object_animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py index 42f05fa2..3106e7f9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py @@ -119,8 +119,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.animation_app_id,MediaValidationVariables.animation_app_download_url) if pre_requisite_status == "SUCCESS": @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py index 7faccc39..4b2ecb0f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py @@ -121,8 +121,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_lightning) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.object_animation_app_id,MediaValidationVariables.object_animation_app_download_url) config_status = "SUCCESS" @@ -191,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.object_animation_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_AV1.py index 75def9d6..cfd552ca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_DASH.py index e0e130eb..91fec0b1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_HLS.py index e3f7b7fe..17a64256 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_VP9.py index bfc064b2..9fa33039 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_4K_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_AV1.py index 6c59fa62..f7310729 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264.py index b21d333b..fab10936 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264_Main.py index dd3e6fc1..8ce67269 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -81,7 +80,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -104,10 +103,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_EC3.py index 35229dea..fa992980 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HDR.py index 4ecc8a9d..84594e56 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HDR.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC.py index abe3d187..eb4eb4ce 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC_MKV.py index c2b37ebd..d0c6d2e0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HEVC_MKV.py @@ -110,8 +110,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HLS_H264.py index 737a40eb..eedc4e0d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MKV.py index a73c7e22..55ba2b18 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MP4.py index 3282d66f..bdacff23 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_MP4.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_VP9.py index c8ecdcde..e20887b8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF2X_Play_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_AV1.py index 05703f37..dc05f23a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_AV1.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_DASH.py index 7708cb32..3c7813ec 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_DASH.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_HLS.py index e245c649..2cc22842 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_HLS.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_VP9.py index 208c0a60..1a2be949 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_4K_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_AV1.py index 5911f184..2fd0fd66 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_AV1.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264.py index 3797f366..da08705e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264.py @@ -130,8 +130,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264_Main.py index c827d9d1..5d13a361 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_DASH_H264_Main.py @@ -56,8 +56,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -95,7 +94,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -118,10 +117,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_EC3.py index 7c660659..4efb2502 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_EC3.py @@ -129,8 +129,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -168,7 +167,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -191,10 +190,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -202,8 +197,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HDR.py index 8fb8d2d7..628d5d36 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HDR.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mov&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC.py index e30c312f..1aa79b8d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC_MKV.py index 4d183445..9a3124fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HEVC_MKV.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HLS_H264.py index 2196610e..4d5103a0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_HLS_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MKV.py index 9c80d241..5b045403 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MKV.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MP4.py index 98af5298..1fec489e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_MP4.py @@ -130,8 +130,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_VP9.py index e64464a5..d514ef1d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF3X_Play_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_DASH.py index 560abd25..c1a0a9a0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_DASH.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_HLS.py index ed283b82..97be252d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_HLS.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_VP9.py index 28b6bfa3..1a150346 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_4K_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_AV1.py index ef2eed65..4434e9e2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_AV1.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264.py index 194ac7ce..50bbbd73 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264_Main.py index 1bfd99cb..2f7ec6a5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_DASH_H264_Main.py @@ -56,8 +56,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -96,7 +95,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -119,10 +118,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_EC3.py index 1126a87f..9033670b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_EC3.py @@ -129,8 +129,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HEVC.py index 2f1339ed..ffd3c7b2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HEVC.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HLS_H264.py index 044bda8a..0d90ae5a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_HLS_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MKV.py index 0a05793b..5dafc1a9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MKV.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MP4.py index e88f3381..b7f3eba7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_MP4.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_VP9.py index e09d4f96..954e745c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF4X_Play_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_DASH.py index 078b6f0f..d3272f37 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_DASH.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_HLS.py index d1976d0e..ef3bc2bb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_HLS.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_VP9.py index bb511511..bbaf4b0b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_4K_VP9.py @@ -128,8 +128,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -173,7 +172,7 @@ #url=.webm&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -196,10 +195,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -207,8 +202,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_AV1.py index 627ccc07..0affa50e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_AV1.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_DASH_H264.py index 9518b7ba..b326da05 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_DASH_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -175,7 +174,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -198,10 +197,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -209,8 +204,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_EC3.py index 9f50677b..7cd1531c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_EC3.py @@ -129,8 +129,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -173,7 +172,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -196,10 +195,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -207,8 +202,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HEVC.py index 859f93d5..ee9e5e1a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HEVC.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -177,7 +176,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -200,10 +199,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -211,8 +206,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HLS_H264.py index 67f666db..8f24f421 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_HLS_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -175,7 +174,7 @@ #url=.m3u8&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -198,10 +197,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -209,8 +204,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_MKV.py index 5dbb2bbf..81f66e26 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_MKV.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_VP9.py index f7798555..0df004b2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_FF_STRESS_VP9.py @@ -128,8 +128,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -173,7 +172,7 @@ #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -196,10 +195,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -207,8 +202,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H264_MP4.py index e3fbc65b..a222acbf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H264_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H265_MP4.py index 0e7585df..5bc7f3e8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AAC_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AC3_H265_MP4.py index 795c8e3c..cb6c9702 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AC3_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_AAC_MP4.py index 149fbff6..c726bb39 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_AAC_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_OPUS_WEBM.py index 76d0c2ba..b34f0ecd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_OPUS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_VORBIS_WEBM.py index 478fd227..0cfce037 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_AV1_VORBIS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_H264.py index 46964948..2c1f1112 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_HEVC.py index ba5e6b8c..e1cf5a41 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_VP9.py index 27b33bf2..d3035def 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_AC3_MP4.py index 39a8ad8e..4b4e7d0a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_AC3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_MP3_MP4.py index 96336a0f..3a998717 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_H264_MP3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_H264.py index 0baea4e7..b6ec3d4e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_HEVC.py index c17e5e05..830c731a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP8_WEBM.py index 41d3baa6..1cbae8b9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP9_WEBM.py index 0aba3beb..68b7a3ed 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_OPUS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP8_WEBM.py index 821e1fd5..db142ceb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP9_WEBM.py index b873c9fa..3609b215 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF2X_Play_VORBIS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H264_MP4.py index 6310b019..fb245171 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H264_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H265_MP4.py index 0555f926..6e7ef10d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AAC_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AC3_H265_MP4.py index 20daa6ff..2ed074af 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AC3_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_AAC_MP4.py index 22b67542..576ac149 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_AAC_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_OPUS_WEBM.py index 6feb7074..d4ab1b71 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_OPUS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_VORBIS_WEBM.py index 75fd5d38..064056d8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_AV1_VORBIS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_AC3_MP4.py index ad7f412f..75fcdaca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_AC3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_MP3_MP4.py index 7e1f61c1..2d868bc1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_H264_MP3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP8_WEBM.py index 02d0ad39..b8bb4a37 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP9_WEBM.py index 5601ea58..734f4ca2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_OPUS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP8_WEBM.py index 32dcd49e..6160ca91 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP9_WEBM.py index 9a3f6cee..7e59ea20 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF3X_Play_VORBIS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd3x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H264_MP4.py index 5375d0f7..a4a0860a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H264_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H265_MP4.py index f31deeaa..9058ee02 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AAC_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AC3_H265_MP4.py index 2a67e92d..0540340c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AC3_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_AAC_MP4.py index 35744533..2fdf5444 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_AAC_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_OPUS_WEBM.py index d8e1b33b..7dadb748 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_OPUS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_VORBIS_WEBM.py index 69d0732b..4b28bf9f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_AV1_VORBIS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_AC3_MP4.py index 505c26fc..825f0392 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_AC3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_MP3_MP4.py index f9f6dc7a..b3164552 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_H264_MP3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP8_WEBM.py index 4db63fc6..77f38c9d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP9_WEBM.py index 6568ddd9..648023a8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_OPUS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP8_WEBM.py index 06c3edfd..04bc090a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP9_WEBM.py index e826777c..bbdd0021 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_FF4X_Play_VORBIS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=fastfwd4x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H264_MP4.py index 3cfdfbee..afdb5c98 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H264_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H265_MP4.py index 74a34f6e..344f892f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AAC_H265_MP4.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AC3_H265_MP4.py index 8fd4ae28..49b6f85e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AC3_H265_MP4.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_AAC_MP4.py index 11b01f5a..becff7a1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_AAC_MP4.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_OPUS_WEBM.py index 70ab5f3a..2b056917 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_OPUS_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_VORBIS_WEBM.py index 1f09fd74..c3176294 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_AV1_VORBIS_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_H264.py index 0c10a814..509d2f5b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_HEVC.py index 3808229b..ee482d57 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_VP9.py index 7a34e9cf..e71a3ee4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_AC3_MP4.py index 7d390c3e..7deffbdd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_AC3_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_MP3_MP4.py index 0df62872..4e93e8f2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_H264_MP3_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_H264.py index a8e516d9..16deb13a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_HEVC.py index f6d1c9e4..e93aaf14 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP8_WEBM.py index 44ab5880..55fe24ca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP8_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP9_WEBM.py index 964cfa7a..3b65aa18 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_OPUS_VP9_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP8_WEBM.py index 9cf9f6ec..c22386b6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP8_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP9_WEBM.py index 3d605dec..9359d443 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Mute_Unmute_VORBIS_VP9_WEBM.py @@ -111,8 +111,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_2160p.py index 2ee1f3be..2cfe4406 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_480p.py index 642e8d05..89fc0c20 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_480p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_720p.py index 608c3242..43e22abf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H264_MP4_720p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4.py index f6ae3e66..793b3caa 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_2160p.py index 6718606c..89d2b5d5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_480p.py index 98c39369..bfc6bc37 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_720p.py index 0cb1b46e..5f6e12f8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AAC_H265_MP4_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4.py index 93a4e415..4ec5bc92 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_2160p.py index dfd0b84f..1335fd28 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_480p.py index 4dc756bd..0c0933f4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_720p.py index 633b47f1..74a9d10d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AC3_H265_MP4_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4.py index 4764d631..d17203bd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_1080p.py index 8ab409d4..70ab7b77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_1080p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_2160p.py index 43352d1e..f46c74b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_480p.py index 1feaa42d..b6a6e16d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_720p.py index df55da4a..9e88f961 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_AAC_MP4_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM.py index a2e4d1d3..a9cdea36 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_2160p.py index 2d7593de..1c7673e2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_480p.py index 06726d7b..c40701cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_720p.py index babf9ba7..51632b4d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_OPUS_WEBM_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM.py index df57d3be..59e43a48 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_1080p.py index dc80535b..1cc10176 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_1080p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_2160p.py index d94234df..7484e82d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_480p.py index 517c4b4b..0b62431d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_AV1_VORBIS_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_H264.py index 1030ab70..804275d3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_HEVC.py index 279670d5..279c0628 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_VP9.py index be4142a4..3e04888a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4.py index d0dd58b4..bd45ff48 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_2160p.py index a82f8495..dfb52419 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_480p.py index a9d7ec0c..b688269f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_480p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_720p.py index bdb0ff85..b9ad0f96 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_AC3_MP4_720p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4.py index 8331abc9..66fd7211 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_2160p.py index d19de8fd..82285313 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_480p.py index 45c25873..b86b0dec 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_480p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_720p.py index f1409e7a..58c208ac 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_H264_MP3_MP4_720p.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HEVC.py index fc195d2b..e66bb123 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HEVC.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_H264.py index 80f45d91..0830321d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_HEVC.py index 7bc5b4dd..2085e1c4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_MP4.py index 57d1f88b..af1fc880 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_MP4.py @@ -118,8 +118,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM.py index 2069097f..75a3c6ef 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_2160p.py index 137e41bf..da827930 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_480p.py index 1dc616cb..4fcb8fe5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_720p.py index 382c8ab2..fbd9d501 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP8_WEBM_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_2160p.py index e9763340..450023c9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_480p.py index b99013ce..a77ef633 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_720p.py index eda6b5f9..5440c4d5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_OPUS_VP9_WEBM_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM.py index 28a55fc2..3f6a72b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_2160p.py index 039841bc..14e9a69a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_480p.py index b30cc85a..d6a51607 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_720p.py index dfaf9347..c42517f5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP8_WEBM_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM.py index a3a08df4..127e180e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_2160p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_2160p.py index 1475b74a..91b1ca1a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_2160p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_2160p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_480p.py index 56f8f2f0..c9280980 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_480p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_720p.py index ef758035..0b901f1d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_VORBIS_VP9_WEBM_720p.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Vorbis_Webm.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Vorbis_Webm.py index 5514ea62..6e2893f1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Vorbis_Webm.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Vorbis_Webm.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Webm.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Webm.py index a28385ab..0adda305 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Webm.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_PlayPause_Webm.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AAC_H265_MP4.py index 1c189d9d..6158a03f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AAC_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AC3_H265_MP4.py index 2e4d616f..d0585a78 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AC3_H265_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_AAC_MP4.py index 54357eb7..bc452fd5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_AAC_MP4.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_OPUS_WEBM.py index 2c6711ee..e98bc649 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_OPUS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_VORBIS_WEBM.py index 1c973e90..3a971ffd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_AV1_VORBIS_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_H264.py index fcfcb9b0..ed0585d8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_HEVC.py index 7146675f..16f1beef 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_VP9.py index a82fe20f..ad6d2fa3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_AC3_MP4.py index 63e8e588..e23afe77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_AC3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_MP3_MP4.py index fc077f52..f61e6d2f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_H264_MP3_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HEVC.py index 21986c1b..904f8627 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HEVC.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(60) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_H264.py index e6846c18..17c1f2a7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_HEVC.py index 157f459c..262e8543 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_MP4.py index 2c4578d2..db847d92 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_MP4.py @@ -119,8 +119,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(60) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_OPUS_VP8_WEBM.py index c95a797a..d55ac1ab 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_OPUS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP8_WEBM.py index c48aee0e..1f0a624d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP8_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP9_WEBM.py index 47ca8eae..a2c3bc73 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_VORBIS_VP9_WEBM.py @@ -113,8 +113,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py index aa6d11b4..fece987e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(60) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Webm.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Webm.py index c7ee11ce..e953800d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Webm.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Webm.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=close(60) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_DASH_H264.py index 15010699..58743168 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_HLS_H264.py index 0208c2c9..1e9c9ee5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_FF2X_Play_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=fastfwd2x(30),playnow(10),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -102,8 +101,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_DASH_H264.py index 7f8be345..9203291e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_HLS_H264.py index ffed8cd7..23baf53d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Mute_Unmute_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=mute(30),unmute(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_DASH_H264.py index a33883b3..548dcde7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_HLS_H264.py index eb4b82a1..000a6f0d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_PlayPause_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=pause(30),play(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -101,8 +100,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_DASH_H264.py index 58744636..d421eb2f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_HLS_H264.py index cd8d5458..6692f333 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Play_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_DASH_H264.py index 8297adc5..3338e42d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_HLS_H264.py index d2f113cd..1641ed55 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_BWD_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_DASH_H264.py index 06a4ff6b..d0228e41 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_HLS_H264.py index 07753760..a737c2ac 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_FWD_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_DASH_H264.py index 7ec8e292..0703eb32 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -78,7 +77,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekpos(30:120),seekpos(30:80),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -106,8 +105,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_HLS_H264.py index 97984214..953cd861 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_SHAKA_Seek_Pos_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -78,7 +77,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekpos(30:120),seekpos(30:80),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -106,8 +105,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H264_MP4.py index f4e4baca..88ed1e1a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H264_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H265_MP4.py index 8c7163f9..9b8d610f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AAC_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AC3_H265_MP4.py index 155ecb5a..210c74e5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AC3_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_AAC_MP4.py index 7a830903..7b542e15 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_AAC_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_OPUS_WEBM.py index aba10fab..6d65d0e1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_OPUS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_VORBIS_WEBM.py index 84e2beeb..e4a9e4d1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_AV1_VORBIS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_H264.py index 08d949f9..571de670 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_HEVC.py index 900c84c6..79ebb77b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_VP9.py index 4395e7d8..013f0830 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_AC3_MP4.py index aceacf3e..8055f4db 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_AC3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_MP3_MP4.py index 342de11c..eeb44d44 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_H264_MP3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_H264.py index 1123b64d..b9ab7c36 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_HEVC.py index 87a97442..98ba84ce 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP8_WEBM.py index 2042fb14..1ca41f85 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP9_WEBM.py index 2d1194b1..d72155f9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_OPUS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP8_WEBM.py index babc361e..bc29ecfe 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP9_WEBM.py index f75f4df4..221f3f53 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_BWD_VORBIS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekbwd(60),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H264_MP4.py index 9993e8ee..24a0c6b2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H264_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H265_MP4.py index 457d1ebd..caebaa65 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AAC_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AC3_H265_MP4.py index ea7f90e6..a4444e49 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AC3_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_AAC_MP4.py index 74453640..b1c894be 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_AAC_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_OPUS_WEBM.py index 93fe7eb2..535ebfc5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_OPUS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_VORBIS_WEBM.py index 87f1feab..9e0ac43b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_AV1_VORBIS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_H264.py index 3c49d301..0502532f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_HEVC.py index 6c5257f0..e854bcd6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_VP9.py index 0f5afb41..e28f98b2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_AC3_MP4.py index 1f867cbb..a908cb0e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_AC3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_MP3_MP4.py index e58cbc10..41a630d6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_H264_MP3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_H264.py index 0d6681f8..36b34d68 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_HEVC.py index e882a001..bd958199 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -104,8 +103,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP8_WEBM.py index 5802dbf3..f10f3d64 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP9_WEBM.py index 2f7289e1..89d67d84 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_OPUS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP8_WEBM.py index e622956d..9f11428c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP9_WEBM.py index 1950b023..bed0e2e6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_FWD_VORBIS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H264_MP4.py index db8c971c..faef859e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H264_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H265_MP4.py index a0d59139..2889437d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AAC_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AC3_H265_MP4.py index 2db66257..ada0ab51 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AC3_H265_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_AAC_MP4.py index d59a9037..0364f842 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_AAC_MP4.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_OPUS_WEBM.py index 52e8b69d..0068b043 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_OPUS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_VORBIS_WEBM.py index 9456fdcb..84046467 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_AV1_VORBIS_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_H264.py index f3bf785c..88ea761d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -77,7 +76,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -105,8 +104,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_HEVC.py index d948f617..d7e6f13f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -77,7 +76,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -105,8 +104,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_VP9.py index 66325003..187d32b3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, Opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -77,7 +76,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -105,8 +104,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_AC3_MP4.py index 7885c504..a022b57d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_AC3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_MP3_MP4.py index c29caecf..e34e6aa9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_H264_MP3_MP4.py @@ -117,8 +117,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_H264.py index 6ee231b4..245bc5d4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_H264.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -78,7 +77,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekpos(30:120),seekpos(30:80),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -106,8 +105,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_HEVC.py index f834a9df..d40e6670 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -78,7 +77,7 @@ #http://*testManagerIP*/tdkservice/fileStore/lightning-apps/UnifiedMediaHTMLPlayer.html? #url=&operations=seekpos(30:120),seekpos(30:80),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -106,8 +105,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP8_WEBM.py index 4b08d672..051b4c99 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP9_WEBM.py index d3c24a6a..08a587b1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_OPUS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP8_WEBM.py index dba45f6e..c34f3443 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP8_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP9_WEBM.py index 7a0a8818..cb20de0b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Seek_Pos_VORBIS_VP9_WEBM.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=seekfwd(30),seekbwd(30),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H264_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H264_MP4.py index 5d350cef..7e0f7112 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H264_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H264_MP4.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H265_MP4.py index 4574bb1b..2e585105 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AAC_H265_MP4.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AC3_H265_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AC3_H265_MP4.py index da5639b2..0c089fc9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AC3_H265_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AC3_H265_MP4.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_AAC_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_AAC_MP4.py index 8bcc794d..70489953 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_AAC_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_AAC_MP4.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_OPUS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_OPUS_WEBM.py index 342017f9..a1eccc36 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_OPUS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_OPUS_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_VORBIS_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_VORBIS_WEBM.py index ff11d230..4b21907c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_VORBIS_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_AV1_VORBIS_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_AC3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_AC3_MP4.py index 1c48ae4d..04c345ab 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_AC3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_AC3_MP4.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_MP3_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_MP3_MP4.py index fcba1d57..7805aacc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_MP3_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_H264_MP3_MP4.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP8_WEBM.py index 7713f9d4..d4accf98 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP8_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP9_WEBM.py index 8b1e9075..d2819e1e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_OPUS_VP9_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP8_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP8_WEBM.py index 133042bf..a187c1cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP8_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP8_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP9_WEBM.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP9_WEBM.py index 0817037c..11930bd7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP9_WEBM.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Setvolume_VORBIS_VP9_WEBM.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); setWebKitSocketPort(webinspect_port_html) - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.html_player_app_id,MediaValidationVariables.html_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/htmlplayer.html? #url=&operations=setvolume(0.5),close(30) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.html_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.html_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_AV1.py index 9a619b4e..05037508 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=checkloop(30)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_DASH.py index ed6cf6f9..5f6f661c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_VP9.py index 28421d7b..97047a62 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_4K_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=checkloop(30)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_AV1.py index 7739f83b..fe828d1e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_Audio_Only.py index e5cdb641..9286dd86 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_Audio_Only.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_DASH_H264.py index 687a53ab..e7e4ccf2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_EC3.py index d2db3da1..37ee5666 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC.py index 6dba03b9..4c7c768a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC_MKV.py index cf6000b9..39635a0a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HEVC_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=checkloop(30)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HLS_H264.py index c3d99a54..4eb57ccb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=checkloop(30)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MKV.py index ca5b5a91..aacfbf97 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=checkloop(30)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MP4.py index c876e72b..613d11db 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_MP4.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_VP9.py index 8ca8b914..98a298f2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Loop_Play_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_AV1.py index 9fd22005..ac4369c4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(30),unmute(30)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_DASH.py index 562205d5..8e1fa967 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_HLS.py index 13e7931a..655075e5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(30),unmute(30)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_VP9.py index 451bcb1a..75200991 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_4K_VP9.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=mute(30),unmute(30)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1.py index 0e054711..7b071d96 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1_60FPS.py index 2a5523b7..6a145345 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_AV1_60FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=mute(30),unmute(30)&autotest=true&type=av1&options=collectfps(WebKitBrowser),deviceport(portNo),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_Audio_Only.py index cc8f4109..2d2bc5f8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_Audio_Only.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264.py index fd7e999c..bbac443c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264_Main.py index a0a1b5cb..99d0d475 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -79,7 +78,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -102,10 +101,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -113,8 +108,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_EC3.py index 6152187e..cadec56a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HDR.py index 5cd78a04..d9f55164 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HDR.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -170,10 +169,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -181,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC.py index 07a7ea98..146144f9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_60FPS.py index 844f24e2..4fce542d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_60FPS.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=mute(30),unmute(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_MKV.py index 0e1f4a0d..27924196 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -171,10 +170,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -182,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_Main10.py index 0419cadb..55f2e0eb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -79,7 +78,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -102,10 +101,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -113,8 +108,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HLS_H264.py index de575c35..aef66914 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_HLS_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(30),unmute(30)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MKV.py index d1176c68..0ed5c5f1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -171,10 +170,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -182,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MP4.py index 1aa2f779..ba4152fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_MP4.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_AV1.py index fe3c5e39..fea03117 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_DASH.py index 1c73608b..33193feb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_HLS.py index c7f2e294..d015e237 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_VP9.py index a997f877..a82ffe0e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_4K_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_AV1.py index c0ca33a9..67cd3f77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_Audio_Only.py index 94d4451d..1cdf0891 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_Audio_Only.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(10),unmute(10),repeat(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app utl from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264.py index bdd16503..5b4c5299 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264_Main.py index 2deae653..9d8cec46 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -79,7 +78,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -102,10 +101,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_EC3.py index 31f18b8b..55c52a29 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HDR.py index 8e9abd35..940130cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HDR.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC.py index b773e80b..546c060e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC_Main10.py index 7c5c64f4..3ec77a41 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -85,7 +84,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -108,10 +107,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HLS_H264.py index a06efc80..afbeef98 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app utl from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MKV.py index 3cbd2aef..6ebc6dde 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MP4.py index 64a2e500..624fc43b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_MP4.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_VP9.py index 4f5f6d41..c82e0f0c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_STRESS_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_VP9.py index 7c8bdb37..e28b063e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Mute_UnMute_VP9.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_AV1.py index ef7e6800..d13de5d2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(30),play(10)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_DASH.py index 4d89effc..5604f4e9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_DASH.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_HLS.py index e3dac222..c416b283 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_HLS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(30),play(10)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_VP9.py index 71dae771..4828ef77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_4K_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=pause(30),play(10)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AAC.py index 588a13ee..84a6cc06 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AAC.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1.py index df2523ca..b563e4cf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=pause(30),play(10)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1_60FPS.py index c29fe323..ddd727bf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_AV1_60FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=pause(30),play(10)&autotest=true&type=av1&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Audio_Only.py index 65ee7af7..5f0b0de1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Audio_Only.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,7 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit webkit_instance and + # Setting the post-requisites for media test.Removing app url from webkit webkit_instance and # moving next high z-order app to front (residentApp if its active) post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264.py index 0105067c..8b235a14 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264_Main.py index 50362b85..00c45d99 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -78,7 +77,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -101,10 +100,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -112,8 +107,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_EC3.py index c0ddcef9..2d5345b5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_EC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HDR.py index 039d96b9..7da1f17f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HDR.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC.py index 354cb1ce..32a2d951 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_60FPS.py index ddb5ec27..bac0e72f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_60FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=pause(30),play(10)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_MKV.py index 2b56ffc4..f9486524 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=pause(30),play(10)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_Main10.py index f27b52b0..3811f79f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -83,7 +82,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -106,10 +105,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HLS_H264.py index 638cd827..001a7876 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(30),play(10)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MKV.py index b2b3a30e..3f4fae97 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=pause(30),play(10)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MP4.py index bd057cf2..6bcee9dd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MP4.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MPEG_TS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MPEG_TS.py index be8ebf4d..c5f01c23 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MPEG_TS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_MPEG_TS.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py index 7543f7ea..b2375f20 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Opus.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Opus.py index 75d1c587..4af63779 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Opus.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_Opus.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_AV1.py index 25371881..0fcd840d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(5),play(5),repeat(15)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_DASH.py index a7af64fc..f84f059d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_DASH.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_HLS.py index 57034b84..d96f58da 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_HLS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_VP9.py index 98c73d2e..1a59d9f7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_4K_VP9.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=pause(5),play(5),repeat(15)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AAC.py index 09b551ed..db63bac3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AAC.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AV1.py index dad2faca..ff2057aa 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=pause(5),play(5),repeat(15)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Audio_Only.py index 8060ed87..b6166b0c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Audio_Only.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264.py index dcb949fe..66fd641e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264_Main.py index 3cfccb37..3c3a090b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -79,7 +78,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -102,10 +101,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_EC3.py index 912d3e65..126687e1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HDR.py index 5ac4ebcd..81b68c73 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HDR.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC.py index 91e7a32f..428b4c9b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_MKV.py index 261b0898..44ee2039 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_MKV.py @@ -110,8 +110,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #Example video test url #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -166,17 +165,13 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_Main10.py index 9ef004d4..47080d2d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -84,7 +83,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -107,10 +106,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HLS_H264.py index a85657c1..c387822a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_HLS_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(5),play(5),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MKV.py index e44f882b..8dae17d9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MKV.py @@ -110,8 +110,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #Example video test url #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -166,17 +165,13 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MP4.py index 03626c79..79f88f77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MP4.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MPEG_TS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MPEG_TS.py index 5e2b3a4d..4b87811a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MPEG_TS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_MPEG_TS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py index 12b1b8f7..43dfd3b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Opus.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Opus.py index 39ddf225..4b428aa1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Opus.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_Opus.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_VP9.py index 2255a2f2..b6b05a59 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_VP9.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_VP9.py index b1b18d35..49d3a892 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_AV1.py index 88f34e66..02f84bf0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_DASH.py index 93e49cf9..b82dff67 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_DASH.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_HLS.py index 1e6c266e..63821722 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_HLS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_VP9.py index 8add8b89..8b7edeb2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_4K_VP9.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -171,10 +170,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -182,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AAC.py index bc3755b6..f69cb57c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AAC.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1.py index c5ea448d..920d64b9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_23FPS.py index 97f171d9..a13c8cd6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_23FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(20) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_24FPS.py index 8b62c9c5..cf4d05c6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_24FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(21) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_25FPS.py index ca57b648..aebb4635 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_25FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(22) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_30FPS.py index f3f03276..fe86a049 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_30FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=av1&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(27) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_50FPS.py index feb35e44..a69e57d1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_50FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=av1&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(47) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,9 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_60FPS.py index 632e17b6..7cb77d96 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_AV1_60FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=av1&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Audio_Only.py index 83f8fc02..13ff7a3b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Audio_Only.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080i.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080i.py index 646f2908..a5363496 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080i.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080i.py @@ -123,8 +123,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "1080i" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdvideoplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080p.py index 2ac09136..56dd2b89 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_1080p.py @@ -123,8 +123,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "1080p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480i.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480i.py index 37ba38af..feacd689 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480i.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480i.py @@ -119,8 +119,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "480i" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -162,7 +161,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -185,10 +184,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -196,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480p.py index 8ca7e089..4b8fffe4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_480p.py @@ -123,8 +123,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "480p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_720p.py index f46246fa..04863abf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_720p.py @@ -122,8 +122,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "720p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264.py index 5024cb2b..68546076 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_Main.py index 58ad8b7e..2dd4a9b0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -77,7 +76,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -100,10 +99,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the Video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_VP9.py index 49be3f37..e8756ad0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_H264_VP9.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(60),close(60),options=secondaryURL(.mpd)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentBase.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentBase.py index 63b7fa13..17133622 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentBase.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentBase.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentList.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentList.py index 6733e06d..f094fe4c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentList.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentList.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTemplate.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTemplate.py index f19ff107..909630ef 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTemplate.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTemplate.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTimeline.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTimeline.py index d44f711b..2d8c51e3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTimeline.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SegmentTimeline.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_AtmosOutput.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_AtmosOutput.py index 49c5a120..20e4cb7a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_AtmosOutput.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_AtmosOutput.py @@ -119,8 +119,7 @@ tdkTestObj.executeTestCase(expectedResult); mode = "Atmos" # Setting the required sound mode - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file mode_pre_requisite_status = setAudioAtmosOutputModePreRequisites(obj,mode) if mode_pre_requisite_status: @@ -162,7 +161,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -185,10 +184,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -196,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_DolbyDigital.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_DolbyDigital.py index db57fcb3..bbb189c5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_DolbyDigital.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_DolbyDigital.py @@ -120,8 +120,8 @@ tdkTestObj.executeTestCase(expectedResult); mode = "Dolby Digital,DolbyDigital" # Setting the required sound mode - # Setting the pre-requites for media test. Launching the wekit inspect via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the webkit inspect via RDKShell and + # moving it to the front, opening a socket connection to the webkit inspect page and # getting the details for proc validation from config file mode_pre_requisite_status = setSoundModePreRequisites(obj,mode) if mode_pre_requisite_status: @@ -164,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the sound mode post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) mode_post_requisite_status = setSoundModePostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_Stereo.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_Stereo.py index 9f64ede2..1dbd16dc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_Stereo.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DASH_SoundMode_Stereo.py @@ -123,8 +123,7 @@ tdkTestObj.executeTestCase(expectedResult); mode = "Stereo" # Setting the required sound mode - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file mode_pre_requisite_status = setSoundModePreRequisites(obj,mode) if mode_pre_requisite_status: @@ -166,7 +165,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -189,10 +188,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -200,8 +195,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the sound mode post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) mode_post_requisite_status = setSoundModePostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DTS_Audio.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DTS_Audio.py index 7804d2ad..8701d132 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DTS_Audio.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_DTS_Audio.py @@ -104,7 +104,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and + # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and # moving it to the front, opening a socket connection to the webkit inspect page and # getting the details of proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) @@ -142,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.dts&operations=close(60)&autotest=true&type=dts - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -165,10 +165,6 @@ print("Audio not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -176,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_EC3.py index 1cd09d4b..0f98043e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_AV1.py index 0ee09c00..b9956201 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=playtillend(0)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_DASH.py index fcf76534..35a35351 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_VP9.py index e0779248..010decc1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_4K_VP9.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_AV1.py index dda7ad27..0b944c74 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_Audio_Only.py index c96a81f4..199f94ac 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_Audio_Only.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_DASH_H264.py index 88885f92..87830447 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_EC3.py index bea519f0..8c0070ce 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_EC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC.py index b31e49d9..744a5b87 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC_MKV.py index dff62291..2d4d17a4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HEVC_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HLS_H264.py index beb7e511..abcfaadf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=playtillend(0)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MKV.py index 48694c06..92425bc7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MP4.py index 7a5d76ff..cec8f59d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_MP4.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_VP9.py index 10acc5c7..7331ca13 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Full_VP9.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_H263.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_H263.py index 7042a5d5..8a504c07 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_H263.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_H263.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HDR.py index fa85666f..8c7a25d9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HDR.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -170,10 +169,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -181,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC.py index 87698352..3eef1adc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_23FPS.py index 15c2f620..99ab36c6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_23FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -162,7 +161,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(21) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -185,10 +184,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -196,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_24FPS.py index 2177c756..278408dc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_24FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(21) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_25FPS.py index 212b4304..60a04a0f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_25FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(22) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_30FPS.py index 7f816d62..7a9bcaf6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_30FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(27) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -186,10 +185,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -197,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_50FPS.py index 7b585bb6..f011ee72 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_50FPS.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(47) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,9 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_60FPS.py index d413266a..98b12899 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_60FPS.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_MKV.py index 32a6f1b3..aa865943 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_MKV.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=close(60)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_Main10.py index b9cf9f81..11fb5f5e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -77,7 +76,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -100,10 +99,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the Video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080i.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080i.py index 7293612d..d18b0188 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080i.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080i.py @@ -121,8 +121,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "1080i" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080p.py index 24bec048..f80e8b06 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_1080p.py @@ -121,8 +121,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "1080p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480i.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480i.py index 8d9e4938..18b026e9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480i.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480i.py @@ -118,8 +118,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "480i" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -184,10 +183,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -195,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480p.py index 0928096e..8874da4b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_480p.py @@ -121,8 +121,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "480p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_720p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_720p.py index 32be1f61..4dfad373 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_720p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_720p.py @@ -121,8 +121,7 @@ tdkTestObj.executeTestCase(expectedResult); res = "720p" # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res_pre_requisite_status = setResolutionPreRequisites(obj,res) if res_pre_requisite_status: @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. # Reverting the display Resolution post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) res_post_requisite_status = setResolutionPostRequisites(obj) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_H264.py index a4d411c5..675407e2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_DASH.py index 7aca86d2..5e689b9a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_DASH.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&options=live&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_HLS.py index a5d26fb9..3693713d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Live_HLS.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&options=live&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_M4A_Audio.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_M4A_Audio.py index f9980a84..0f103fc3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_M4A_Audio.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_M4A_Audio.py @@ -104,7 +104,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and + # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and # moving it to the front, opening a socket connection to the webkit inspect page and # getting the details of proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) @@ -141,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m4a&operations=close(60)&autotest=true&type=m4a - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -164,10 +164,6 @@ print("Audio not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -175,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MKV.py index bd7952ab..c13f5f1e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MKV.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=close(60)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -172,10 +171,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -183,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP3_Audio.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP3_Audio.py index ac2bd2dd..8589adae 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP3_Audio.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP3_Audio.py @@ -104,7 +104,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and + # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and # moving it to the front, opening a socket connection to the webkit inspect page and # getting the details of proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) @@ -141,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp3&operations=close(60)&autotest=true&type=mp3 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -164,10 +164,6 @@ print("Audio not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -175,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4.py index e6fbbdb3..48c5e25f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_23FPS.py index e8eced0a..70d7f6b6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_23FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(20) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_24FPS.py index d1bc4956..f8636e2d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_24FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -168,7 +167,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(21) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -191,10 +190,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -202,8 +197,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_25FPS.py index c0b8256b..41cd52f0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_25FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(22) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_29FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_29FPS.py index a1ffe933..935547d3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_29FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_29FPS.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -168,7 +167,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(26) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -191,10 +190,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -202,8 +197,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_30FPS.py index e43d20c0..7dee2fc2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_30FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(27) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_50FPS.py index d0ca5755..98c8174f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_50FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(47) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,9 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -202,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_59FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_59FPS.py index 1e270f6f..737a563d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_59FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_59FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(56) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_60FPS.py index 56f4457c..64d69c60 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MP4_60FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG.py index 1f401649..1967566e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG_TS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG_TS.py index c253e30a..5553a182 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG_TS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_MPEG_TS.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py index 57a077ca..79124e7c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Opus.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Opus.py index 0b2ba49c..c4748e78 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Opus.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Opus.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH.py index 57585c1b..25e92f50 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH.py @@ -116,8 +116,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH_AV1.py index 89d6f85e..3c9d19ea 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_DASH_AV1.py @@ -116,8 +116,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_HLS.py index 5a5d9968..eeee390f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_CBCS_HLS.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AAC.py index b9352393..4ef6b5ab 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AAC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AV1.py index 1f2b02e9..7047d5ac 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_AV1.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(video_src_url_playready_dash_av1_drmconfigs)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_EC3.py index 72d7dc80..3490bd4a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_EC3.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_H264.py index 487b99da..2a1fe570 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_HEVC.py index 4cc35e9c..4ef330fb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_DASH_HEVC.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_AAC.py index 839db52d..2876d49b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_AAC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_H264.py index dbb4fb26..6bde623c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_HEVC.py index 902b5f18..711af3ea 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_HLS_HEVC.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_DASH.py index 40b951c7..504e197e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_DASH.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_HLS.py index 791b6953..e3475b99 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_PlayReady_MultiKey_HLS.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP8.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP8.py index eec715ad..b3b11f4e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP8.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP8.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9.py index d7c5f14d..8b37ec4e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -173,10 +172,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -184,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_23FPS.py index 14364c4a..4370ed42 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_23FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(20) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_24FPS.py index ca28cf85..053f1eea 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_24FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(21) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_25FPS.py index 7ec0710c..d6def12b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_25FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(22) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_29FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_29FPS.py index bdf38fd0..ccff4dd4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_29FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_29FPS.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -169,7 +168,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(26) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -192,10 +191,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +198,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_30FPS.py index 787a9070..cbbf898b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_30FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(27) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_50FPS.py index 0532de07..be31d1af 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_50FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(47) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,9 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -203,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_59FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_59FPS.py index 606f995e..6643780f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_59FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_59FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(56) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_60FPS.py index 83e8237d..1b457f7a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_VP9_60FPS.py @@ -121,8 +121,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -170,7 +169,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html?player=VIDEO #url=&operations=close(30)&autotest=true&type=mp4&options=collectfps(WebKitBrowser),deviceport(9998),expectedfps(57) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -193,10 +192,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -204,8 +199,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_WAV_PCM_Audio.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_WAV_PCM_Audio.py index edba0daf..5f2d2489 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_WAV_PCM_Audio.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_WAV_PCM_Audio.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.wav&operations=close(60)&autotest=true&type=wav - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Audio not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH.py index 2791a3ce..c41f988b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AC3.py index 732d1f53..dd307499 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AC3.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AV1.py index 97dd5f03..51169008 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_AV1.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_EC3.py index 98143617..50037289 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_EC3.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_HEVC.py index fce42666..c8247ef9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_VP9.py index b2f67323..9f0ba983 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_DASH_VP9.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS.py index 058483cc..a4f09a87 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS_HEVC.py index f7881e5d..344c3d6e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_CBCS_HLS_HEVC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -87,7 +86,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -110,10 +109,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -121,8 +116,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AAC.py index af9601a1..6f274329 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AAC.py @@ -135,10 +135,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -159,11 +155,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -182,10 +173,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AC3.py index f80ce0ef..5abaffd6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AC3.py @@ -137,10 +137,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -161,11 +157,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -184,10 +175,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AV1.py index f1e3cca3..b8a02295 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_AV1.py @@ -137,10 +137,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -161,11 +157,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -184,10 +175,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_EC3.py index b98afe8e..fc578445 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_EC3.py @@ -136,10 +136,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -160,11 +156,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -183,10 +174,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_HEVC_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_HEVC_AAC.py index 886cb385..354d1ccf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_HEVC_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_HEVC_AAC.py @@ -136,10 +136,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -160,11 +156,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -183,10 +174,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_VP9.py index 5b5953e7..feadc9df 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_DASH_VP9.py @@ -136,10 +136,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -160,11 +156,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -183,10 +174,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_H264.py index 163b2f3b..9211b4d3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_H264.py @@ -136,10 +136,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -160,11 +156,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -183,10 +174,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_HEVC.py index 6b3b3d0a..d5c2d035 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Clear_Lead_HLS_HEVC.py @@ -136,10 +136,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ------------------------------------------------------------------ # FAIL IF VIDEO DID NOT PLAY TILL close() TIME # ------------------------------------------------------------------ @@ -160,11 +156,6 @@ tdkTestObj = obj.createTestStep('rdkv_media_test') tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("FAILURE") - - # Cleanup before next iteration - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - continue # ========================================================== @@ -183,10 +174,6 @@ tdkTestObj.executeTestCase(expectedResult) tdkTestObj.setResultStatus("SUCCESS") - # Cleanup between players - launchPlugin(obj, webkit_instance, "about:blank") - time.sleep(3) - # ------------------------------------------------------------------------------ # POST-CONDITIONS # ------------------------------------------------------------------------------ diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AAC.py index c362470e..ef1804b5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AAC.py @@ -42,8 +42,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -85,7 +84,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -108,10 +107,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -119,8 +114,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AC3.py index 2415ddba..efd0114d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AC3.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AV1.py index 70505384..d4f8ce0b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_AV1.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_EC3.py index 664b4372..040e8758 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_EC3.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_HEVC_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_HEVC_AAC.py index ad874bdb..c1e578cb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_HEVC_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_HEVC_AAC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_VP9_OPUS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_VP9_OPUS.py index bc10a2b3..1a1864b0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_VP9_OPUS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_DASH_VP9_OPUS.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_H264_AAC.py index 3cd9803c..0eff4f80 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_H264_AAC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_HEVC_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_HEVC_AAC.py index c3428f00..d6356130 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_HEVC_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_Cypt_Skip_Byte_Block_HLS_HEVC_AAC.py @@ -43,8 +43,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -120,8 +115,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AAC.py index 56385c1d..af991321 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AAC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AV1.py index 0b6a5c57..863052f1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_AV1.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_EC3.py index 13e7edb4..e6c4f20c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_EC3.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_H264.py index efd51571..581b3585 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_HEVC.py index 0dbf68e9..c24c3fad 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_HEVC.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_OPUS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_OPUS.py index 19c4fe8a..864c046b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_OPUS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_OPUS.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP8.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP8.py index 30f74367..59a96986 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP8.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP8.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP9.py index 526ee2a4..d7722432 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_DASH_VP9.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_AAC.py index 39f92d5d..79f06e38 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_AAC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_H264.py index b425958c..c4f61ae8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_HEVC.py index 24c23963..cc650e02 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_HLS_HEVC.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_DASH.py index 2d6e0023..afaad325 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_DASH.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_HLS.py index 802693fe..823c5d65 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_Widevine_MultiKey_HLS.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_DASH_H264.py index 3b1d74ef..3c2dc1cb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_DASH_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_HLS_H264.py index 498cb5aa..68d31ba5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_HLS_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_Play_DASH_H264_Main.py index 09aeb468..3279f06e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF2X_Play_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -75,7 +74,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd2x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_DASH_H264.py index 1853f659..243b8f3f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_DASH_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -188,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_HLS_H264.py index 0951c231..cc00103b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_HLS_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -188,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_Play_DASH_H264_Main.py index ec2ab329..f85cd381 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF3X_Play_DASH_H264_Main.py @@ -56,8 +56,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -89,7 +88,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd3x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264.py index 404b0e69..dcaf27ca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -188,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264_Main.py index 8cdb12fa..4b8b460d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_DASH_H264_Main.py @@ -56,8 +56,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -89,7 +88,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_HLS_H264.py index 621a9194..42e099be 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF4X_Play_HLS_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -188,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_DASH_H264.py index a4c6a466..da40a997 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_DASH_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_HLS_H264.py index 28707cc0..03329a06 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_FF_STRESS_HLS_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=fastfwd(10),repeat(3),playnow(10),repeat(1),fastfwd(10),repeat(3),playnow(10)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_DASH_H264.py index 842360a4..dfb12ded 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_DASH_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=checkloop(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_HLS_H264.py index aae77e36..ff195f9b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Loop_Play_HLS_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=checkloop(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264.py index 71296717..3389e054 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264_Main.py index d51f8f65..8485e4c7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC.py index 1279cadb..e2417745 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC_Main10.py index 6e9a51c6..03476125 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requisites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HLS_H264.py index 91944c9c..c8a54652 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_HLS_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MKV.py index 456a2d5f..8940d3ca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MKV.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MP4.py index 7fccc8e1..9826a7ab 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_MP4.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264.py index a5cbcad6..c8c07f91 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(10),unmute(10),repeat(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264_Main.py index 3b103d7b..f0ad764e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(10),unmute(10),repeat(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HEVC_Main10.py index b0ac03f3..cfc583f8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(10),unmute(10),repeat(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HLS_H264.py index 421cf092..a70b1966 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_STRESS_HLS_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=mute(10),unmute(10),repeat(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_VP9.py index 9340b6dd..4079f449 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Mute_UnMute_VP9.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264.py index 170e71c5..add6d0c0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264_Main.py index b8d45e95..02025e65 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC.py index 3b5a2241..d38746e0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC_Main10.py index 5e6ed62d..74dd4247 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HLS_H264.py index 6a3f588b..5f788e4d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_HLS_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MKV.py index 86cc00a0..4150f27b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MKV.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MP4.py index c5c1b73d..a9408693 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_MP4.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264.py index 55c97456..6c27a7ce 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264_Main.py index c1a62cd2..648ee30b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HEVC_Main10.py index 776578e0..a3d4cf90 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HLS_H264.py index 63597e1c..e930afae 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_STRESS_HLS_H264.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_VP9.py index e9c365f3..81c4a4ea 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_PlayPause_VP9.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_DASH.py index 1b90e434..c1c8259a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_DASH.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_HLS.py index 19016310..e2d4d812 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_4K_HLS.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_1080p.py index 13bdec3e..a1419f90 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_1080p.py @@ -44,8 +44,7 @@ tdkTestObj.executeTestCase(expectedResult); # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res = "1080p" res_pre_requisite_status = setResolutionPreRequisites(obj,res) @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264.py index 9146daa3..ddcd93d6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264_Main.py index 9c2bfd3b..d6bc56a7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_AtmosOutput.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_AtmosOutput.py index 09799fbe..e009d62e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_AtmosOutput.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_AtmosOutput.py @@ -44,8 +44,7 @@ tdkTestObj.executeTestCase(expectedResult); # Setting the required sound mode - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file mode = "Atmos" mode_pre_requisite_status = setSoundModePreRequisites(obj,mode) @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_DolbyDigital.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_DolbyDigital.py index 9af62536..1c6558c3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_DolbyDigital.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_DolbyDigital.py @@ -44,8 +44,7 @@ tdkTestObj.executeTestCase(expectedResult); # Setting the required sound mode - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file mode = "Dolby Digital,DolbyDigital" mode_pre_requisite_status = setSoundModePreRequisites(obj,mode) @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_Stereo.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_Stereo.py index c74306df..5c6d3355 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_Stereo.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_DASH_SoundMode_Stereo.py @@ -44,8 +44,7 @@ tdkTestObj.executeTestCase(expectedResult); # Setting the required sound mode - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file mode = "Stereo" mode_pre_requisite_status = setSoundModePreRequisites(obj,mode) @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_4K_AV1.py index bee75cdf..ed53ff34 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_4K_AV1.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_AV1.py index 34a5a7ac..b8e0648d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_AV1.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_Audio_Only.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_Audio_Only.py index 9b7a492b..d27165a2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_Audio_Only.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_Audio_Only.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_DASH_H264.py index 470d3e04..e8742183 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_DASH_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_EC3.py index bd147f5a..8ebf9c86 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_EC3.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HEVC.py index 62545bc9..d62919c7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HEVC.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HLS_H264.py index 83acd805..acebf802 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_HLS_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MKV.py index 51c7ad4c..13c25ad4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MKV.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MP4.py index b4c771db..c9d8e01b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_MP4.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_VP9.py index 432fb449..c0e765ed 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Full_VP9.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -100,8 +99,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HDR.py index 20dcac96..0a47ef6f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HDR.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -99,8 +98,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC.py index b4a91fc9..cecb2a8d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -99,8 +98,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC_Main10.py index 1626ad94..213f0639 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_1080p.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_1080p.py index 21a3fd38..79d8f499 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_1080p.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_1080p.py @@ -44,8 +44,7 @@ tdkTestObj.executeTestCase(expectedResult); # Setting the required display resolution - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file res = "1080p" res_pre_requisite_status = setResolutionPreRequisites(obj,res) @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_H264.py index a7274513..68ce4623 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_HLS_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_DASH.py index 3d0b17be..8fe1e5b8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_DASH.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_HLS.py index ddbf8b34..ab075c00 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Live_HLS.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MKV.py index 9fe44763..e506f82e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MKV.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -99,8 +98,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MP4.py index cbc34d76..4696a700 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_MP4.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -99,8 +98,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_CBCS_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_CBCS_DASH.py index 0b5fe163..62224ebd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_CBCS_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_CBCS_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AAC.py index 650f4dfe..3d8ee2ba 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AAC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AV1.py index 0676e692..c66499e1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_AV1.py @@ -114,8 +114,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_EC3.py index d3051118..ca3df4b6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_EC3.py @@ -114,8 +114,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_H264.py index ea5f61a5..e8e2acb5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_DASH_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_AAC.py index 05945bbb..ad59e31e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_AAC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_H264.py index 59ce2f62..ba92875c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_PlayReady_HLS_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_VP9.py index 3a5fc9e2..df3b3c71 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_VP9.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -99,7 +98,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test. Removing app url from webkit instance and + # Setting the post-requisites for media test. Removing app url from webkit instance and # moving next high z-order app to front (residentApp if its active) post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_EC3.py index 751e79a5..825effe6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_EC3.py @@ -114,8 +114,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_H264.py index 6be60c1d..c2b9b325 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_DASH_H264.py @@ -114,8 +114,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_AAC.py index afbc87d7..76f61511 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_AAC.py @@ -114,8 +114,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_H264.py index 235908bd..abe864e9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_H264.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_HEVC.py index c1d2d3de..be70ee76 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Play_Widevine_HLS_HEVC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_DASH_H264.py index b85d9d69..d2c428c4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_DASH_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repeat(15)&options=seekInterval(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_HLS_H264.py index 3c392517..b473a654 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_BWD_STRESS_HLS_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekbwd(180),repeat(1),seekbwd(10),repeat(15)&options=seekInterval(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264.py index c7d91b45..3e1c0afd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264_Main.py index cc18e1ec..0d11e6bc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -76,7 +75,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_HLS_H264.py index 98f5dbf9..da5d676b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FF_HLS_H264.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(30),fastfwd(10),playnow(5)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_DASH_H264.py index 29fe55dd..d042a579 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_DASH_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_HLS_H264.py index 7e342681..8ec00a9d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_FWD_STRESS_HLS_H264.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(10),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264.py index 9ce9f988..abbc9d77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:75),close(30)&options=checkInterval(10),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -181,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264_Main.py index 01272f6d..408cc4f3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -80,7 +79,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:75),close(30)&options=checkInterval(10),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_HLS_H264.py index 1040ac60..8361417d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_Seek_Pos_HLS_H264.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekpos(30:120),seekpos(30:75),close(30)&options=checkInterval(10),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -181,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_DASH_H264.py index 9cc498e3..12c5f8dd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_DASH_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -193,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_HLS_H264.py index d1b23029..b21d01d8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_HLS_H264.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10)&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -193,8 +192,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_PlayReady_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_PlayReady_HLS_H264.py index fa8bbd84..304b857a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_PlayReady_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_SHAKA_TrickPlay_PlayReady_HLS_H264.py @@ -128,8 +128,7 @@ tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -174,7 +173,7 @@ #url=.m3u8&drmconfigs=com.playready(license_url)&seekfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -202,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_DASH.py index 9a620e7c..eb74d564 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_HLS.py index adf0fccd..ac919880 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_HLS.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_VP9.py index fafb0f14..e7adb2d5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_4K_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_AV1.py index 39f1be87..49e54eaf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_DASH_H264.py index f65aa142..0fe96c66 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -184,10 +183,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -195,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_EC3.py index 974ced12..476fe975 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(420),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -181,10 +180,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -192,8 +187,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HEVC.py index da476677..b7909c4e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -184,10 +183,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -195,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HLS_H264.py index 294abbcd..1c4766f7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_MKV.py index 90d721a6..17f18008 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_VP9.py index 78dd84c4..e1ea0845 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_BWD_STRESS_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(180),repeat(1),seekbwd(10),repat(15)&options=seekInterval(20)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_AV1.py index 80d65e1d..b467ab10 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_DASH.py index 81c3a5cf..4af0e1cb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_HLS.py index dc86a423..9c5e078a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_VP9.py index 43c9b399..80f37cf1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_4K_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_AV1.py index e1dc07de..62f5682d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264.py index 38a5f042..dd660f6d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264_Main.py index 94295b7f..1df036a9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -82,7 +81,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -105,10 +104,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_EC3.py index 64f080bd..6fef09f6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_EC3.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -154,7 +153,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -177,10 +176,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -188,8 +183,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HEVC.py index 6a80da50..b643b900 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HEVC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HLS_H264.py index be08b60b..afaed59d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_HLS_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_MKV.py index ed1155e8..9789f2a5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_VP9.py index dcd23df1..fa3960e2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FF_VP9.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),fastfwd(10),playnow(5)&autotest=true&options=checkInterval(5),loop&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_DASH.py index 18ac89ce..5a73f84f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_HLS.py index f277c84b..e134e6d9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_HLS.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(10),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_VP9.py index e215a7a4..2e3fca5f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_4K_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=seekfwd(10),repeat(15)&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_AV1.py index 72140612..919136ad 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -175,10 +174,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -186,8 +181,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_DASH_H264.py index 205784c6..59e2ba02 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_EC3.py index b264799c..b8dee60b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -156,7 +155,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -179,10 +178,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -190,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HEVC.py index 1868d82e..c90a195e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HLS_H264.py index 65e76e1b..53c78d48 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -157,7 +156,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(10),repeat(15)&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -180,10 +179,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -191,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_MKV.py index 3ff6d051..01fd2f66 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(10),repeat(15)&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -174,10 +173,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -185,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_VP9.py index fbcea585..a6199454 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_FWD_STRESS_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(10),repeat(15)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -176,10 +175,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -187,8 +182,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_AV1.py index 78cba202..67a13989 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_DASH.py index 466415d5..5fffcdfb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_DASH.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_HLS.py index 5d39c1a6..6aec1027 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_HLS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -182,10 +181,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -193,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_VP9.py index 2e2b9ef3..bce42bc6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_4K_VP9.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.webm&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -184,10 +183,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -195,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_AV1.py index 881b08e0..5025de77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264.py index d1d9e7a3..c5e951fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264_Main.py index 5aaaf48f..2d8acccc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -86,7 +85,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -109,10 +108,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_EC3.py index ef53c3e1..9b55cd7a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_EC3.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -162,7 +161,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -185,10 +184,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -196,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC.py index 7d132ad7..1e6d73c3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -165,7 +164,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -188,10 +187,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -199,8 +194,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC_MKV.py index 84e39268..11aece80 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HEVC_MKV.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HLS_H264.py index 663bbbe8..38bc0269 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_HLS_H264.py @@ -120,8 +120,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekpos(30:120),seekpos(30:75),close(30)&autotest=true&options=checkInterval(10)&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -187,10 +186,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -198,8 +193,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_MKV.py index 3846014d..353716ca 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_MKV.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_VP9.py index 29cd193b..fc0f6c12 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Seek_Pos_VP9.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -160,7 +159,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekpos(30:120),seekpos(30:80),close(30)&autotest=true&options=checkInterval(10)&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -183,10 +182,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -194,8 +189,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_AV1.py index 95ab029f..a6f35701 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_AV1.py @@ -110,8 +110,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #url=.mp4&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=mp4 - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_DASH.py index cd2d366f..535c7bed 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_DASH.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_HLS.py index 97d67a46..bc6cf9bf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_HLS.py @@ -126,8 +126,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -171,7 +170,7 @@ #url=.m3u8&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -194,10 +193,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -205,8 +200,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_VP9.py index 12561f14..38434a1f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_4K_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=.webm&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=webm - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_AV1.py index 0adef413..b9981c80 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_AV1.py @@ -110,8 +110,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -155,7 +154,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -178,10 +177,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -189,8 +184,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_DASH_H264.py index c85284a3..a4d708cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_DASH_H264.py @@ -132,8 +132,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -177,7 +176,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -200,10 +199,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -211,8 +206,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_EC3.py index 334912e4..cc911b93 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_EC3.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -176,7 +175,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -199,10 +198,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -210,8 +205,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HDR.py index aab0aeab..d3f1513e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HDR.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC.py index efc37ebf..62e9b296 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -177,7 +176,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -200,10 +199,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -211,8 +206,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC_MKV.py index 9242f841..e1ea0315 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HEVC_MKV.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HLS_H264.py index bfaa0116..8462aba7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_HLS_H264.py @@ -132,8 +132,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -177,7 +176,7 @@ #url=.m3u8&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -200,10 +199,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -211,8 +206,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_MKV.py index 114a84b3..d3434fe0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_MKV.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=mkv - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_DASH_H264.py index f68c00e2..93d7508d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_DASH_H264.py @@ -129,8 +129,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -182,7 +181,7 @@ #url=.mpd&drmconfigs=com.playready(license_url)&seekfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -205,10 +204,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -216,8 +211,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_HLS_H264.py index 609a4c53..403c3e26 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_PlayReady_HLS_H264.py @@ -130,8 +130,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -183,7 +182,7 @@ #url=.mpd&drmconfigs=com.playready(license_url)&seekfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=hls - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -206,10 +205,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -217,8 +212,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_VP9.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_VP9.py index 67bd0472..62dc8c37 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_VP9.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_TrickPlay_VP9.py @@ -127,8 +127,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -172,7 +171,7 @@ #url=.mpd&operations=seekfwd(10),fastfwd(10),fastfwd(10),playnow(10),pause(10),play(10),seekbwd(10),fastfwd(10) #&options=checkInterval(5),loop&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager for video_test_url in video_test_urls: setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) @@ -195,10 +194,6 @@ print("Video not playing fine") print("[TEST EXECUTION RESULT]: FAILURE") tdkTestObj.setResultStatus("FAILURE"); - - if test_counter < len(video_test_urls): - launch_status = launchPlugin(obj,webkit_instance,"about:blank") - time.sleep(3) else: tdkTestObj.setResultStatus("FAILURE"); print("Unable to load the video Test URL in Webkit\n") @@ -206,8 +201,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Audio_Language.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Audio_Language.py index 136c97ed..27adc07b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Audio_Language.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Audio_Language.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeaudio(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track.py index 988789d1..40b59a91 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changetext(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track_DASH.py index 5aa45c52..fb2ae011 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Text_Track_DASH.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changetext(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_DASH_H264.py index 55e8ad04..5061355b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changevideobitrate(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_HLS_H264.py index a227ee5f..d88460f4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Change_Video_Bitrate_HLS_H264.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changevideobitrate(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_Dash_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_Dash_H264.py index 83ea3505..42aa4fc2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_Dash_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_Dash_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=curraudiobitrate(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_HLS_H264.py index 11b6f79d..f54c7408 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Current_Audio_Bitrate_HLS_H264.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=curraudiobitrate(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_DASH_H264.py index ae986aef..28748cf8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_DASH_H264.py @@ -131,8 +131,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -164,7 +163,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -192,8 +191,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_HLS_H264.py index e86f04b6..75f12015 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_FF4x_HLS_H264.py @@ -130,8 +130,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -163,7 +162,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=fastfwd4x(30),playnow(10),close(30)&options=checkInterval(5)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -191,8 +190,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Audio_Info.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Audio_Info.py index 3b0b9d1d..5c3444fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Audio_Info.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Audio_Info.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=audiotrackinfo(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Manifest.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Manifest.py index 87751108..7b177db6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Manifest.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Manifest.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=manifest(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Playback_Statistics.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Playback_Statistics.py index 5c85aeff..69bed922 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Playback_Statistics.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Playback_Statistics.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=statistics(20)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info.py index 72f3bc5b..779b10a8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changetext(30),texttrackinfo(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info_DASH.py index 39a24042..0ec9835a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Get_Text_Info_DASH.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changetext(30),texttrackinfo(30),close(30),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_DASH.py index 2093fa4c..ec185f89 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_HLS.py index 650ab82e..292e9d7c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_4K_HLS.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AC3.py index fe934327..67229084 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AV1.py index 64d5dd02..faa0291e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_DASH_H264.py index 755b84ab..0d7d5295 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_EC3.py index bf2d3235..fbed83e2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_EC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HEVC.py index 1ff69073..6d6d0c77 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HLS_H264.py index 0f97babd..d50df41f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_MP4.py index dde9a87e..e3966fa1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Latency_MP4.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_AV1.py index c9b7146a..e61708b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_DASH.py index d892d04a..9c80cc9c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_HLS.py index f62116c8..0ec499cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AC3.py index f0f3105d..b7d63009 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AC3.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AV1_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AV1_AAC.py index 0bc17a89..c76fddbc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AV1_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_AV1_AAC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_DASH_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_DASH_H264_AAC.py index fc304396..90f4266d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_DASH_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_DASH_H264_AAC.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_EC3.py index 64d6d8b1..f61628fb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_EC3.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HDR.py index 76b063ef..fc01632b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HDR.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC.py index f0ccd8ba..928c86c0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC_MKV.py index 9329e984..982cc98d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HEVC_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HLS_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HLS_H264_AAC.py index 648f2021..790424fb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HLS_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_HLS_H264_AAC.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MKV.py index 12a6f4af..ac4cfa4f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MP4.py index dc5bcd6a..ba4d5120 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_Seek_MP4.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(30),checkmute(30),seekfwd(30),checkmute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_AV1.py index 759871cc..14376209 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_DASH.py index eda8334d..d8dc063d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_DASH.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_HLS.py index 606f208c..32939a41 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_4K_HLS.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AC3.py index aae0ec86..6f971a66 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AV1_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AV1_AAC.py index ebff9c63..9afb9419 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AV1_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_AV1_AAC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_AAC.py index 87e07b73..bbbb2901 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_AAC.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_Main.py index d265fe92..eb217c55 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_EC3.py index 96b9912d..d453fa14 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_EC3.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HDR.py index 455f9b5e..9a01fba1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HDR.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_AAC.py index 6ef3ef00..a854ea1d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_AAC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_MKV.py index c855401d..f64df3a4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_Main10.py index 77c31288..873fab5d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HLS_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HLS_H264_AAC.py index 6fad1167..fea1cae7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HLS_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_HLS_H264_AAC.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MKV.py index 2203121d..621818b5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MP4.py index 71e32e82..529730aa 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_MP4.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(30),unmute(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_AV1.py index 7329022f..789fd98d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_AV1.py @@ -109,8 +109,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_DASH.py index bc40c90f..650cd21d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_HLS.py index ccae4a02..615d5f17 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AC3.py index 28ded44b..301714de 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AV1.py index c7c54af5..935b8fc3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_AV1.py @@ -109,8 +109,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_AAC.py index 3d7a3b7c..e32d5cf9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_AAC.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_Main.py index e1613172..9c648981 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_EC3.py index 111c82a1..537c4ec5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_EC3.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HDR.py index 1e8bd956..ca9e5835 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HDR.py @@ -109,8 +109,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_AAC.py index 802f119f..b3daddc7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_AAC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_Main10.py index ea51bff3..01fb17cb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -74,7 +73,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HLS_H264_AAC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HLS_H264_AAC.py index f1abddef..88562e2e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HLS_H264_AAC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_HLS_H264_AAC.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MKV.py index ccf3bcba..3f7561fc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MP4.py index 2aec9c42..e43af58b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Mute_UnMute_STRESS_MP4.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=mute(5),unmute(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_AV1.py index 15b2c7a2..e89689d2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_DASH.py index d82bc12e..08930875 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_DASH.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_HLS.py index 69a9fcd9..b1e7dfbf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_4K_HLS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AC3.py index b33896b9..44d962d1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AV1.py index e64082e9..be74f592 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_AV1.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264.py index 5d1cf4c1..e44505b1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264_Main.py index 97ef99e9..e87c91fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_EC3.py index 59e8b6dd..687553c2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HDR.py index c67c8e1e..a32cea64 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HDR.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC.py index 1c88bae6..f9838ae0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_MKV.py index 97756e6b..85f2794c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_Main10.py index 464715f6..f17821f8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -72,7 +71,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HLS_H264.py index 0242aab0..e9359d74 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MKV.py index 7d6213eb..34769d8d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MKV.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MP4.py index 70346a5e..0013115d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_MP4.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(30),play(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_AV1.py index ff6fdf39..01b16806 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_DASH.py index f970bad2..2e74bf9e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_DASH.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_HLS.py index a5e22d1b..435b90b1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_4K_HLS.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AC3.py index 9a4cf2d7..072c5495 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AV1.py index 6b4f2b05..871ffb20 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_AV1.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264.py index 0ee1c391..f15ea140 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264_Main.py index 7af25f4a..209b5191 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_EC3.py index c3dfd2e1..e68ec8de 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_EC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HDR.py index 46ca5a03..71fa0f64 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HDR.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC.py index 705b545f..9d188a9e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_MKV.py index 38bd4afc..42dcd5a1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_Main10.py index ea47c133..50457a37 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -73,7 +72,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HLS_H264.py index cc28a4a2..b412862d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_HLS_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MKV.py index 052047ec..f91e1e72 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MP4.py index a028ff02..76e3aa35 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_PlayPause_STRESS_MP4.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=pause(5),play(5),repeat(15)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_AV1.py index 9bda9223..50563658 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_DASH.py index d53eb317..1c01c041 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_DASH.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_HLS.py index fc474d98..32fc3b3d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_4K_HLS.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AC3.py index 90c94d3b..4075853d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1.py index e2c0bf1d..179550d4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_23FPS.py index d7aff61f..bcd7227e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_23FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -187,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_24FPS.py index a15d3b12..60f88cf0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_24FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_25FPS.py index 03b42e81..31502c01 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_25FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_30FPS.py index 38f8613f..e06ff8e8 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_30FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_50FPS.py index 35700a74..4a558491 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_50FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_60FPS.py index e3556914..20611e0d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_AV1_60FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -187,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_AC3.py index f5a0a9a9..33522cc6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_AC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(30),close(30),options=secondaryURL(.mpd)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_EC3.py index 62211ab3..69b918db 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_AAC_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(30),close(30),options=secondaryURL(.mpd)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264.py index 6337a86a..8403b506 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_AV1.py index 983731a8..85d6d407 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(60),close(60),options=secondaryURL()&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_H265.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_H265.py index aa95d33c..9b603b86 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_H265.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_H265.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(30),close(30),options=secondaryURL(.mpd)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_HLS_H264.py index 4db18bbf..490bdf38 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(30),close(30),options=secondaryURL(.m3u8)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_Main.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_Main.py index 1cc484c2..050fc5dd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_Main.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_DASH_H264_Main.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_EC3.py index 2dec42a7..de6678e7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_EC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -144,7 +143,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_AV1.py index f88d4ca9..fccf3f3b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -140,7 +139,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_DASH.py index d0a9794c..a8e8e3d9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_4K_DASH.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AC3.py index d5d2853f..5a86a107 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AC3.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -143,7 +142,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -172,8 +171,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AV1.py index f242784d..4a2f8012 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -140,7 +139,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_DASH_H264.py index 5809fd04..75662f07 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_EC3.py index 27e92bb8..6eb91af7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_EC3.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -171,8 +170,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC.py index 7b934945..06386c0c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC_MKV.py index d1f85144..dd49aaf6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HEVC_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HLS_H264.py index 7d26379b..0131abf7 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_HLS_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MKV.py index 95cbf632..5bc819cd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MP4.py index e6ce5ed7..d245deb3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Full_MP4.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mp4&operations=playtillend(0)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_H265_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_H265_AV1.py index 788f25c2..633518f1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_H265_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_H265_AV1.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=changeurl(60),close(60),options=secondaryURL()&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HDR.py index a7bc920f..57266a33 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HDR.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC.py index 1d220f3a..85272faf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -142,7 +141,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -170,8 +169,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_23FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_23FPS.py index 97e7b9e5..9e49cf9a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_23FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_23FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -187,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_24FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_24FPS.py index fc4ea871..7faa2d76 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_24FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_24FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_25FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_25FPS.py index 55e45fbd..f2d8193a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_25FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_25FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -187,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_30FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_30FPS.py index a799c9f1..b313873d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_30FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_30FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_50FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_50FPS.py index cceb6196..1137279c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_50FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_50FPS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -159,7 +158,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -187,8 +186,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_60FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_60FPS.py index 97e06794..2fccf03a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_60FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_60FPS.py @@ -114,8 +114,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) config_status = "SUCCESS" @@ -158,7 +157,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -186,8 +185,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_MKV.py index 48ef44dd..723af403 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_Main10.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_Main10.py index 95fc9c03..bf4b21df 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_Main10.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HEVC_Main10.py @@ -42,8 +42,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requisites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -71,7 +70,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264.py index e64fa1bb..85783c40 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264_DASH_H264.py index 126df7a8..7de259f1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_HLS_H264_DASH_H264.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=changeurl(30),close(30),options=secondaryURL(.mpd)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_License.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_License.py index 089d8c14..472959bb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_License.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_License.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation selected_drm = "Playready" drm_pre_requisite_status = checkDRMSupported(obj,"Playready") @@ -176,7 +175,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=(invalid_license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) # Monitoring the app progress and capturing the player messages @@ -270,8 +269,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_URL.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_URL.py index b0f64143..a3b012b5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_URL.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Invalid_URL.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # disabling proc validation pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) # Monitoring the app progress and capturing the player messages @@ -239,8 +238,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MKV.py index 01ce14a6..9c0ab719 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MKV.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -141,7 +140,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -169,8 +168,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MP4.py index 34ec7bf1..eb36e1e1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MP4.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_PlayReady.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_PlayReady.py index 81ca036b..42403b79 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_PlayReady.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_PlayReady.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=(license_url,preferred_drm)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_Widevine.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_Widevine.py index 26839679..5f534b4b 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_Widevine.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_MultiDRM_DASH_Preferred_Widevine.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=(license_url,preferred_drm)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AC3.py index 55fdc6ae..cac7bfc9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AC3.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AV1.py index 74329e6f..5fe26702 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_AV1.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_H264.py index 47f33b1a..3ee94d08 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true&type=dash - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_HEVC.py index 2e44d656..fadf37f9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_DASH_HEVC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_H264.py index 8e71a270..7c531db1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_H264.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_HEVC.py index 0a82e5d3..ee8be286 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_PlayReady_HLS_HEVC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether playready DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Playready") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.playready(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_AC3.py index d28ce0cc..f282caad 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_AC3.py @@ -112,8 +112,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_H264.py index 22a3bdcd..ea1090c5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_H264.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_HEVC.py index f7b017a5..95aed5d5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_DASH_HEVC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_H264.py index 20f90448..32f8b646 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_H264.py @@ -114,8 +114,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&drmconfigs=com.widevine(license_url)&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_HEVC.py index f7901ea5..07bb2928 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Play_Widevine_HLS_HEVC.py @@ -115,8 +115,7 @@ tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); # Checking whether widevine DRM is supported - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file drm_pre_requisite_status = checkDRMSupported(obj,"Widevine") if drm_pre_requisite_status == "TRUE": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&drmconfigs=com.widevine()&operations=close(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_DASH_H264.py index d76a9966..b04337f0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_DASH_H264.py @@ -130,8 +130,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=rewind4x(180),close(30)&options=checkInterval(7)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -189,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_HLS_H264.py index 6f6a6afd..834fb986 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_RW4x_HLS_H264.py @@ -130,8 +130,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -161,7 +160,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=rewind4x(180),close(30)&options=checkInterval(7)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -189,8 +188,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_AV1.py index 9d54ef85..9df0d110 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_DASH.py index 1abcd22c..d5558732 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_DASH.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_HLS.py index c8fe3abd..c5f08dde 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_4K_HLS.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AC3.py index 5f2aa741..dfc4cc42 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AV1.py index 84e7697d..c44ca904 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_AV1.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_DASH_H264.py index 2035a8dc..93d53a56 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_DASH_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekbwd(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -181,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_EC3.py index 62ba6e3e..8c1df26a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HDR.py index 73fb3c34..f2a28c6a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HDR.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekbwd(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC.py index 6dc64132..b66dfa4d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC_MKV.py index 1eb75cf4..2beb1ffb 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HEVC_MKV.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HLS_H264.py index 9eafb3d0..e94b466a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_HLS_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=seekbwd(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -181,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MKV.py index b16b30af..f02ee1dd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MKV.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekbwd(60),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MP4.py index aefefae3..68816205 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_BWD_MP4.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -153,7 +152,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekbwd(60)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -181,8 +180,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_AV1.py index cf892e91..b1f7c302 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_DASH.py index c106d49d..bdb40b3a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_DASH.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_HLS.py index 60969807..c52e012e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_4K_HLS.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AC3.py index 0731f857..43f98e61 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AC3.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -149,7 +148,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -177,8 +176,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AV1.py index fad047fb..b4a82b9a 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_DASH_H264.py index 3fb92130..f20a91fc 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_DASH_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekfwd(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_EC3.py index 858dd20e..fd140c79 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_EC3.py @@ -117,8 +117,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HDR.py index 8000c3d0..f3295bf4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HDR.py @@ -112,8 +112,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC.py index d7d387d9..c9f43a53 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.mpd&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC_MKV.py index 4bcbc9f7..bb45431e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HEVC_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HLS_H264.py index a61b2b9c..f1d4252f 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_HLS_H264.py @@ -119,8 +119,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/tdkuveaampplayer/build/index.html? #url=.m3u8&operations=seekfwd(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MKV.py index f9084552..761061e6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -145,7 +144,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -173,8 +172,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MP4.py index c4c2054c..35a27540 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_FWD_MP4.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_AV1.py index b582577e..595183b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_DASH.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_DASH.py index 34da36e1..6bb55050 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_DASH.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_DASH.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_HLS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_HLS.py index 7f18e21a..f442c71d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_HLS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_4K_HLS.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AC3.py index ab2628de..c9ec0195 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AC3.py @@ -113,8 +113,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AV1.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AV1.py index 99bb888f..555583d1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AV1.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_AV1.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_DASH_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_DASH_H264.py index 84907afc..1017565d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_DASH_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_DASH_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30)seekbwd(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_EC3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_EC3.py index 6d0bf023..19cc5dac 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_EC3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_EC3.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -151,7 +150,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -179,8 +178,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HDR.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HDR.py index 90f62045..c4878114 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HDR.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HDR.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC.py index eddc4443..36230147 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC_MKV.py index 9ed3f9b9..188cb2c9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HEVC_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HLS_H264.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HLS_H264.py index 2923177a..cddddce1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HLS_H264.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_HLS_H264.py @@ -118,8 +118,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -152,7 +151,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.m3u8&operations=seekfwd(30)seekbwd(30)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -180,8 +179,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MKV.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MKV.py index 475ab423..6e1da83e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MKV.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MKV.py @@ -111,8 +111,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -146,7 +145,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mkv&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -174,8 +173,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MP4.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MP4.py index 17cae4b3..e5cc2c96 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MP4.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Seek_Pos_MP4.py @@ -115,8 +115,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the wekit instance via RDKShell and - # moving it to the front, openning a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -150,7 +149,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mp4&operations=seekfwd(30)seekbwd(30),close(30)&autotest=true&options=checkInterval(5),seekInterval(10) - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -178,8 +177,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Preferred_Audio.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Preferred_Audio.py index 200f6df8..adcca5a3 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Preferred_Audio.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Preferred_Audio.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -147,7 +146,7 @@ #Example video test url #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=prefaudio(30),close(20),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -175,8 +174,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Thumbnail_Track.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Thumbnail_Track.py index dc69b022..34322817 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Thumbnail_Track.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Thumbnail_Track.py @@ -116,8 +116,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -148,7 +147,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=setthumbnail(30),close(20),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -176,8 +175,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Video_Track.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Video_Track.py index 7f0e8bbb..2c27a3c9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Video_Track.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_UVE_AAMP_Set_Video_Track.py @@ -97,8 +97,7 @@ print("\nCheck Pre conditions...") tdkTestObj = obj.createTestStep('rdkv_media_pre_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the pre-requites for media test. Launching the webkit instance via RDKShell and - # moving it to the front, opening a socket connection to the webkit inspect page and + # Setting the pre-requisites for media test. Launching the required test app via AppManager and # getting the details for proc validation from config file pre_requisite_status,webkit_console_socket,validation_dict = setMediaTestPreRequisites(obj,MediaValidationVariables.unified_player_app_id,MediaValidationVariables.unified_player_app_download_url) if pre_requisite_status == "SUCCESS": @@ -129,7 +128,7 @@ #http://*testManagerIP*/rdk-test-tool/fileStore/lightning-apps/unifiedplayer/build/index.html? #url=.mpd&operations=setvideotrack(30),close(20),options=checkInterval(10)&autotest=true - # Setting the video test url in webkit instance using RDKShell + # Setting the video test url in PersistentStore and launching the test app using AppManager setPS_value(video_test_url) launch_status = launchApp(obj,MediaValidationVariables.unified_player_app_id) if "SUCCESS" in launch_status: @@ -157,8 +156,7 @@ print("\nSet post conditions...") tdkTestObj = obj.createTestStep('rdkv_media_post_requisites'); tdkTestObj.executeTestCase(expectedResult); - # Setting the post-requites for media test.Removing app url from webkit instance and - # moving next high z-order app to front (residentApp if its active) + # Setting the post-requisites for media test. Terminating the bolt app. post_requisite_status = setMediaTestPostRequisites(MediaValidationVariables.unified_player_app_id) if post_requisite_status == "SUCCESS": print("Post conditions for the test are set successfully\n") From 81ac3c2eaf7ff3be431369258c4d62a88b093f72 Mon Sep 17 00:00:00 2001 From: asures684 Date: Tue, 2 Jun 2026 14:31:59 +0530 Subject: [PATCH 3/9] TDK-11955: MVS framework cleanup & fixes for app loading issue [Sprint M149] Reason for change: MVS Framework Updates Test Procedure: Verify with TDK TM Risks: None Signed-off-by: Aromal Suresh --- .../RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py | 2 +- .../RDKV_CERT_MVS_Animation_Check_Graphics_workload.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py | 2 +- .../RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Operations.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py | 2 +- .../RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py index 7574cee2..66ba10da 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_Device_CPULoad.py @@ -141,7 +141,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py index 3f150f88..a7930e5d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Average_FPS.py @@ -152,7 +152,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py index 0ec23a9a..140e91b4 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Check_Graphics_workload.py @@ -154,7 +154,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.multi_animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py index 1e23b313..9a5fce9d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Complex_Average_FPS.py @@ -155,7 +155,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.object_animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py index 1c390103..790c5c5e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Object_Compare_ScreenShots.py @@ -183,7 +183,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.object_animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py index 592afb4f..f4a939f0 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Objects_Average_FPS.py @@ -154,7 +154,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.object_animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py index 6eb80b11..51ab7205 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Operations.py @@ -146,7 +146,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py index 6d1ccd29..502a32b9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_PlayPause_STRESS.py @@ -144,7 +144,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py index 62746117..ed75b709 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Sample_Average_FPS_WEBUI.py @@ -145,7 +145,7 @@ animation_test_url = MediaValidationVariables.sample_animation_test_url print(animation_test_url) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py index 36836d16..b36fc010 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Simple_Average_FPS.py @@ -155,7 +155,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.object_animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py index 3106e7f9..37c79eb6 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_StartStop_STRESS.py @@ -144,7 +144,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.animation_app_id) if "SUCCESS" in launch_status: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py index 4b2ecb0f..c1d80554 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Animation_Texts_Average_FPS.py @@ -155,7 +155,7 @@ # Getting the complete test app URL animation_test_url = getTestURL(appURL,appArguments) - # Setting the animation test url in webkit instance using RDKShell + # Setting the animation test url in PersistentStore and launching the animation test app using AppManager setPS_value(animation_test_url) launch_status = launchApp(obj,MediaValidationVariables.object_animation_app_id) if "SUCCESS" in launch_status: From d7a34a60f38fa9e0672892336e88dc109b8e652e Mon Sep 17 00:00:00 2001 From: Midhun2412 Date: Tue, 2 Jun 2026 22:34:13 +0530 Subject: [PATCH 4/9] BrowserTest AppManager Implementation --- .../RDKV_CERT_PVS_Browser_Animation_FPS.py | 128 +++++------------- 1 file changed, 35 insertions(+), 93 deletions(-) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py index 1c9b61f1..c3c6a7b1 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py @@ -91,6 +91,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True) @@ -115,111 +116,52 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.animation_benchmark_test_url - print("\n Check Pre conditions") - sub_category_failure = False - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)) - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE" - else: - status = "FAILURE" + app_bundle_name=BrowserPerformanceVariables.animation_app_bundle_name + app_download_url=BrowserPerformanceVariables.animation_app_download_url + app_name = "com.rdkcentral.animation" + + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - print("\nPre conditions for the test are set successfully") - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") + time.sleep(20) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_AnimationBenchmark') tdkTestObj.executeTestCase(expectedResult) - current_url = tdkTestObj.getResultDetails() + browser_score_dict = json.loads(tdkTestObj.getResultDetails()) result = tdkTestObj.getResult() - if current_url != None and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("Current URL:",current_url) - print("\nSet test URL") - - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",browser_test_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - time.sleep(10) - - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - new_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("URL(",new_url,") is set successfully") - - time.sleep(20) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_AnimationBenchmark') - tdkTestObj.executeTestCase(expectedResult) - browser_score_dict = json.loads(tdkTestObj.getResultDetails()) - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, animation_threshold_value = getDeviceConfigKeyValue(conf_file,"ANIMATION_BENCHMARK_THRESHOLD_VALUE") - if animation_threshold_value != "": - print("\n Browser score from test: ",browser_score) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - print("\n Threshold value for browser score:",animation_threshold_value) - Summ_list.append('Threshold value for browser score: {}'.format(animation_threshold_value)) - if float(browser_score) > float(animation_threshold_value): - print("\n The browser performance score is high as expected\n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The browser performance score is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the threshold value from config file") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the browser score") + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS"); + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, animation_threshold_value = getDeviceConfigKeyValue(conf_file,"ANIMATION_BENCHMARK_THRESHOLD_VALUE") + if animation_threshold_value != "": + print("\n Browser score from test: ",browser_score) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + print("\n Threshold value for browser score:",animation_threshold_value) + Summ_list.append('Threshold value for browser score: {}'.format(animation_threshold_value)) + if float(browser_score) > float(animation_threshold_value): + print("\n The browser performance score is high as expected\n") else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE") - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",current_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS") - else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE") + print("\n The browser performance score is lower than expected \n") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to set URL to webkitbrowser") + print("Failed to get the threshold value from config file") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to get URL in webkitbrowser") + print("Failed to get the browser score") + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE") + print("Failed to launch the app") getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj) obj.unloadModule("rdkv_performance") else: obj.setLoadModuleStatus("FAILURE") From 9c5421a4acc9fead8e7eb8bd3a44cc47f893b411 Mon Sep 17 00:00:00 2001 From: Midhun2412 Date: Tue, 2 Jun 2026 23:37:07 +0530 Subject: [PATCH 5/9] Updated RDKV_BrowserTest for AppManager --- .../fileStore/BrowserPerformanceVariables.py | 36 +- framework/fileStore/rdkv_performancelib.py | 379 +++++++++++++++++- .../RDKV_CERT_PVS_Browser_CSS3.py | 152 +++---- .../RDKV_CERT_PVS_Browser_Kraken.py | 128 ++---- .../RDKV_CERT_PVS_Browser_MotionMark.py | 143 ++----- .../RDKV_CERT_PVS_Browser_Octane.py | 150 +++---- .../RDKV_CERT_PVS_Browser_SmashCat.py | 127 ++---- .../RDKV_CERT_PVS_Browser_Speedometer.py | 142 ++----- 8 files changed, 646 insertions(+), 611 deletions(-) diff --git a/framework/fileStore/BrowserPerformanceVariables.py b/framework/fileStore/BrowserPerformanceVariables.py index 3c0bdc85..7f5da34c 100644 --- a/framework/fileStore/BrowserPerformanceVariables.py +++ b/framework/fileStore/BrowserPerformanceVariables.py @@ -16,20 +16,38 @@ # See the License for the specific language governing permissions and # limitations under the License. ######################################################################### -css3_test_url="https://css3test.com/#css3-background" -css3_test_subcategory_list = ["Animations Level 1", "Backgrounds and Borders Level 3", "Backgrounds and Borders Level 4", "Basic User Interface Level 3", "Basic User Interface Level 4", "Box Alignment Level 3", "Cascading and Inheritance Level 3", "Cascading and Inheritance Level 4", "Compositing and Blending Level 1", "Custom Properties for Cascading Variables Level 1", "Filter Effects Level 1", "Flexible Box Layout Level 1", "Fonts Level 3", "Fonts Level 4", "Generated Content Level 3", "Grid Layout Level 1", "Grid Layout Level 2", "Grid Layout Level 3", "Images Level 3", "Lists Level 3", "Masking Level 1", "Media Queries Level 3", "Media Queries Level 4", "Media Queries Level 5", "Pointer Events Level 1", "Pointer Events Level 3", "Positioned Layout Level 3", "Ruby Layout Level 1", "Scroll Snap Level 1", "Shadow Parts", "Shapes Level 1", "SVG 2 Coordinate Systems, Transformations and Units", "SVG 2 Geometry Properties", "SVG 2 Paint Servers", "SVG 2 Painting", "SVG 2 Scripting and Interactivity", "SVG 2 Text", "Text Decoration Level 3", "Text Decoration Level 4", "Transforms Level 1", "Transforms Level 2", "Transitions", "Will Change Level 1"] -octane_test_url ="https://chromium.github.io/octane/?auto=1" + +strike_app_download_url = "" +strike_app_bundle_name = "" + +octane_app_download_url = "" +octane_app_bundle_name = "" octane_test_subcategory_list = ["Crypto","EarleyBoyer","Splay","SplayLatency","pdf.js","CodeLoad"] + +animation_app_download_url = "" +animation_app_bundle_name = "" + +kraken_app_download_url = "" +kraken_app_bundle_name = "" + +smashcat_app_download_url = "" +smashcat_app_bundle_name = "" + +motion_app_download_url = "" +motion_app_bundle_name = "" + +speed_app_download_url = "" +speed_app_bundle_name = "" + +css3_app_download_url = "" +css3_app_bundle_name = "" +css3_test_subcategory_list = ["Animations Level 1", "Backgrounds and Borders Level 3", "Backgrounds and Borders Level 4", "Basic User Interface Level 3", "Basic User Interface Level 4", "Box Alignment Level 3", "Cascading and Inheritance Level 3", "Cascading and Inheritance Level 4", "Compositing and Blending Level 1", "Custom Properties for Cascading Variables Level 1", "Filter Effects Level 1", "Flexible Box Layout Level 1", "Fonts Level 3", "Fonts Level 4", "Generated Content Level 3", "Grid Layout Level 1", "Grid Layout Level 2", "Grid Layout Level 3", "Images Level 3", "Lists Level 3", "Masking Level 1", "Media Queries Level 3", "Media Queries Level 4", "Media Queries Level 5", "Pointer Events Level 1", "Pointer Events Level 3", "Positioned Layout Level 3", "Ruby Layout Level 1", "Scroll Snap Level 1", "Shadow Parts", "Shapes Level 1", "SVG 2 Coordinate Systems, Transformations and Units", "SVG 2 Geometry Properties", "SVG 2 Paint Servers", "SVG 2 Painting", "SVG 2 Scripting and Interactivity", "SVG 2 Text", "Text Decoration Level 3", "Text Decoration Level 4", "Transforms Level 1", "Transforms Level 2", "Transitions", "Will Change Level 1"] + + html5_test_url ="https://html5test.com/" html5_test_subcategory_list = ["Parsing rules","Elements","Forms","Web Components","Location and Orientation","Communication","Streams","Performance","Security","Payments","Video","Audio","Streaming","Animation","Files"] sunspider_url = "https://webkit.org/perf/sunspider-1.0.2/sunspider-1.0.2/driver.html" sunspider_test_subcategory_list = ["access","bitops","3bit-bits-in-byte","bits-in-byte","bitwise-and","nsieve-bits","controlflow","recursive","crypto","math"] -strike_tool_url = "https://strike.lightningjs.io/" -motionmark_test_url = "https://browserbench.org/MotionMark1.2/" -animation_benchmark_test_url = "https://themaninblue.com/experiment/AnimationBenchmark/canvas/" -speedometer_test_url = "https://browserbench.org/Speedometer3.1/" -smashcat_test_url = "http://www.smashcat.org/av/canvas_test/" -kraken_test_url = "https://mozilla.github.io/krakenbenchmark.mozilla.org/kraken-1.1/driver.html" #https://askubuntu.com/questions/432255/what-is-the-display-environment-variable display_variable=":0" #Give the path where the chromedriver executable is available diff --git a/framework/fileStore/rdkv_performancelib.py b/framework/fileStore/rdkv_performancelib.py index 972044b5..f0d6e448 100644 --- a/framework/fileStore/rdkv_performancelib.py +++ b/framework/fileStore/rdkv_performancelib.py @@ -80,6 +80,44 @@ def init_module(libobj,port,deviceInfo): print("\nException Occurred while getting MAC \n") print(e) +#------------------------------------------------------------------- +#GET THE WEBINSPECT PORT FROM THE DEVICE LOG VIA SSH +#------------------------------------------------------------------- +def get_webinspect_port(): + try: + # Get SSH parameters from configuration file + ssh_params = rdkservice_getSSHParams(libObj.realpath, deviceIP) + if ssh_params == "" or ssh_params == "{}": + raise Exception("Failed to get SSH parameters from configuration") + + ssh_params_dict = json.loads(ssh_params) + ssh_method = ssh_params_dict.get("ssh_method") + credentials = ssh_params_dict.get("credentials") + + if not ssh_method or not credentials: + raise Exception("SSH method or credentials not found in configuration") + + # Execute command on DUT to get inspector port from dacapp.log + cmd = "cat /opt/logs/dacapp.log | grep 'inspector port set to'" + output = rdkservice_getRequiredLog(ssh_method, credentials, cmd) + + if output == "EXCEPTION" or output == "": + raise Exception("Failed to retrieve log output from DUT") + + # Parse the port number from output + for line in output.splitlines(): + match = re.search(r'inspector port set to\s+(\d+)', line, re.IGNORECASE) + if match: + return match.group(1) + + # If no port found in output + raise Exception("Inspector port not found in dacapp.log output") + + except Exception as e: + print("Unable to get webinspect port from dacapp.log:", e) + raise + + #--------------------------------------------------------------- #POST CURL REQUEST USING PYTHON REQUESTS #--------------------------------------------------------------- @@ -343,7 +381,34 @@ def rdkservice_getBrowserScore_CSS3(): try: browser_score_dict = {} browser_subcategory_list = BrowserPerformanceVariables.css3_test_subcategory_list - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -386,7 +451,33 @@ def rdkservice_getBrowserScore_Octane(): try: browser_score_dict = {} browser_subcategory_list = BrowserPerformanceVariables.octane_test_subcategory_list - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -478,8 +569,32 @@ def rdkservice_getBrowserScore_HTML5(): try: browser_score_dict = {} browser_subcategory_list = BrowserPerformanceVariables.html5_test_subcategory_list - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' - print("url:",webinspectURL) + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -524,7 +639,32 @@ def rdkservice_getBrowserScore_SunSpider(): browser_score = '' browser_score_dict = {} browser_subcategory_list = BrowserPerformanceVariables.sunspider_test_subcategory_list - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(60) @@ -1100,7 +1240,33 @@ def rdkservice_getBrowserScore_AnimationBenchmark(): fps_list = [] try: browser_score_dict = {} - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(20) @@ -1157,7 +1323,33 @@ def get_graphical_plugins(conf_file): def rdkservice_getBrowserScore_Speedometer(): try: browser_score_dict = {} - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -1183,7 +1375,33 @@ def rdkservice_getBrowserScore_Speedometer(): def rdkservice_getBrowserScore_MotionMark(): try: browser_score_dict = {} - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -1216,7 +1434,33 @@ def rdkservice_getBrowserScore_MotionMark(): def rdkservice_getBrowserScore_Smashcat(): try: browser_score_dict = {} - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) + driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -1256,7 +1500,32 @@ def rdkservice_getBrowserScore_Smashcat(): def rdkservice_getBrowserScore_Kraken(): try: browser_score_dict = {} - webinspectURL = 'http://'+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/Main.html?ws='+deviceIP+':'+BrowserPerformanceVariables.webinspect_port+'/socket/1/1/WebPage' + # Get webinspect port with error handling + try: + webinspect_port = get_webinspect_port() + print("\nWebinspect port retrieved: ", webinspect_port) + except Exception as e: + print("\nFailed to retrieve webinspect port:", e) + browser_score_dict["main_score"] = "Unable to get the browser score" + browser_score_dict = json.dumps(browser_score_dict) + return browser_score_dict + + webinspectURL = 'http://'+deviceIP+':'+webinspect_port+'/Main.html?ws='+deviceIP+':'+webinspect_port+'/socket/1/1/WebPage' + print("\nWebinspect URL:", webinspectURL) + + # Test basic connectivity before opening browser + try: + print("\nTesting connection to webinspect server...") + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.settimeout(5) + result = sock.connect_ex((deviceIP, int(webinspect_port))) + sock.close() + if result == 0: + print("Connection to webinspect server successful") + else: + print("Connection to webinspect server failed (code: %d)" % result) + except Exception as e: + print("Connection test error:", e) driver = openChromeBrowser(webinspectURL); if driver != "EXCEPTION OCCURRED": time.sleep(10) @@ -1980,3 +2249,93 @@ def setPS_value(video_test_url): except Exception as e: print("Failed to set the PersistentStore value: ", e) return None + +#----------------------------------------------------------------------------------------- +#TO PRESS KEYS IN UI USING APP MANAGER +#----------------------------------------------------------------------------------------- +def browsertest_keypress(obj,app_name,keys): + if len(keys) >1: + key_navigate = keys[0] + key_select = keys[1] + else: + key_navigate = keys + + result="FAILURE" + param='[' + index=0 + expectedResult= "SUCCESS" + print(f"Getting the app instance id of {app_name}") + tdkTestObj = obj.createTestStep('rdkservice_getValue') + tdkTestObj.addParameter("method","org.rdk.AppManager.getLoadedApps") + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResultDetails() + status = tdkTestObj.getResult() + if status == expectedResult and app_name in result: + appinstanceid="" + result = ast.literal_eval(result) + for item in result: + if isinstance(item, dict) and item.get("appId") == app_name: + appinstanceid = item.get("appInstanceId") + if appinstanceid != "": + print("####App instance id of the launched app is: ", appinstanceid) + for key in key_navigate: + if ":" in key: + param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": ['+ key.split(":")[0] +'],\\"delay\\":0.1}' + else: + param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": [],\\"delay\\":0.1}' + if index != (len(key_navigate)-1): + param = param + ',' + else: + param = param + ']' + index +=1 + + params = '{"client":' + appinstanceid + ',"keys":"{\\"keys\\":'+ param + '}"' + + + tdkTestObj = obj.createTestStep('rdkservice_setValue') + tdkTestObj.addParameter("method","org.rdk.RDKWindowManager.generateKey") + tdkTestObj.addParameter("value",params) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS") + print("SUCCESS: Navigated through UI and started the test") + result = "SUCCESS" + time.sleep(3) + if key_select !=[]: + param='[' + index=0 + for key in key_select: + if ":" in key: + param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": ['+ key.split(":")[0] +'],\\"delay\\":0.1}' + else: + param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": [],\\"delay\\":0.1}' + if index != (len(key_select)-1): + param = param + ',' + else: + param = param + ']' + index +=1 + params = '{"client":' + appinstanceid + ',"keys":"{\\"keys\\":'+ param + '}"' + tdkTestObj = obj.createTestStep('rdkservice_setValue') + tdkTestObj.addParameter("method","org.rdk.RDKWindowManager.generateKey") + tdkTestObj.addParameter("value",params) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS") + print("SUCCESS: Navigated through UI and started the test") + result = "SUCCESS" + else: + tdkTestObj.setResultStatus("FAILURE") + print("FAILURE : Failed to navigate through UI") + else: + tdkTestObj.setResultStatus("FAILURE") + print("FAILURE : Failed to start the test by navigating through UI") + else: + print("Failed to get appinstanceId") + tdkTestObj.setResultStatus("FAILURE") + else: + print("Failed to get the loaded apps") + tdkTestObj.setResultStatus("FAILURE") + return result + \ No newline at end of file diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py index 2730fcea..632c5d42 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py @@ -74,6 +74,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True); @@ -97,125 +98,66 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.css3_test_url; + app_bundle_name=BrowserPerformanceVariables.css3_app_bundle_name + app_download_url=BrowserPerformanceVariables.css3_app_download_url browser_subcategory_list = BrowserPerformanceVariables.css3_test_subcategory_list - print("Check Pre conditions") - sub_category_failure = False - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)); - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE"; - else: - status = "FAILURE"; + app_name = "com.rdkcentral.css3" + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - print("\nPre conditions for the test are set successfully"); - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); + + time.sleep(20) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_CSS3'); tdkTestObj.executeTestCase(expectedResult); - current_url = tdkTestObj.getResultDetails(); - result = tdkTestObj.getResult(); - if current_url != None and expectedResult in result: + browser_score_dict = json.loads(tdkTestObj.getResultDetails()); + result = tdkTestObj.getResult() + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: tdkTestObj.setResultStatus("SUCCESS"); - print("Current URL:",current_url) - print("\nSet CSS3 test URL") - - tdkTestObj = obj.createTestStep('rdkservice_setValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.addParameter("value",browser_test_url); - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - if expectedResult in result: - time.sleep(10) - - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.executeTestCase(expectedResult); - new_url = tdkTestObj.getResultDetails(); - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - print("URL(",new_url,") is set successfully") - - time.sleep(20) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_CSS3'); - tdkTestObj.executeTestCase(expectedResult); - browser_score_dict = json.loads(tdkTestObj.getResultDetails()); - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, css3_threshold_value = getDeviceConfigKeyValue(conf_file,"CSS3_THRESHOLD_VALUE") - result2, css3_subcategory_threshold_values = getDeviceConfigKeyValue(conf_file,"CSS3_SUBCATEGORY_THRESHOLD_VALUES") - if all(value != "" for value in (css3_threshold_value,css3_subcategory_threshold_values)): - print("\n Threshold value for browser performance main score: ",css3_threshold_value) - Summ_list.append('Threshold value for browser performance main score:{} '.format(css3_threshold_value)) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - if int(browser_score) > int(css3_threshold_value): - print("\n The browser performance main score is high as expected\n") - subcategory_threshold_value_list = css3_subcategory_threshold_values.split(',') - for index,subcategory in enumerate(browser_subcategory_list): - if subcategory in browser_score_dict: - if int(browser_score_dict[subcategory]) < int(subcategory_threshold_value_list[index]): - print("\n Subcategory {} score:{} is less than the threshold value:{} \n".format(subcategory,browser_score_dict[subcategory],subcategory_threshold_value_list[index])) - tdkTestObj.setResultStatus("FAILURE") - sub_category_failure = True - if not sub_category_failure: - tdkTestObj.setResultStatus("SUCCESS") - print("\n The subcategory scores of {} are also as high as expected \n".format(browser_subcategory_list)) - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The overall browser performance is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE"); - print("\n The browser performance main score is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get the threshold value from config file") + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, css3_threshold_value = getDeviceConfigKeyValue(conf_file,"CSS3_THRESHOLD_VALUE") + result2, css3_subcategory_threshold_values = getDeviceConfigKeyValue(conf_file,"CSS3_SUBCATEGORY_THRESHOLD_VALUES") + if all(value != "" for value in (css3_threshold_value,css3_subcategory_threshold_values)): + print("\n Threshold value for browser performance main score: ",css3_threshold_value) + Summ_list.append('Threshold value for browser performance main score:{} '.format(css3_threshold_value)) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + if int(browser_score) > int(css3_threshold_value): + print("\n The browser performance main score is high as expected\n") + subcategory_threshold_value_list = css3_subcategory_threshold_values.split(',') + for index,subcategory in enumerate(browser_subcategory_list): + if subcategory in browser_score_dict: + if int(browser_score_dict[subcategory]) < int(subcategory_threshold_value_list[index]): + print("\n Subcategory {} score:{} is less than the threshold value:{} \n".format(subcategory,browser_score_dict[subcategory],subcategory_threshold_value_list[index])) + tdkTestObj.setResultStatus("FAILURE") + sub_category_failure = True + if not sub_category_failure: + tdkTestObj.setResultStatus("SUCCESS") + print("\n The subcategory scores of {} are also as high as expected \n".format(browser_subcategory_list)) else: - tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get the browser score") + tdkTestObj.setResultStatus("FAILURE") + print("\n The overall browser performance is lower than expected \n") else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE"); - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.addParameter("value",current_url); - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS"); - else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE"); + print("\n The browser performance main score is lower than expected \n") else: tdkTestObj.setResultStatus("FAILURE"); - print("Failed to set URL to webkitbrowser") + print("Failed to get the threshold value from config file") + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Failed to get the browser score") + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); else: tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get URL in webkitbrowser") + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE"); + print("Failed to launch the app") getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj); obj.unloadModule("rdkv_performance"); else: obj.setLoadModuleStatus("FAILURE"); diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py index 72f650b5..631c4365 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py @@ -90,6 +90,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True); @@ -115,108 +116,53 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.kraken_test_url - print("\n Check Pre conditions") - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)) - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE" - else: - status = "FAILURE" + app_bundle_name=BrowserPerformanceVariables.kraken_app_bundle_name + app_download_url=BrowserPerformanceVariables.kraken_app_download_url + app_name = "com.rdkcentral.kraken" + + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - print("\nPre conditions for the test are set successfully") - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") + time.sleep(900) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Kraken') tdkTestObj.executeTestCase(expectedResult) - current_url = tdkTestObj.getResultDetails() + browser_score_dict = json.loads(tdkTestObj.getResultDetails()) result = tdkTestObj.getResult() - if current_url != None and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("Current URL:",current_url) - print("\nSet test URL") - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",browser_test_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(10) - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - new_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("URL(",new_url,") is set successfully") - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(900) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Kraken') - tdkTestObj.executeTestCase(expectedResult) - browser_score_dict = json.loads(tdkTestObj.getResultDetails()) - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, kraken_threshold_value = getDeviceConfigKeyValue(conf_file,"KRAKEN_THRESHOLD_VALUE") - if kraken_threshold_value != "": - print("\n Browser score from test: ",browser_score) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - print("\n Threshold value for browser score:",kraken_threshold_value) - Summ_list.append('Threshold value for browser score: {}'.format(kraken_threshold_value)) - if 0 < float(browser_score) < float(kraken_threshold_value): - print("\n The browser performance score is low as expected\n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The browser performance score is higher than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the threshold value from config file") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the browser score") - else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE") - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",current_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS") + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS"); + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, kraken_threshold_value = getDeviceConfigKeyValue(conf_file,"KRAKEN_THRESHOLD_VALUE") + if kraken_threshold_value != "": + print("\n Browser score from test: ",browser_score) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + print("\n Threshold value for browser score:",kraken_threshold_value) + Summ_list.append('Threshold value for browser score: {}'.format(kraken_threshold_value)) + if 0 < float(browser_score) < float(kraken_threshold_value): + print("\n The browser performance score is low as expected\n") else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE") + print("\n The browser performance score is higher than expected \n") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to set URL to webkitbrowser") + print("Failed to get the threshold value from config file") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to get URL in webkitbrowser") + print("Failed to get the browser score") + + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE") + print("Failed to launch the app") + getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj) obj.unloadModule("rdkv_performance") else: obj.setLoadModuleStatus("FAILURE") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py index 8c4aa27a..004250bf 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py @@ -90,6 +90,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True) @@ -114,120 +115,58 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.motionmark_test_url - print("\n Check Pre conditions") - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)) - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE" - else: - status = "FAILURE" - if status == "SUCCESS": - print("\nPre conditions for the test are set successfully") - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - current_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if current_url != None and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("Current URL:",current_url) - print("\nSet test URL") + app_bundle_name=BrowserPerformanceVariables.motion_app_bundle_name + app_download_url=BrowserPerformanceVariables.motion_app_download_url + sub_category_failure = False - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",browser_test_url) + app_name = "com.rdkcentral.motion" + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) + if status == "SUCCESS": + result = browsertest_keypress(obj,app_name,[["9","13"],[]]) + if result == expectedResult: + time.sleep(420) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_MotionMark') tdkTestObj.executeTestCase(expectedResult) + browser_score_dict = json.loads(tdkTestObj.getResultDetails()) result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(10) - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - new_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("URL(",new_url,") is set successfully") - time.sleep(10) - params = '{"keys":[{"keyCode": 9,"modifiers": [],"delay":1.0,"callsign":"WebKitBrowser","client":"WebKitBrowser"},{"keyCode": 9,"modifiers": [],"delay":1.0,"callsign":"WebKitBrowser","client":"WebKitBrowser"},{"keyCode": 13,"modifiers": [],"delay":1.0,"callsign":"WebKitBrowser","client":"WebKitBrowser"}]}' - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.generateKey") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(420) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_MotionMark') - tdkTestObj.executeTestCase(expectedResult) - browser_score_dict = json.loads(tdkTestObj.getResultDetails()) - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, motionmark_threshold_value = getDeviceConfigKeyValue(conf_file,"MOTIONMARK_THRESHOLD_VALUE") - if motionmark_threshold_value != "": - print("\n Browser score from test: ",browser_score) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - print("\n Threshold value for browser score:",motionmark_threshold_value) - Summ_list.append('Threshold value for browser score: {}'.format(motionmark_threshold_value)) - if float(browser_score) > float(motionmark_threshold_value): - print("\n The browser performance score is high as expected\n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The browser performance score is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the threshold value from config file") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the browser score") + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS"); + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, motionmark_threshold_value = getDeviceConfigKeyValue(conf_file,"MOTIONMARK_THRESHOLD_VALUE") + if motionmark_threshold_value != "": + print("\n Browser score from test: ",browser_score) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + print("\n Threshold value for browser score:",motionmark_threshold_value) + Summ_list.append('Threshold value for browser score: {}'.format(motionmark_threshold_value)) + if float(browser_score) > float(motionmark_threshold_value): + print("\n The browser performance score is high as expected\n") else: tdkTestObj.setResultStatus("FAILURE") - print("\n Error while executing generate key method") - else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE") - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",current_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS") + print("\n The browser performance score is lower than expected \n") else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE") + print("Failed to get the threshold value from config file") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to set URL to webkitbrowser") + print("Failed to get the browser score") else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get URL in webkitbrowser") + print("\n Error while executing generate key method") + + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE") + print("Failed to launch the app") + getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj) obj.unloadModule("rdkv_performance") else: obj.setLoadModuleStatus("FAILURE") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py index aa40200c..2f74425d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py @@ -92,121 +92,69 @@ obj.setLoadModuleStatus(result); expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.octane_test_url; + app_bundle_name=BrowserPerformanceVariables.app_bundle_name + app_download_url=BrowserPerformanceVariables.app_download_url browser_subcategory_list = BrowserPerformanceVariables.octane_test_subcategory_list sub_category_failure = False - print("Check Pre conditions") - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)); - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - set_status = set_pre_requisites(obj) - #Need to revert the values since we are changing plugin status - revert="YES" - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE"; + app_name = "com.rdkcentral.octane" + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - print("\nPre conditions for the test are set successfully"); - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); + time.sleep(300) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Octane'); tdkTestObj.executeTestCase(expectedResult); - current_url = tdkTestObj.getResultDetails(); - result = tdkTestObj.getResult(); - if current_url != None and expectedResult in result: + browser_score_dict = json.loads(tdkTestObj.getResultDetails()); + result = tdkTestObj.getResult() + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: tdkTestObj.setResultStatus("SUCCESS"); - print("Current URL:",current_url) - print("\nSet Octane test URL") - tdkTestObj = obj.createTestStep('rdkservice_setValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.addParameter("value",browser_test_url); - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - if expectedResult in result: - time.sleep(10) - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.executeTestCase(expectedResult); - new_url = tdkTestObj.getResultDetails(); - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - print("URL(",new_url,") is set successfully") - time.sleep(300) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Octane'); - tdkTestObj.executeTestCase(expectedResult); - browser_score_dict = json.loads(tdkTestObj.getResultDetails()); - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"].replace("Octane Score: ",""); - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, octane_threshold_value = getDeviceConfigKeyValue(conf_file,"OCTANE_THRESHOLD_VALUE") - result2, octane_subcategory_threshold_values = getDeviceConfigKeyValue(conf_file,"OCTANE_SUBCATEGORY_THRESHOLD_VALUES") - if all(value != "" for value in (octane_threshold_value,octane_subcategory_threshold_values)): - print("\n Threshold value for browser performance main score: ",octane_threshold_value) - Summ_list.append('Threshold value for browser performance main score:{} '.format(octane_threshold_value)) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - if int(browser_score) > int(octane_threshold_value): - print("\n The browser performance main score is high as expected \n") - subcategory_threshold_value_list = octane_subcategory_threshold_values.split(',') - for index,subcategory in enumerate(browser_subcategory_list): - if int(browser_score_dict[subcategory]) < int(subcategory_threshold_value_list[index]): - print("\n Subcategory {} score:{} is less than the threshold value:{} \n".format(subcategory,browser_score_dict[subcategory],subcategory_threshold_value_list[index])) - tdkTestObj.setResultStatus("FAILURE") - sub_category_failure = True - if not sub_category_failure: - tdkTestObj.setResultStatus("SUCCESS") - print("\n The subcategory scores of {} are also as high as expected\n".format(browser_subcategory_list)) - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The overall browser performance is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE"); - print("\n The browser performance is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get the threshold value from config file") - elif "Running Octane" in browser_score_dict["main_score"]: - tdkTestObj.setResultStatus("FAILURE"); - print("Octane test is not completed") + browser_score = browser_score_dict["main_score"].replace("Octane Score: ",""); + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, octane_threshold_value = getDeviceConfigKeyValue(conf_file,"OCTANE_THRESHOLD_VALUE") + result2, octane_subcategory_threshold_values = getDeviceConfigKeyValue(conf_file,"OCTANE_SUBCATEGORY_THRESHOLD_VALUES") + if all(value != "" for value in (octane_threshold_value,octane_subcategory_threshold_values)): + print("\n Threshold value for browser performance main score: ",octane_threshold_value) + Summ_list.append('Threshold value for browser performance main score:{} '.format(octane_threshold_value)) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + if int(browser_score) > int(octane_threshold_value): + print("\n The browser performance main score is high as expected \n") + subcategory_threshold_value_list = octane_subcategory_threshold_values.split(',') + for index,subcategory in enumerate(browser_subcategory_list): + if int(browser_score_dict[subcategory]) < int(subcategory_threshold_value_list[index]): + print("\n Subcategory {} score:{} is less than the threshold value:{} \n".format(subcategory,browser_score_dict[subcategory],subcategory_threshold_value_list[index])) + tdkTestObj.setResultStatus("FAILURE") + sub_category_failure = True + if not sub_category_failure: + tdkTestObj.setResultStatus("SUCCESS") + print("\n The subcategory scores of {} are also as high as expected\n".format(browser_subcategory_list)) else: - tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get the browser score") - else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE"); - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue'); - tdkTestObj.addParameter("method","WebKitBrowser.1.url"); - tdkTestObj.addParameter("value",current_url); - tdkTestObj.executeTestCase(expectedResult); - result = tdkTestObj.getResult(); - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS"); + tdkTestObj.setResultStatus("FAILURE") + print("\n The overall browser performance is lower than expected \n") else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE"); + print("\n The browser performance is lower than expected \n") else: tdkTestObj.setResultStatus("FAILURE"); - print("Failed to set URL") + print("Failed to get the threshold value from config file") + elif "Running Octane" in browser_score_dict["main_score"]: + tdkTestObj.setResultStatus("FAILURE"); + print("Octane test is not completed") + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Failed to get the browser score") + + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); else: tdkTestObj.setResultStatus("FAILURE"); - print("Failed to get URL in webkitbrowser") + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE"); + print("Failed to launch the app") + getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj); obj.unloadModule("rdkv_performance"); else: obj.setLoadModuleStatus("FAILURE"); diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py index ceccafe9..fe3f7287 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py @@ -85,6 +85,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True); @@ -109,108 +110,52 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.smashcat_test_url - print("\n Check Pre conditions") - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)) - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE" - else: - status = "FAILURE" + app_bundle_name=BrowserPerformanceVariables.smashcat_app_bundle_name + app_download_url=BrowserPerformanceVariables.smashcat_app_download_url + sub_category_failure = False + app_name = "com.rdkcentral.smashcat" + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - print("\nPre conditions for the test are set successfully") - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") + time.sleep(10) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Smashcat') tdkTestObj.executeTestCase(expectedResult) - current_url = tdkTestObj.getResultDetails() + browser_score_dict = json.loads(tdkTestObj.getResultDetails()) result = tdkTestObj.getResult() - if current_url != None and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("Current URL:",current_url) - print("\nSet test URL") - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",browser_test_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(10) - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - new_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("URL(",new_url,") is set successfully") - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(10) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Smashcat') - tdkTestObj.executeTestCase(expectedResult) - browser_score_dict = json.loads(tdkTestObj.getResultDetails()) - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1,smashcat_threshold_value = getDeviceConfigKeyValue(conf_file,"SMASHCAT_THRESHOLD_VALUE") - if smashcat_threshold_value != "": - print("\n Browser score from test: ",browser_score) - Summ_list.append('Browser score from test: {} '.format(browser_score)) - print("\n Threshold value for browser score:",smashcat_threshold_value) - Summ_list.append('Threshold value for browser score: {}'.format(smashcat_threshold_value)) - if float(browser_score) > float(smashcat_threshold_value): - print("\n The browser performance score is high as expected\n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The browser performance score is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the threshold value from config file") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the browser score") - else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE") - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",current_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS") + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS"); + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1,smashcat_threshold_value = getDeviceConfigKeyValue(conf_file,"SMASHCAT_THRESHOLD_VALUE") + if smashcat_threshold_value != "": + print("\n Browser score from test: ",browser_score) + Summ_list.append('Browser score from test: {} '.format(browser_score)) + print("\n Threshold value for browser score:",smashcat_threshold_value) + Summ_list.append('Threshold value for browser score: {}'.format(smashcat_threshold_value)) + if float(browser_score) > float(smashcat_threshold_value): + print("\n The browser performance score is high as expected\n") else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE") + print("\n The browser performance score is lower than expected \n") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to set URL to webkitbrowser") + print("Failed to get the threshold value from config file") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to get URL in webkitbrowser") + print("Failed to get the browser score") + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); + else: + tdkTestObj.setResultStatus("FAILURE"); + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE") + print("Failed to launch the app") + getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj) obj.unloadModule("rdkv_performance") else: obj.setLoadModuleStatus("FAILURE") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py index d84c1bae..1e3abb48 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py @@ -91,6 +91,7 @@ import rdkv_performancelib import BrowserPerformanceVariables from StabilityTestUtility import * +import json #Test component to be tested obj = tdklib.TDKScriptingLibrary("rdkv_performance","1",standAlone=True) @@ -114,119 +115,56 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - browser_test_url=BrowserPerformanceVariables.speedometer_test_url - print("\n Check Pre conditions") - #No need to revert any values if the pre conditions are already set. - revert="NO" - status,curr_webkit_status,curr_cobalt_status = check_pre_requisites(obj) - print("Current values \nWebKitBrowser:%s\nCobalt:%s"%(curr_webkit_status,curr_cobalt_status)) - if status == "FAILURE": - if "FAILURE" not in (curr_webkit_status,curr_cobalt_status): - #Need to revert the values since we are changing plugin status - revert="YES" - set_status = set_pre_requisites(obj) - if set_status == "SUCCESS": - status,webkit_status,cobalt_status = check_pre_requisites(obj) - else: - status = "FAILURE" - else: - status = "FAILURE" - if status == "SUCCESS": - print("\nPre conditions for the test are set successfully") - print("\nGet the URL in WebKitBrowser") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - current_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if current_url != None and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("Current URL:",current_url) - print("\nSet test URL") - - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",browser_test_url) + app_bundle_name=BrowserPerformanceVariables.speed_app_bundle_name + app_download_url=BrowserPerformanceVariables.speed_app_download_url + app_name = "com.rdkcentral.speed" + status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) + if status == "SUCCESS": + result = browsertest_keypress(obj,app_name,[["9","13"],[]]) + if result == expectedResult: + time.sleep(2000) + tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Speedometer') tdkTestObj.executeTestCase(expectedResult) + browser_score_dict = json.loads(tdkTestObj.getResultDetails()) result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(10) - print("\nValidate if the URL is set successfully or not") - tdkTestObj = obj.createTestStep('rdkservice_getValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.executeTestCase(expectedResult) - new_url = tdkTestObj.getResultDetails() - result = tdkTestObj.getResult() - if new_url == browser_test_url and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("URL(",new_url,") is set successfully") - params = '{"keys":[{"keyCode": 9,"modifiers": [],"delay":1.0},{"keyCode": 9,"modifiers": [],"delay":1.0},{"keyCode": 13,"modifiers": [],"delay":1.0}]}' - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","org.rdk.RDKShell.1.generateKey") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - time.sleep(2000) - tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Speedometer') - tdkTestObj.executeTestCase(expectedResult) - browser_score_dict = json.loads(tdkTestObj.getResultDetails()) - result = tdkTestObj.getResult() - if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS"); - browser_score = browser_score_dict["main_score"] - conf_file,result = getConfigFileName(tdkTestObj.realpath) - result1, speedometer_threshold_value = getDeviceConfigKeyValue(conf_file,"SPEEDOMETER_THRESHOLD_VALUE") - if speedometer_threshold_value != "": - print("\n Browser score from test: ",browser_score) - Summ_list.append('Browser score from test is :{}'.format(browser_score)) - print("\n Threshold value for browser score:",speedometer_threshold_value) - Summ_list.append('Threshold value for browser score: {}'.format(speedometer_threshold_value)) - if float(browser_score) > float(speedometer_threshold_value): - print("\n The browser performance score is high as expected\n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("\n The browser performance score is lower than expected \n") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the threshold value from config file") - else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get the browser score") + if browser_score_dict["main_score"] != "Unable to get the browser score" and expectedResult in result: + tdkTestObj.setResultStatus("SUCCESS"); + browser_score = browser_score_dict["main_score"] + conf_file,result = getConfigFileName(tdkTestObj.realpath) + result1, speedometer_threshold_value = getDeviceConfigKeyValue(conf_file,"SPEEDOMETER_THRESHOLD_VALUE") + if speedometer_threshold_value != "": + print("\n Browser score from test: ",browser_score) + Summ_list.append('Browser score from test is :{}'.format(browser_score)) + print("\n Threshold value for browser score:",speedometer_threshold_value) + Summ_list.append('Threshold value for browser score: {}'.format(speedometer_threshold_value)) + if float(browser_score) > float(speedometer_threshold_value): + print("\n The browser performance score is high as expected\n") else: tdkTestObj.setResultStatus("FAILURE") - print("\n Error while executing generate key method") + print("\n The browser performance score is lower than expected \n") else: - print("Failed to load the URL",new_url) - tdkTestObj.setResultStatus("FAILURE") - #Set the URL back to previous - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","WebKitBrowser.1.url") - tdkTestObj.addParameter("value",current_url) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if result == "SUCCESS": - print("URL is reverted successfully") - tdkTestObj.setResultStatus("SUCCESS") - else: - print("Failed to revert the URL") tdkTestObj.setResultStatus("FAILURE") + print("Failed to get the threshold value from config file") else: tdkTestObj.setResultStatus("FAILURE") - print("Failed to set URL to webkitbrowser") + print("Failed to get the browser score") + else: + print("\n Error while executing generate key method") + + print("\n Terminating the app") + tdkTestObj = obj.createTestStep('rdkv_terminate_app'); + tdkTestObj.addParameter("app_id",app_name) + tdkTestObj.executeTestCase(expectedResult) + result = tdkTestObj.getResult() + if result == "SUCCESS": + tdkTestObj.setResultStatus("SUCCESS"); else: - tdkTestObj.setResultStatus("FAILURE") - print("Failed to get URL in webkitbrowser") + tdkTestObj.setResultStatus("FAILURE"); + print("Unable to terminate the app") else: - print("Pre conditions are not met") - obj.setLoadModuleStatus("FAILURE") + print("Failed to launch the app") + getSummary(Summ_list,obj) - #Revert the values - if revert=="YES": - print("Revert the values before exiting") - status = revert_value(curr_webkit_status,curr_cobalt_status,obj) obj.unloadModule("rdkv_performance") else: obj.setLoadModuleStatus("FAILURE") From 6fbf7cfcf2e0f053f25b2331a4c1c5b50b9eccdf Mon Sep 17 00:00:00 2001 From: Midhun2412 Date: Wed, 3 Jun 2026 12:19:20 +0530 Subject: [PATCH 6/9] Updated BrowserTest scripts for AppManager Implementation --- .../fileStore/BrowserPerformanceVariables.py | 10 ++---- framework/fileStore/rdkv_performancelib.py | 35 ++----------------- .../RDKV_CERT_PVS_Browser_Animation_FPS.py | 5 +-- .../RDKV_CERT_PVS_Browser_CSS3.py | 3 +- .../RDKV_CERT_PVS_Browser_Kraken.py | 5 +-- .../RDKV_CERT_PVS_Browser_MotionMark.py | 5 +-- .../RDKV_CERT_PVS_Browser_Octane.py | 5 +-- .../RDKV_CERT_PVS_Browser_SmashCat.py | 3 +- .../RDKV_CERT_PVS_Browser_Speedometer.py | 11 +++--- 9 files changed, 26 insertions(+), 56 deletions(-) diff --git a/framework/fileStore/BrowserPerformanceVariables.py b/framework/fileStore/BrowserPerformanceVariables.py index 7f5da34c..e5422376 100644 --- a/framework/fileStore/BrowserPerformanceVariables.py +++ b/framework/fileStore/BrowserPerformanceVariables.py @@ -17,29 +17,23 @@ # limitations under the License. ######################################################################### -strike_app_download_url = "" +app_download_url = "" + strike_app_bundle_name = "" -octane_app_download_url = "" octane_app_bundle_name = "" octane_test_subcategory_list = ["Crypto","EarleyBoyer","Splay","SplayLatency","pdf.js","CodeLoad"] -animation_app_download_url = "" animation_app_bundle_name = "" -kraken_app_download_url = "" kraken_app_bundle_name = "" -smashcat_app_download_url = "" smashcat_app_bundle_name = "" -motion_app_download_url = "" motion_app_bundle_name = "" -speed_app_download_url = "" speed_app_bundle_name = "" -css3_app_download_url = "" css3_app_bundle_name = "" css3_test_subcategory_list = ["Animations Level 1", "Backgrounds and Borders Level 3", "Backgrounds and Borders Level 4", "Basic User Interface Level 3", "Basic User Interface Level 4", "Box Alignment Level 3", "Cascading and Inheritance Level 3", "Cascading and Inheritance Level 4", "Compositing and Blending Level 1", "Custom Properties for Cascading Variables Level 1", "Filter Effects Level 1", "Flexible Box Layout Level 1", "Fonts Level 3", "Fonts Level 4", "Generated Content Level 3", "Grid Layout Level 1", "Grid Layout Level 2", "Grid Layout Level 3", "Images Level 3", "Lists Level 3", "Masking Level 1", "Media Queries Level 3", "Media Queries Level 4", "Media Queries Level 5", "Pointer Events Level 1", "Pointer Events Level 3", "Positioned Layout Level 3", "Ruby Layout Level 1", "Scroll Snap Level 1", "Shadow Parts", "Shapes Level 1", "SVG 2 Coordinate Systems, Transformations and Units", "SVG 2 Geometry Properties", "SVG 2 Paint Servers", "SVG 2 Painting", "SVG 2 Scripting and Interactivity", "SVG 2 Text", "Text Decoration Level 3", "Text Decoration Level 4", "Transforms Level 1", "Transforms Level 2", "Transitions", "Will Change Level 1"] diff --git a/framework/fileStore/rdkv_performancelib.py b/framework/fileStore/rdkv_performancelib.py index f0d6e448..73466991 100644 --- a/framework/fileStore/rdkv_performancelib.py +++ b/framework/fileStore/rdkv_performancelib.py @@ -2254,12 +2254,8 @@ def setPS_value(video_test_url): #TO PRESS KEYS IN UI USING APP MANAGER #----------------------------------------------------------------------------------------- def browsertest_keypress(obj,app_name,keys): - if len(keys) >1: - key_navigate = keys[0] - key_select = keys[1] - else: - key_navigate = keys - + + key_navigate = keys result="FAILURE" param='[' index=0 @@ -2301,33 +2297,6 @@ def browsertest_keypress(obj,app_name,keys): tdkTestObj.setResultStatus("SUCCESS") print("SUCCESS: Navigated through UI and started the test") result = "SUCCESS" - time.sleep(3) - if key_select !=[]: - param='[' - index=0 - for key in key_select: - if ":" in key: - param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": ['+ key.split(":")[0] +'],\\"delay\\":0.1}' - else: - param = param + '{\\"keyCode\\": ' + key + ',\\"modifiers\\": [],\\"delay\\":0.1}' - if index != (len(key_select)-1): - param = param + ',' - else: - param = param + ']' - index +=1 - params = '{"client":' + appinstanceid + ',"keys":"{\\"keys\\":'+ param + '}"' - tdkTestObj = obj.createTestStep('rdkservice_setValue') - tdkTestObj.addParameter("method","org.rdk.RDKWindowManager.generateKey") - tdkTestObj.addParameter("value",params) - tdkTestObj.executeTestCase(expectedResult) - result = tdkTestObj.getResult() - if expectedResult in result: - tdkTestObj.setResultStatus("SUCCESS") - print("SUCCESS: Navigated through UI and started the test") - result = "SUCCESS" - else: - tdkTestObj.setResultStatus("FAILURE") - print("FAILURE : Failed to navigate through UI") else: tdkTestObj.setResultStatus("FAILURE") print("FAILURE : Failed to start the test by navigating through UI") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py index c3c6a7b1..b4ad302d 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Animation_FPS.py @@ -117,7 +117,7 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): app_bundle_name=BrowserPerformanceVariables.animation_app_bundle_name - app_download_url=BrowserPerformanceVariables.animation_app_download_url + app_download_url=BrowserPerformanceVariables.app_download_url app_name = "com.rdkcentral.animation" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) @@ -159,7 +159,8 @@ tdkTestObj.setResultStatus("FAILURE"); print("Unable to terminate the app") else: - print("Failed to launch the app") + print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py index 632c5d42..1cc03d1e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_CSS3.py @@ -99,7 +99,7 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): app_bundle_name=BrowserPerformanceVariables.css3_app_bundle_name - app_download_url=BrowserPerformanceVariables.css3_app_download_url + app_download_url=BrowserPerformanceVariables.app_download_url browser_subcategory_list = BrowserPerformanceVariables.css3_test_subcategory_list app_name = "com.rdkcentral.css3" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) @@ -156,6 +156,7 @@ print("Unable to terminate the app") else: print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance"); diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py index 631c4365..d83cd7f9 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Kraken.py @@ -117,7 +117,7 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): app_bundle_name=BrowserPerformanceVariables.kraken_app_bundle_name - app_download_url=BrowserPerformanceVariables.kraken_app_download_url + app_download_url=BrowserPerformanceVariables.app_download_url app_name = "com.rdkcentral.kraken" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) @@ -161,7 +161,8 @@ print("Unable to terminate the app") else: print("Failed to launch the app") - + obj.setLoadModuleStatus("FAILURE") + getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance") else: diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py index 004250bf..929f34fd 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py @@ -116,13 +116,13 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): app_bundle_name=BrowserPerformanceVariables.motion_app_bundle_name - app_download_url=BrowserPerformanceVariables.motion_app_download_url + app_download_url=BrowserPerformanceVariables.app_download_url sub_category_failure = False app_name = "com.rdkcentral.motion" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - result = browsertest_keypress(obj,app_name,[["9","13"],[]]) + result = browsertest_keypress(obj,app_name,["9","13"]) if result == expectedResult: time.sleep(420) tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_MotionMark') @@ -165,6 +165,7 @@ print("Unable to terminate the app") else: print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py index 2f74425d..ca20997c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Octane.py @@ -92,7 +92,7 @@ obj.setLoadModuleStatus(result); expectedResult = "SUCCESS" if expectedResult in result.upper(): - app_bundle_name=BrowserPerformanceVariables.app_bundle_name + app_bundle_name=BrowserPerformanceVariables.octane_app_bundle_name app_download_url=BrowserPerformanceVariables.app_download_url browser_subcategory_list = BrowserPerformanceVariables.octane_test_subcategory_list sub_category_failure = False @@ -152,7 +152,8 @@ tdkTestObj.setResultStatus("FAILURE"); print("Unable to terminate the app") else: - print("Failed to launch the app") + print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance"); diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py index fe3f7287..1fd397a2 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_SmashCat.py @@ -111,7 +111,7 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): app_bundle_name=BrowserPerformanceVariables.smashcat_app_bundle_name - app_download_url=BrowserPerformanceVariables.smashcat_app_download_url + app_download_url=BrowserPerformanceVariables.app_download_url sub_category_failure = False app_name = "com.rdkcentral.smashcat" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) @@ -154,6 +154,7 @@ print("Unable to terminate the app") else: print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance") diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py index 1e3abb48..49aa6e59 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py @@ -115,12 +115,12 @@ expectedResult = "SUCCESS" if expectedResult in result.upper(): - app_bundle_name=BrowserPerformanceVariables.speed_app_bundle_name - app_download_url=BrowserPerformanceVariables.speed_app_download_url - app_name = "com.rdkcentral.speed" + app_bundle_name=BrowserPerformanceVariables.speedometer_app_bundle_name + app_download_url=BrowserPerformanceVariables.app_download_url + app_name = "com.rdkcentral.speedometer" status = rdkservice_install_launch_app(obj, app_bundle_name, app_name, app_download_url) if status == "SUCCESS": - result = browsertest_keypress(obj,app_name,[["9","13"],[]]) + result = browsertest_keypress(obj,app_name,["9","13"]) if result == expectedResult: time.sleep(2000) tdkTestObj = obj.createTestStep('rdkservice_getBrowserScore_Speedometer') @@ -162,7 +162,8 @@ tdkTestObj.setResultStatus("FAILURE"); print("Unable to terminate the app") else: - print("Failed to launch the app") + print("Failed to launch the app") + obj.setLoadModuleStatus("FAILURE") getSummary(Summ_list,obj) obj.unloadModule("rdkv_performance") From 4d2ba575a70f0e0ba5145e95dd08769fc9f1e6e5 Mon Sep 17 00:00:00 2001 From: Midhun2412 Date: Wed, 3 Jun 2026 12:27:51 +0530 Subject: [PATCH 7/9] Updated BrowserTest scripts for AppManager --- framework/fileStore/BrowserPerformanceVariables.py | 2 +- .../rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py | 3 ++- .../rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/framework/fileStore/BrowserPerformanceVariables.py b/framework/fileStore/BrowserPerformanceVariables.py index e5422376..124b6307 100644 --- a/framework/fileStore/BrowserPerformanceVariables.py +++ b/framework/fileStore/BrowserPerformanceVariables.py @@ -32,7 +32,7 @@ motion_app_bundle_name = "" -speed_app_bundle_name = "" +speedometer_app_bundle_name = "" css3_app_bundle_name = "" css3_test_subcategory_list = ["Animations Level 1", "Backgrounds and Borders Level 3", "Backgrounds and Borders Level 4", "Basic User Interface Level 3", "Basic User Interface Level 4", "Box Alignment Level 3", "Cascading and Inheritance Level 3", "Cascading and Inheritance Level 4", "Compositing and Blending Level 1", "Custom Properties for Cascading Variables Level 1", "Filter Effects Level 1", "Flexible Box Layout Level 1", "Fonts Level 3", "Fonts Level 4", "Generated Content Level 3", "Grid Layout Level 1", "Grid Layout Level 2", "Grid Layout Level 3", "Images Level 3", "Lists Level 3", "Masking Level 1", "Media Queries Level 3", "Media Queries Level 4", "Media Queries Level 5", "Pointer Events Level 1", "Pointer Events Level 3", "Positioned Layout Level 3", "Ruby Layout Level 1", "Scroll Snap Level 1", "Shadow Parts", "Shapes Level 1", "SVG 2 Coordinate Systems, Transformations and Units", "SVG 2 Geometry Properties", "SVG 2 Paint Servers", "SVG 2 Painting", "SVG 2 Scripting and Interactivity", "SVG 2 Text", "Text Decoration Level 3", "Text Decoration Level 4", "Transforms Level 1", "Transforms Level 2", "Transitions", "Will Change Level 1"] diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py index 929f34fd..8fd9005e 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_MotionMark.py @@ -152,7 +152,8 @@ print("Failed to get the browser score") else: print("\n Error while executing generate key method") - + obj.setLoadModuleStatus("FAILURE") + print("\n Terminating the app") tdkTestObj = obj.createTestStep('rdkv_terminate_app'); tdkTestObj.addParameter("app_id",app_name) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py index 49aa6e59..0faa4550 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_performance/RDKV_CERT_PVS_Browser_Speedometer.py @@ -150,6 +150,7 @@ print("Failed to get the browser score") else: print("\n Error while executing generate key method") + obj.setLoadModuleStatus("FAILURE") print("\n Terminating the app") tdkTestObj = obj.createTestStep('rdkv_terminate_app'); From e6e38fc762ce4838acb23cab6d98c54bc0515d2f Mon Sep 17 00:00:00 2001 From: Idhayamoorthy Seerangan Date: Wed, 3 Jun 2026 12:37:03 +0530 Subject: [PATCH 8/9] Update RDKWindowManager event name --- .../tdkvRDKServiceXMLs/RDKWindowManagerPlugin_TestCases.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/fileStore/tdkvRDKServiceXMLs/RDKWindowManagerPlugin_TestCases.xml b/framework/fileStore/tdkvRDKServiceXMLs/RDKWindowManagerPlugin_TestCases.xml index 07f413a4..7cf8e6c5 100644 --- a/framework/fileStore/tdkvRDKServiceXMLs/RDKWindowManagerPlugin_TestCases.xml +++ b/framework/fileStore/tdkvRDKServiceXMLs/RDKWindowManagerPlugin_TestCases.xml @@ -881,7 +881,7 @@ - + From f2221d5192e8271a0fbf8db065a994369a43d2c9 Mon Sep 17 00:00:00 2001 From: asures684 Date: Wed, 3 Jun 2026 16:57:23 +0530 Subject: [PATCH 9/9] updated --- .../rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py | 2 +- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py | 4 ++-- .../rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py | 4 ++-- .../certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py index fece987e..493f2ad5 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_HTML_Play_Vorbis_Webm.py @@ -68,7 +68,7 @@ HTML player App URL: string webkit_instance:string webinspect_port: string -video_src_url_ogg: string +video_src_url_vorbis_webm: string close_interval: int 1. As pre requisite, launch webkit instance via RDKShell, open websocket conntion to webinspect page 2. Store the details of other launched apps. Move the webkit instance to front, if its z-order is low. diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py index b2375f20..35597685 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_OGG.py @@ -68,7 +68,7 @@ Lightning player App URL: string webkit_instance:string webinspect_port: string -video_src_url_ogg: string +video_src_url_vorbis: string ogg_url_type:string play_interval: int pause_interval:int @@ -126,7 +126,7 @@ conf_file,result = getDeviceConfigFile(obj.realpath) setDeviceConfigFile(conf_file) #appURL = MediaValidationVariables.lightning_video_test_app_url - videoURL = MediaValidationVariables.video_src_url_ogg + videoURL = MediaValidationVariables.video_src_url_vorbis # Setting VideoPlayer Operations setOperation("pause",MediaValidationVariables.pause_interval) setOperation("play",MediaValidationVariables.play_interval) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py index 43dfd3b4..e1f5115c 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_PlayPause_STRESS_OGG.py @@ -68,7 +68,7 @@ Lightning player App URL: string webkit_instance:string webinspect_port: string -video_src_url_ogg: string +video_src_url_vorbis: string ogg_url_type:string pause_interval_stress:int play_interval_stress:int @@ -127,7 +127,7 @@ conf_file,result = getDeviceConfigFile(obj.realpath) setDeviceConfigFile(conf_file) #appURL = MediaValidationVariables.lightning_video_test_app_url - videoURL = MediaValidationVariables.video_src_url_ogg + videoURL = MediaValidationVariables.video_src_url_vorbis # Setting VideoPlayer Operations setOperation("pause",MediaValidationVariables.pause_interval_stress) setOperation("play",MediaValidationVariables.play_interval_stress) diff --git a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py index 79124e7c..0bd2c428 100644 --- a/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py +++ b/framework/fileStore/testscriptsRDKV/certification/rdkv_media/RDKV_CERT_MVS_Video_Play_OGG.py @@ -68,7 +68,7 @@ Lightning player App URL: string webkit_instance:string webinspect_port: string -video_src_url_ogg: string +video_src_url_vorbis: string ogg_url_type:string close_interval: int @@ -127,7 +127,7 @@ conf_file,result = getDeviceConfigFile(obj.realpath) setDeviceConfigFile(conf_file) #appURL = MediaValidationVariables.lightning_video_test_app_url - videoURL = MediaValidationVariables.video_src_url_ogg + videoURL = MediaValidationVariables.video_src_url_vorbis # Setting VideoPlayer Operations setOperation("close",MediaValidationVariables.close_interval) operations = getOperations()