93 lines
3.4 KiB
Python
93 lines
3.4 KiB
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2016, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
import uuid
|
|
from pgadmin.utils.route import BaseTestGenerator
|
|
from regression.test_setup import config_data
|
|
from regression import test_utils as utils
|
|
|
|
|
|
class LoginTestCase(BaseTestGenerator):
|
|
"""
|
|
This class checks login functionality by validating different scenarios.
|
|
Login scenarios are defined in dictionary; where dict of parameters
|
|
describe the scenario appended by test name.
|
|
"""
|
|
|
|
scenarios = [
|
|
# This test case validates the invalid/incorrect password
|
|
('TestCase for Checking Invalid_Password', dict(
|
|
email=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_username']),
|
|
password=str(uuid.uuid4())[4:8],
|
|
respdata='Invalid password')),
|
|
|
|
# This test case validates the empty password field
|
|
('Empty_Password', dict(
|
|
email=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_username']), password='',
|
|
respdata='Password not provided')),
|
|
|
|
# This test case validates blank email field
|
|
('Empty_Email', dict(
|
|
email='', password=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_password']),
|
|
respdata='Email not provided')),
|
|
|
|
# This test case validates empty email and password
|
|
('Empty_Creadentials', dict(
|
|
email='', password='',
|
|
respdata='Email not provided')),
|
|
|
|
# This test case validates the invalid/incorrect email id
|
|
('Invalid_Email', dict(
|
|
email=str(uuid.uuid4())[1:6] + '@xyz.com',
|
|
password=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_password']),
|
|
respdata='Specified user does not exist')),
|
|
|
|
# This test case validates invalid email and password
|
|
('Invalid_Creadentials', dict(
|
|
email=str(uuid.uuid4())[1:6] + '@xyz.com',
|
|
password=str(uuid.uuid4())[4:8],
|
|
respdata='Specified user does not exist')),
|
|
|
|
# This test case validates the valid/correct credentials and allow user
|
|
# to login pgAdmin 4
|
|
('Valid_Creadentials', dict(
|
|
email=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_username']),
|
|
password=(config_data['pgAdmin4_login_credentials']
|
|
['test_login_password']),
|
|
respdata='Gravatar image for %s' %
|
|
config_data['pgAdmin4_login_credentials']
|
|
['test_login_username']))
|
|
]
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def runTest(self):
|
|
"""This function checks login functionality."""
|
|
|
|
response = self.tester.post('/login', data=dict(
|
|
email=self.email, password=self.password),
|
|
follow_redirects=True)
|
|
self.assertIn(self.respdata, response.data.decode('utf8'))
|
|
|
|
def tearDown(self):
|
|
"""
|
|
This function deletes the 'parent_id.pkl' file which is created in
|
|
setup() function. Also this function logout the test client
|
|
|
|
:return: None
|
|
"""
|
|
|
|
utils.logout_tester_account(self.tester)
|