Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] password_security: Error 500 when login with bad password #27

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions password_security/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

'name': 'Password Security',
"summary": "Allow admin to set password security requirements.",
'version': '11.0.1.0.0',
'author': "LasLabs, Odoo Community Association (OCA), Kaushal Prajapati",
'version': '11.0.1.0.1',
'author':
"LasLabs, "
"Kaushal Prajapati, "
"Tecnativa, "
"Odoo Community Association (OCA)",
'category': 'Base',
'depends': [
'auth_crypt',
Expand Down
19 changes: 6 additions & 13 deletions password_security/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,15 @@ def do_signup(self, qcontext):
def web_login(self, *args, **kw):
ensure_db()
response = super(PasswordSecurityHome, self).web_login(*args, **kw)
if not request.httprequest.method == 'POST':
if not request.params.get("login_success"):
return response
uid = request.session.authenticate(
request.session.db,
request.params['login'],
request.params['password']
)
if not uid:
return response
users_obj = request.env['res.users'].sudo()
user_id = users_obj.browse(request.uid)
if not user_id._password_has_expired():
# Now, I'm an authenticated user
if not request.env.user._password_has_expired():
return response
user_id.action_expire_password()
# My password is expired, kick me out
request.env.user.action_expire_password()
request.session.logout(keep_db=True)
redirect = user_id.partner_id.signup_url
redirect = request.env.user.partner_id.signup_url
return http.redirect_with_hash(redirect)

@http.route()
Expand Down
122 changes: 44 additions & 78 deletions password_security/tests/test_password_security_home.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Copyright 2016 LasLabs Inc.
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).

import mock
from datetime import datetime, timedelta
from unittest import mock

from contextlib import contextmanager

from odoo.tests.common import TransactionCase
from odoo.tests.common import HttpCase, TransactionCase
from odoo.http import Response

from ..controllers import main
Expand Down Expand Up @@ -102,82 +103,6 @@ def test_web_login_super(self):
*expect_list, **expect_dict
)

def test_web_login_no_post(self):
""" It should return immediate result of super when not POST """
with self.mock_assets() as assets:
assets['request'].httprequest.method = 'GET'
assets['request'].session.authenticate.side_effect = \
EndTestException
res = self.password_security_home.web_login()
self.assertEqual(
assets['web_login'](), res,
)

def test_web_login_authenticate(self):
""" It should attempt authentication to obtain uid """
with self.mock_assets() as assets:
assets['request'].httprequest.method = 'POST'
authenticate = assets['request'].session.authenticate
request = assets['request']
authenticate.side_effect = EndTestException
with self.assertRaises(EndTestException):
self.password_security_home.web_login()
authenticate.assert_called_once_with(
request.session.db,
request.params['login'],
request.params['password'],
)

def test_web_login_authenticate_fail(self):
""" It should return super result if failed auth """
with self.mock_assets() as assets:
authenticate = assets['request'].session.authenticate
request = assets['request']
request.httprequest.method = 'POST'
request.env['res.users'].sudo.side_effect = EndTestException
authenticate.return_value = False
res = self.password_security_home.web_login()
self.assertEqual(
assets['web_login'](), res,
)

def test_web_login_get_user(self):
""" It should get the proper user as sudo """
with self.mock_assets() as assets:
request = assets['request']
request.httprequest.method = 'POST'
sudo = request.env['res.users'].sudo()
sudo.browse.side_effect = EndTestException
with self.assertRaises(EndTestException):
self.password_security_home.web_login()
sudo.browse.assert_called_once_with(
request.uid
)

def test_web_login_valid_pass(self):
""" It should return parent result if pass isn't expired """
with self.mock_assets() as assets:
request = assets['request']
request.httprequest.method = 'POST'
user = request.env['res.users'].sudo().browse()
user.action_expire_password.side_effect = EndTestException
user._password_has_expired.return_value = False
res = self.password_security_home.web_login()
self.assertEqual(
assets['web_login'](), res,
)

def test_web_login_expire_pass(self):
""" It should expire password if necessary """
with self.mock_assets() as assets:
request = assets['request']
request.httprequest.method = 'POST'
user = request.env['res.users'].sudo().browse()
user.action_expire_password.side_effect = EndTestException
user._password_has_expired.return_value = True
with self.assertRaises(EndTestException):
self.password_security_home.web_login()

def test_web_login_log_out_if_expired(self):
"""It should log out user if password expired"""
with self.mock_assets() as assets:
Expand Down Expand Up @@ -278,3 +203,44 @@ def test_web_auth_reset_password_success(self):
self.assertEqual(
assets['web_auth_reset_password'](), res,
)


@mock.patch("odoo.http.WebRequest.validate_csrf", return_value=True)
class LoginCase(HttpCase):
def test_web_login_authenticate(self, *args):
"""It should allow authenticating by login"""
response = self.url_open(
"/web/login",
{"login": "admin", "password": "admin"},
)
self.assertIn(
"window.location = '/web'",
response.text,
)

def test_web_login_authenticate_fail(self, *args):
"""It should fail auth"""
response = self.url_open(
"/web/login",
{"login": "admin", "password": "noadmin"},
)
self.assertIn(
"Wrong login/password",
response.text,
)

def test_web_login_expire_pass(self, *args):
"""It should expire password if necessary"""
two_days_ago = datetime.now() - timedelta(days=2)
with self.cursor() as cr:
env = self.env(cr)
env.user.password_write_date = two_days_ago
env.user.company_id.password_expiration = 1
response = self.url_open(
"/web/login",
{"login": "admin", "password": "admin"},
)
self.assertIn(
"/web/reset_password",
response.text,
)