forked from OCA/partner-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7478937
commit 9ca7de0
Showing
3 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2015 Grupo ESOC Ingeniería de Servicios, S.L. - Jairo Llopis. | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
"""Test default values for models.""" | ||
|
||
from openerp.tests.common import TransactionCase | ||
from .base import MailInstalled | ||
|
||
|
||
class PersonCase(TransactionCase): | ||
"""Test ``res.partner`` when it is a person.""" | ||
context = {"default_is_company": False} | ||
model = "res.partner" | ||
|
||
def setUp(self): | ||
super(PersonCase, self).setUp() | ||
self.values = { | ||
"firstname": u"Núñez", | ||
"lastname": u"Fernán", | ||
} | ||
self.values["name"] = "%s %s" % (self.values["lastname"], | ||
self.values["firstname"]) | ||
if "default_is_company" in self.context: | ||
self.values["is_company"] = self.context["default_is_company"] | ||
|
||
def tearDown(self): | ||
for key, value in self.values.iteritems(): | ||
self.assertEqual( | ||
self.defaults.get(key), | ||
value, | ||
"Checking key %s" % key) | ||
|
||
return super(PersonCase, self).tearDown() | ||
|
||
def test_default_get(self): | ||
"""Getting default values for fields includes new fields.""" | ||
self.defaults = (self.env[self.model] | ||
.with_context(self.context, | ||
default_name=self.values["name"]) | ||
.default_get(self.values.keys())) | ||
|
||
|
||
class CompanyCase(PersonCase): | ||
"""Test ``res.partner`` when it is a company.""" | ||
context = {"default_is_company": True} | ||
|
||
def tearDown(self): | ||
self.values.update(lastname=self.values["name"], firstname=False) | ||
return super(CompanyCase, self).tearDown() | ||
|
||
|
||
class UserCase(PersonCase, MailInstalled): | ||
"""Test ``res.users``.""" | ||
model = "res.users" | ||
context = {"default_login": "user@example.com"} | ||
|
||
def tearDown(self): | ||
# Cannot create users if ``mail`` is installed | ||
if self.mail_installed(): | ||
# Skip tests | ||
super(PersonCase, self).tearDown() | ||
else: | ||
# Run tests | ||
super(UserCase, self).tearDown() |