Fix regression tests for password reset in server mode

This commit is contained in:
Harshal Dhumal
2017-11-30 13:16:59 +00:00
committed by Dave Page
parent 54389595da
commit 1a4e21e6dd
4 changed files with 14 additions and 8 deletions

View File

@@ -45,11 +45,11 @@ class ResetPasswordTestCase(BaseTestGenerator):
def runTest(self):
"""This function checks reset password functionality."""
response = self.tester.get('/reset')
response = self.tester.get('/browser/reset_password')
self.assertTrue('Recover pgAdmin 4 Password' in response.data.decode(
'utf-8'))
response = self.tester.post(
'/reset', data=dict(email=self.email),
'/browser/reset_password', data=dict(email=self.email),
follow_redirects=True)
self.assertTrue(self.respdata in response.data.decode('utf-8'))

View File

@@ -8,11 +8,11 @@
##########################################################################
def change_password(self):
response = self.tester.get('/change', follow_redirects=True)
response = self.tester.get('/browser/change_password', follow_redirects=True)
self.assertTrue('pgAdmin 4 Password Change' in response.data.decode(
'utf-8'))
response = self.tester.post('/change', data=dict(
response = self.tester.post('/browser/change_password', data=dict(
password=self.password,
new_password=self.new_password,
new_password_confirm=self.new_password_confirm),