-
-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] server_environment: add possibility of auto creating records
- Loading branch information
1 parent
07d321d
commit f320932
Showing
10 changed files
with
164 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
- Thomas Binfeld \<<[email protected]>\> | ||
- Stéphane Bidoul \<<[email protected]>\> | ||
- Simone Orsi \<<[email protected]>\> | ||
- Vincent Hatakeyama \<<[email protected]>\> |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from . import test_server_environment_autocreate | ||
from . import test_server_environment | ||
from . import test_environment_variable |
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,24 @@ | ||
# Copyright 2024 XCG Consulting | ||
# @author Vincent Hatakeyama | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
from odoo import fields, models | ||
|
||
|
||
class ExternalService(models.Model): | ||
_name = "external_service" | ||
_description = "External Service" | ||
_inherit = "server.env.mixin" | ||
|
||
name = fields.Char(required=True) | ||
description = fields.Char(required=True) | ||
host = fields.Char() | ||
user = fields.Char() | ||
password = fields.Char() | ||
|
||
@property | ||
def _server_env_fields(self): | ||
return { | ||
"host": {}, | ||
"user": {}, | ||
"password": {}, | ||
} |
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
69 changes: 69 additions & 0 deletions
69
server_environment/tests/test_server_environment_autocreate.py
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,69 @@ | ||
# Copyright 2018 Camptocamp (https://www.camptocamp.com). | ||
# Copyright 2024 XCG Consulting (https://xcg-consulting.fr). | ||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html) | ||
from unittest.mock import patch | ||
|
||
from odoo_test_helper import FakeModelLoader | ||
|
||
from odoo.tests import tagged | ||
from odoo.tools.config import config as odoo_config | ||
|
||
from .. import server_env | ||
from ..models import server_env_mixin | ||
from . import common | ||
|
||
|
||
# Test need to be run post install otherwise the _register_hook is not called yet | ||
@tagged("post_install", "-at_install") | ||
class TestEnv(common.ServerEnvironmentCase): | ||
@classmethod | ||
def setUpClass(cls): | ||
super().setUpClass() | ||
# Load fake models ->/ | ||
cls.loader = FakeModelLoader(cls.env, cls.__module__) | ||
cls.loader.backup_registry() | ||
from .models import ExternalService | ||
|
||
cls.loader.update_registry((ExternalService,)) | ||
cls.env["external_service"].create([{"name": "ftp2", "description": "another"}]) | ||
|
||
@classmethod | ||
def tearDownClass(cls): | ||
cls.loader.restore_registry() | ||
super().tearDownClass() | ||
|
||
@patch.dict(odoo_config.options, {"running_env": "autocreate"}) | ||
def test_autocreate(self): | ||
original_serv_config = server_env_mixin.serv_config | ||
try: | ||
with self.set_config_dir("testfiles"): | ||
parser = server_env._load_config() | ||
server_env_mixin.serv_config = parser | ||
# Needed to force _register_hook with auto creation | ||
self.loader.update_registry(tuple()) | ||
|
||
# auto created record | ||
record = self.env.ref("__server_environment__.external_service.ftp") | ||
self.assertEqual(record.name, "ftp") | ||
self.assertEqual(record.description, "ftp server") | ||
self.assertEqual(record.host, "sftp.example.com") | ||
self.assertEqual(record.user, "foo") | ||
self.assertEqual(record.password, "bar") | ||
|
||
# create record in setupClass | ||
# Test it has no xmlid | ||
record = self.env.ref( | ||
"__server_environment__.external_service.ftp2", False | ||
) | ||
self.assertFalse(record) | ||
# look for it | ||
record = self.env["external_service"].search([("name", "=", "ftp2")]) | ||
self.assertEqual(len(record), 1) | ||
self.assertEqual(record.name, "ftp2") | ||
# different from __autocreate dict as it is created in setUpClass | ||
self.assertEqual(record.description, "another") | ||
self.assertEqual(record.host, "sftp2.example.com") | ||
self.assertEqual(record.user, "monty") | ||
self.assertEqual(record.password, "python") | ||
finally: | ||
server_env_mixin.serv_config = original_serv_config |
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,11 @@ | ||
[external_service.ftp] | ||
__autocreate={"description": "ftp server"} | ||
; host=sftp.example.com | ||
; user=foo | ||
; password=bar | ||
|
||
[external_service.ftp2] | ||
__autocreate={"description": "ftp2"} | ||
host=sftp2.example.com | ||
user=monty | ||
password=python |
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 @@ | ||
odoo-test-helper |