Odoo Test Helper
Project description
odoo-test-helper is toolbox for writing odoo test
Loading Fake models
Sometime you build an abstract module that can be use by many modules. In such case, if you want to test it with real records you need to register real models.
One solution is to create a module_test module with a little implementation that use your abstract model.
One other solution is define test only models and load them in tests. This lib makes this possible and easy.
Example
There is an example of test here:
This example load the class ResPartner from the file:
Real implementation case can be found in the following module
How to import
Be carefull importing fake class must be done in the right way. Importing a file will automatically add all the class in the “module_to_models” variable. The import must be done after the backup !
Wrong way
from odoo.tests import SavepointCase
from odoo_test_helper import FakeModelLoader
# The fake class is imported here !! It's wrong
# And be carefull even if you only import ResPartner
# all class in the file models will be proceded by odoo
# so no **direct import** of a file that contain fake model
from .models import ResPartner
class TestMixin(SavepointCase):
@classmethod
def setUpClass(cls):
super(TestMixin, cls).setUpClass()
cls.loader = FakeModelLoader(cls.env, cls.__module__)
cls.loader.backup_registry()
cls.loader.update_registry((ResPartner,))
@classmethod
def tearDownClass(cls):
cls.loader.restore_registry()
super(TestMixin, cls).tearDownClass()
def test_create(self):
partner = self.env["res.partner"].create({"name": "BAR", "test_char": "youhou"})
self.assertEqual(partner.name, "FOO-BAR")
self.assertEqual(partner.test_char, "youhou")
Right Way
from odoo.tests import SavepointCase
from odoo_test_helper import FakeModelLoader
class TestMixin(SavepointCase):
@classmethod
def setUpClass(cls):
super(TestMixin, cls).setUpClass()
cls.loader = FakeModelLoader(cls.env, cls.__module__)
cls.loader.backup_registry()
# The fake class is imported here !! After the backup_registry
from .models import ResPartner
cls.loader.update_registry((ResPartner,))
@classmethod
def tearDownClass(cls):
cls.loader.restore_registry()
super(TestMixin, cls).tearDownClass()
def test_create(self):
partner = self.env["res.partner"].create({"name": "BAR", "test_char": "youhou"})
self.assertEqual(partner.name, "FOO-BAR")
self.assertEqual(partner.test_char, "youhou")
Contributor
Sébastien BEAU <sebastien.beau@akretion.com>
Laurent Mignon <laurent.mignon@acsone.eu>
Simone Orsi <simone.orsi@camptocamp.com>
History
This module is inspired of the following mixin code that can be found in OCA and shopinvader repository
Mixin in Shopinvader: https://github.com/shopinvader/odoo-shopinvader/blob/b81b921ea52c911e5b33afac88adb8f9a1c02626/base_url/tests/models_mixin.py
Intial Authors are
Laurent Mignon <laurent.mignon@acsone.eu>
Simone Orsi <simone.orsi@camptocamp.com>
Refactor/extraction have been done by
Sébastien BEAU <sebastien.beau@akretion.com>
This refactor try to load all class correctly like Odoo does with the exact same syntax
Note this refactor/extraction have been done to fix the test of the following issue
Changes
2.0.0
Move to OCA
Re-license to LGPL
1.1.0
Refactoring (misc imp/fix)
1.0.0
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file odoo-test-helper-2.0.0.tar.gz
.
File metadata
- Download URL: odoo-test-helper-2.0.0.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9fb43090e47896dfe5ba779462d30d9cb608eb8992dc5b0d2f8a23967c97de2 |
|
MD5 | 1f901b2a27e07298cc34a03eb7d65869 |
|
BLAKE2b-256 | 204c8027d96826163560b0a9004dbcfb82ad72f86821de7b46dd196765629636 |
Provenance
File details
Details for the file odoo_test_helper-2.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: odoo_test_helper-2.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2ccfb9cb7603794db7e19909c2be252fe50f8b145868b7b5429d6fccbe8db0d |
|
MD5 | 541f1f8adf46ae3a00acffde35133099 |
|
BLAKE2b-256 | eddc8ac609cf5d20b6d3d0505d30ed3adf218f2b437babdeaa9d183a9a81318c |