Commit 2c80a461 authored by Jérome Perrin's avatar Jérome Perrin

credential: prevent multiple failures

If a Credential Request/Recovery can not be accepted, the alarm should not
retry again and again.

We use an hasActivity test before trying to accept to prevent causing multiple
failing activities, if it already failed once, no need to retry more,
CMFActivity built-in retry mechanism is enough.
parent 7e34f3b1
Pipeline #10395 passed with stage
in 0 seconds
"""
Intent is to ignore accept/accept race conditions but complain about
any other race condition (ex: accept/reject).
This is intendend to run periodically from an alarm.
"""
if context.getPortalObject().portal_activities.hasActivity(context, only_invalid=True):
# If this has already failed, no need to try again
return
if context.getValidationState() != 'accepted':
context.accept()
......@@ -36,7 +36,7 @@ import email, re
from email.header import decode_header, make_header
from email.utils import parseaddr
import cgi
from urlparse import urlparse
import urlparse
use_verbose_security = 0
if use_verbose_security:
......@@ -783,7 +783,7 @@ class TestERP5Credential(ERP5TypeTestCase):
url = url.strip()
self.assertNotEquals(url, None)
response = self.publish(url)
parameters = cgi.parse_qs(urlparse(url)[4])
parameters = cgi.parse_qs(urlparse.urlparse(url)[4])
self.assertTrue('reset_key' in parameters)
key = parameters['reset_key'][0]
# before changing, check that the user exists with 'secret' password
......@@ -1378,6 +1378,43 @@ class TestERP5Credential(ERP5TypeTestCase):
sequence_list.addSequenceString(sequence_string)
sequence_list.play(self)
def test_ERP5Site_newCredentialRecovery_activity_fail_once(self):
self.stepSetCredentialRecoveryAutomaticApprovalPreferences()
self.login()
person = self.portal.person_module.newContent(
portal_type='Person',
default_email_coordinate_text='nobody@example.com',
)
assignment = person.newContent(portal_type='Assignment', function='manager')
assignment.open()
login = person.newContent(
portal_type='ERP5 Login',
reference=self.id(),
password='secret',
)
login.validate()
self.tic()
ret = self.portal.ERP5Site_newCredentialRecovery(reference=self.id())
self.assertEqual(
urlparse.parse_qs(urlparse.urlparse(ret).query)['portal_status_message'],
['We have sent you an email to enable you to reset your password. Please check your inbox and your junk/spam mail for this email and follow the link to reset your password.'],
)
person.setDefaultEmailCoordinateText(None)
# Execute alarm, it will fail because this person has no email
with self.assertRaisesRegexp(
RuntimeError,
"User .* does not have an email address, please contact site administrator directly"):
self.tic()
# run alarm again, this does not cause another activity failure.
self.portal.portal_alarms.accept_submitted_credentials.activeSense()
with self.assertRaises(RuntimeError):
self.tic()
self.assertEqual(len(self.portal.portal_activities.getMessageList()), 1)
self.portal.portal_activities.manageClearActivities()
self.commit()
def test_credential_request_properties(self):
# test to prevent regression with a bug in property sheet definition
cr = self.portal.credential_request_module.newContent(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment