forked from Vauxoo/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.
Allow creation of partners from *Create and Edit*.
This fixes OCA#78 and adds new tests for it.
- Loading branch information
1 parent
a6de37e
commit d098f0b
Showing
5 changed files
with
120 additions
and
12 deletions.
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
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,81 @@ | ||
# -*- 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.good_values = { | ||
"firstname": u"Núñez", | ||
"lastname": u"Fernán", | ||
} | ||
self.good_values["name"] = "%s %s" % (self.good_values["lastname"], | ||
self.good_values["firstname"]) | ||
if "default_is_company" in self.context: | ||
self.good_values["is_company"] = self.context["default_is_company"] | ||
self.values = self.good_values.copy() | ||
|
||
def tearDown(self): | ||
self.record = (self.env[self.model] | ||
.with_context(self.context) | ||
.create(self.values)) | ||
|
||
for key, value in self.good_values.iteritems(): | ||
self.assertEqual( | ||
self.record[key], | ||
value, | ||
"Checking key %s" % key) | ||
|
||
super(PersonCase, self).tearDown() | ||
|
||
def test_no_name(self): | ||
"""Name is calculated.""" | ||
del self.values["name"] | ||
|
||
def test_wrong_name_value(self): | ||
"""Wrong name value is ignored, name is calculated.""" | ||
self.values["name"] = u"BÄD" | ||
|
||
def test_wrong_name_context(self): | ||
"""Wrong name context is ignored, name is calculated.""" | ||
del self.values["name"] | ||
self.context["default_name"] = u"BÄD" | ||
|
||
def test_wrong_name_value_and_context(self): | ||
"""Wrong name value and context is ignored, name is calculated.""" | ||
self.values["name"] = u"BÄD1" | ||
self.context["default_name"] = u"BÄD2" | ||
|
||
|
||
class CompanyCase(PersonCase): | ||
"""Test ``res.partner`` when it is a company.""" | ||
context = {"default_is_company": True} | ||
|
||
def setUp(self): | ||
return super(CompanyCase, self).setUp() | ||
self.values.update(lastname=self.values["name"], firstname=False) | ||
|
||
|
||
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() |