import os123def test_video_parse():4"""5Reads dumped video packets and sends them to the video handler6:return: None7"""8'''ConfigServer.load()9handler = VideoHandler()10with open(os.path.join(os.path.dirname(__file__), "packets/video.bin"), "rb") as video_packets:11read = True12while read:13packet = b""14while b"|\n" not in packet:15read_byte = video_packets.read(1)16if not read_byte:17return18packet += read_byte19packet = packet.replace(b"|\n", b"")20handler.update(packet, True)'''21pass222324