From 744018c967b114f389090a9105d9cafac57d818f Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 5 Jul 2022 10:17:42 +0200 Subject: Add some test emails from mail-parser --- tests/rm-mail-parser-expected-struct.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/rm-mail-parser-expected-struct.py (limited to 'tests/rm-mail-parser-expected-struct.py') diff --git a/tests/rm-mail-parser-expected-struct.py b/tests/rm-mail-parser-expected-struct.py new file mode 100644 index 0000000..3dbc56e --- /dev/null +++ b/tests/rm-mail-parser-expected-struct.py @@ -0,0 +1,17 @@ +from os import listdir +from os.path import isfile, join +import sys + +path = sys.argv[1] +onlyfiles = [join(path, f) for f in listdir(path) if isfile(join(path, f)) and len(f) > 4 and f[-4:] == ".txt"] + +for p in onlyfiles: + g = p[:-4] + ".eml" + print(f"{p} -> {g}") + with open(p, 'r+b') as inp: + with open(g, 'w+b') as out: + for line in inp: + if b"EXPECTED STRUCTURE" in line: + break + out.write(line) + -- cgit v1.2.3