* make it so that the actual tests can be moved anywhere, for example in abra recipe repos -> major refactoring with pytest test discovery magic * create RUNNER_DICT dynamically with importlib -> none of the tests are hardcoded, more tests can be added by placing a folder * autoload fixtures with pytest plugins * add URL fixture to navigate on web pages. Includes url parser based on python urllib to generate correct links * fix nextcloud setups and tests * add email groundwork with imbox Reviewed-on: local-it-infrastructure/e2e_tests#7 Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# %%
|
|
import email
|
|
import json
|
|
import os
|
|
from email.header import decode_header
|
|
from imaplib import IMAP4, IMAP4_SSL
|
|
from pathlib import Path
|
|
|
|
# -------------------------------- credentials ------------------------------- #
|
|
|
|
cred_file = Path("../credentials.json")
|
|
with open(cred_file, "r") as f:
|
|
CREDENTIALS = json.load(f)
|
|
|
|
for key, value in CREDENTIALS.items():
|
|
os.environ[key] = value
|
|
|
|
IMAP_HOST = os.environ["IMAP_HOST"]
|
|
IMAP_PORT = os.environ["IMAP_PORT"]
|
|
IMAP_USER = os.environ["IMAP_USER"]
|
|
IMAP_PASS = os.environ["IMAP_PASS"]
|
|
|
|
|
|
# ----------------------------------- imap ----------------------------------- #
|
|
|
|
|
|
with IMAP4_SSL(host=IMAP_HOST) as imap_server:
|
|
imap_server.login(IMAP_USER, IMAP_PASS)
|
|
imap_server.select("INBOX")
|
|
|
|
# Search for all emails in the folder
|
|
status, email_ids = imap_server.search(None, "ALL")
|
|
email_ids = email_ids[0].split()
|
|
|
|
# Fetch email details using the retrieved IDs
|
|
for email_id in email_ids:
|
|
result, data = imap_server.fetch(email_id, "(RFC822)")
|
|
raw_email = data[0][1] # Raw content of the email
|
|
email_message = email.message_from_bytes(raw_email)
|
|
|
|
# Extract the subject
|
|
subject_encoded = email_message.get("Subject")
|
|
decoded_subject = decode_header(subject_encoded)[0][0]
|
|
|
|
if isinstance(decoded_subject, bytes):
|
|
decoded_subject = decoded_subject.decode()
|
|
|
|
# Print or use the subject as needed
|
|
print("Subject:", decoded_subject)
|