You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
696 B

[FIX] password_security: Create user as admin in tests If you test this addon after installing `partner_event`, you get this error in all tests: ERROR: test_validate_pass_reset_error (odoo.addons.password_security.tests.test_res_users.TestResUsers) ` It should throw PassError on reset inside min threshold Traceback (most recent call last): ` File "/opt/odoo/auto/addons/password_security/tests/test_res_users.py", line 143, in test_validate_pass_reset_error ` rec_id = self._new_record() ` File "/opt/odoo/auto/addons/password_security/tests/test_res_users.py", line 46, in _new_record ` partner_id = self.env['res.partner'].create(self.partner_vals) ` File "/opt/odoo/auto/addons/mail_tracking_mailgun/models/res_partner.py", line 154, in create ` return super(ResPartner, self).create(vals) ` File "/opt/odoo/auto/addons/partner_firstname/models/res_partner.py", line 54, in create ` return super(ResPartner, self.with_context(context)).create(vals) ` File "/opt/odoo/custom/src/odoo/odoo/addons/base/res/res_partner.py", line 532, in create ` partner = super(Partner, self).create(vals) ` File "/opt/odoo/auto/addons/mail/models/mail_thread.py", line 228, in create ` thread = super(MailThread, self).create(values) ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 3847, in create ` record = self.browse(self._create(old_vals)) ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 4006, in _create ` self.recompute() ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 5336, in recompute ` vals = rec._convert_to_write({n: rec[n] for n in ns}) ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 5336, in <dictcomp> ` vals = rec._convert_to_write({n: rec[n] for n in ns}) ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 5232, in __getitem__ ` return self._fields[key].__get__(self, type(self)) ` File "/opt/odoo/custom/src/odoo/odoo/fields.py", line 918, in __get__ ` value = record._cache[self] ` File "/opt/odoo/custom/src/odoo/odoo/models.py", line 5584, in __getitem__ ` return value.get() if isinstance(value, SpecialValue) else value ` File "/opt/odoo/custom/src/odoo/odoo/fields.py", line 48, in get ` raise self.exception ` AccessError: (u'Sorry, you are not allowed to access this document. Only users with the following access level are currently allowed to do that:\n- Events/User\n\n(Document model: event.registration)', None) Since creating users or partners in tests has a very high probability to collide with other addons, this test is being moved to post mode. Also, to avoid the above permissions issue, the partner is actually created through the admin user, which actually has permissions to read everything. Then, it is `.sudo()`ed later, to perform the module tests correctly. The tests do not get affected because what is being tested was not [intended to be] the partner creation itself, but the password policy enforcement.
6 years ago
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2015 LasLabs Inc.
  3. # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  4. {
  5. 'name': 'Password Security',
  6. "summary": "Allow admin to set password security requirements.",
  7. 'version': '10.0.1.1.4',
  8. 'author': "LasLabs, Odoo Community Association (OCA)",
  9. 'category': 'Base',
  10. 'depends': [
  11. 'auth_crypt',
  12. 'auth_signup',
  13. ],
  14. "website": "https://laslabs.com",
  15. "license": "LGPL-3",
  16. "data": [
  17. 'views/res_company_view.xml',
  18. 'security/ir.model.access.csv',
  19. 'security/res_users_pass_history.xml',
  20. ],
  21. "demo": [
  22. 'demo/res_users.xml',
  23. ],
  24. 'installable': True,
  25. }