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.

67 lines
2.2 KiB

  1. # -*- coding: utf-8 -*-
  2. # Odoo, Open Source Management Solution
  3. # Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. """Test situations where names are empty.
  18. To have more accurate results, remove the ``mail`` module before testing.
  19. """
  20. from openerp.tests.common import TransactionCase
  21. from .base import MailInstalled
  22. from .. import exceptions as ex
  23. class CompanyCase(TransactionCase):
  24. """Test ``res.partner`` when it is a company."""
  25. model = "res.partner"
  26. context = {"default_is_company": True}
  27. def tearDown(self):
  28. try:
  29. data = {"name": self.name}
  30. with self.assertRaises(ex.EmptyNamesError):
  31. self.env[self.model].with_context(**self.context).create(data)
  32. finally:
  33. super(CompanyCase, self).tearDown()
  34. def test_name_empty_string(self):
  35. """Test what happens when the name is an empty string."""
  36. self.name = ""
  37. def test_name_false(self):
  38. """Test what happens when the name is ``False``."""
  39. self.name = False
  40. class PersonCase(CompanyCase):
  41. """Test ``res.partner`` when it is a person."""
  42. context = {"default_is_company": False}
  43. class UserCase(CompanyCase, MailInstalled):
  44. """Test ``res.users``."""
  45. model = "res.users"
  46. context = {"default_login": "user@example.com"}
  47. def tearDown(self):
  48. # Cannot create users if ``mail`` is installed
  49. if self.mail_installed():
  50. # Skip tests
  51. super(CompanyCase, self).tearDown()
  52. else:
  53. # Run tests
  54. super(UserCase, self).tearDown()