comment out soft_fail test

This commit is contained in:
Son 2022-03-25 18:12:33 +01:00
parent 4dbe22d856
commit 8820cecdd3

View file

@ -97,21 +97,22 @@ def test_dmarc_quarantine(flask_client):
assert f"{alias.email} has a new mail in quarantine" == notifications[0].title assert f"{alias.email} has a new mail in quarantine" == notifications[0].title
def test_gmail_dmarc_softfail(flask_client): # todo: re-enable test when softfail is quarantined
user = create_random_user() # def test_gmail_dmarc_softfail(flask_client):
alias = Alias.create_new_random(user) # user = create_random_user()
msg = load_eml_file("dmarc_gmail_softfail.eml", {"alias_email": alias.email}) # alias = Alias.create_new_random(user)
envelope = Envelope() # msg = load_eml_file("dmarc_gmail_softfail.eml", {"alias_email": alias.email})
envelope.mail_from = msg["from"] # envelope = Envelope()
envelope.rcpt_tos = [msg["to"]] # envelope.mail_from = msg["from"]
result = email_handler.handle(envelope, msg) # envelope.rcpt_tos = [msg["to"]]
assert result == status.E215 # result = email_handler.handle(envelope, msg)
email_logs = ( # assert result == status.E215
EmailLog.filter_by(user_id=user.id, alias_id=alias.id) # email_logs = (
.order_by(EmailLog.id.desc()) # EmailLog.filter_by(user_id=user.id, alias_id=alias.id)
.all() # .order_by(EmailLog.id.desc())
) # .all()
assert len(email_logs) == 1 # )
email_log = email_logs[0] # assert len(email_logs) == 1
assert email_log.blocked # email_log = email_logs[0]
assert email_log.refused_email_id # assert email_log.blocked
# assert email_log.refused_email_id