Commit 8c8c1e58 authored by Jérome Perrin's avatar Jérome Perrin

credential_request: Fix changing password with credential request

ee64d50c (patches/CookieCrumbler: update patch for CMF 2.3, 2019-09-09)
introduced a NameError, getRequest was not imported.
parent 0c299482
Pipeline #14583 failed with stage
in 0 seconds
......@@ -1238,6 +1238,37 @@ class TestERP5Credential(ERP5TypeTestCase):
sequence_list.addSequenceString(sequence_string)
sequence_list.play(self)
def test_ERP5Site_newCredentialUpdate_change_password(self):
reference = self._testMethodName
person = self.portal.person_module.newContent(
portal_type='Person',
reference=reference,
role='internal',
)
assignment = person.newContent(portal_type='Assignment', function='manager')
assignment.open()
# create a login
username = person.getReference() + '-login'
login = person.newContent(
portal_type='ERP5 Login',
reference=username,
password='secret',
)
login.validate()
old_password = login.getPassword()
self.tic()
self.login(person.getUserId())
self.portal.ERP5Site_viewNewPersonCredentialUpdateDialog()
ret = self.portal.ERP5Site_newPersonCredentialUpdate(password='new_password')
self.assertEqual(
urlparse.parse_qs(urlparse.urlparse(ret).query)['portal_status_message'],
['Password changed.'],
)
self.tic()
self.assertNotEqual(login.getPassword(), old_password)
self._assertUserExists(username, 'new_password')
def test_no_reset_assignment_ERP5Site_newCredentialUpdate(self):
"""Checks that assignments are left intact after credential update"""
reference = self._testMethodName
......
......@@ -31,6 +31,7 @@ from Products.CMFCore.CookieCrumbler import CookieCrumbler
from Products.CMFCore.CookieCrumbler import CookieCrumblerDisabled
from urllib import quote, unquote
from zExceptions import Redirect
from zope.globalrequest import getRequest
from ZPublisher.HTTPRequest import HTTPRequest
ATTEMPT_NONE = 0 # No attempt at authentication
......
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