Index: tst_ui_logs/test.py =================================================================== diff -u -rf869a016bb2058d41856f9f63539b6be29fb1bc1 -re95be95d8fc8d27d895dd0d3a80314a012de5968 --- tst_ui_logs/test.py (.../test.py) (revision f869a016bb2058d41856f9f63539b6be29fb1bc1) +++ tst_ui_logs/test.py (.../test.py) (revision e95be95d8fc8d27d895dd0d3a80314a012de5968) @@ -896,6 +896,80 @@ hd_simulator.cmd_send_hd_general_response(message_id=177, accepted=0, reason=1) verify_log(msg_id = 0xB1, msg = "None") + #ID: 0x5D00 + #Water sample request + hd_simulator.cmd_send_hd_general_response(message_id=93, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_SAMPLE_WATER_CMD.value, msg = "None") + #ID: 0x5F00 + #Water sample result + hd_simulator.cmd_send_hd_general_response(message_id=95, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_SAMPLE_WATER_RESULT.value, msg = "None") + + #ID: 0x6800 + #Consumable Installation confirm + hd_simulator.cmd_send_hd_general_response(message_id=104, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_CONSUMABLE_INSTALL_CONFIRM.value, msg = "None") + + #ID: 0x6200 + #Disposable Installation Confirm + hd_simulator.cmd_send_hd_general_response(message_id=98, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_INSTALLATION_CONFIRM.value, msg = "None") + + #ID:0x3C00 + #Prime start request + hd_simulator.cmd_send_hd_general_response(message_id=60, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_START_PRIME_REQUEST.value, msg = "None") + + #ID: 0x6400 + #Patient Connection Begin Request + hd_simulator.cmd_send_hd_general_response(message_id=100, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_PATIENT_CONNECTION_BEGIN_REQUEST.value, msg = "None") + + #ID: 0x4F00 + #Pre UF Volume Adjustment Request + hd_simulator.cmd_send_hd_general_response(message_id=79, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_SET_UF_VOLUME_PARAMETER.value, msg = "None") + #ID: 0x6600 + #Patient Connection Confirm Request + hd_simulator.cmd_send_hd_general_response(message_id=102, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_PATIENT_CONNECTION_CONFIRM.value, msg = "None") + + #ID: 0x7100 + #Start treatment request + hd_simulator.cmd_send_hd_general_response(message_id=113, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_START_TREATMENT_REQUEST.value, msg = "None") + + #ID: 0x4A00 + #Patient Disconnection Confirm Request + hd_simulator.cmd_send_hd_general_response(message_id=74, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_PATIENT_DISCONNECTION_CONFIRM.value, msg = "None") + + #ID:0x7300 + #Disposable Removal Confirm Request + hd_simulator.cmd_send_hd_general_response(message_id=115, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_DISPOSABLE_REMOVAL_CONFIRM.value, msg = "None") + + #ID:0x7500 + #Treatment Log Data Request + hd_simulator.cmd_send_hd_general_response(message_id=117, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_TREATMENT_LOG_DATA_REQUEST.value, msg = "None") + + #ID:0X7F00 + #Disinfect Request + hd_simulator.cmd_send_hd_general_response(message_id=127, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_DISINFECT_REQUEST.value, msg = "None") + + #ID: 0x8100 + #Chemical Disinfect User Confirm + hd_simulator.cmd_send_hd_general_response(message_id=129, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_CHEM_DISINFECT_CONFIRM.value, msg = "None") + + #ID: 0x9200 + #UI POST final test result + hd_simulator.cmd_send_hd_general_response(message_id=146, accepted=0, reason = 1) + verify_log(msg_id= MsgIds.MSG_ID_UI_POST_FINAL_TEST_RESULT.value, msg = "None") + + \ No newline at end of file