|
| 1 | +# Copyright 2020 initOS GmbH. |
| 2 | +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
| 3 | + |
| 4 | +from odoo.tests import common |
| 5 | + |
| 6 | + |
| 7 | +class TestIrConfigParameter(common.SavepointCase): |
| 8 | + @classmethod |
| 9 | + def setUpClass(cls): |
| 10 | + super(TestIrConfigParameter, cls).setUpClass() |
| 11 | + cls.env["ir.config_parameter"].set_param("web_m2x_options.limit", 10) |
| 12 | + cls.env["ir.config_parameter"].set_param("web_m2x_options.create_edit", "True") |
| 13 | + cls.env["ir.config_parameter"].set_param("web_m2x_options.create", "True") |
| 14 | + cls.env["ir.config_parameter"].set_param("web_m2x_options.search_more", "False") |
| 15 | + cls.env["ir.config_parameter"].set_param("web_m2x_options.m2o_dialog", "True") |
| 16 | + |
| 17 | + def test_web_m2x_options_key(self): |
| 18 | + web_m2x_options = self.env["ir.config_parameter"].get_web_m2x_options() |
| 19 | + options = {opt["key"]: opt["value"] for opt in web_m2x_options} |
| 20 | + self.assertIn("web_m2x_options.limit", options) |
| 21 | + self.assertNotIn("web_m2x_options.m2o_dialog_test", options) |
| 22 | + |
| 23 | + def test_web_m2x_options_value(self): |
| 24 | + web_m2x_options = self.env["ir.config_parameter"].get_web_m2x_options() |
| 25 | + options = {opt["key"]: opt["value"] for opt in web_m2x_options} |
| 26 | + self.assertEqual(options["web_m2x_options.limit"], "10") |
| 27 | + self.assertTrue(bool(options["web_m2x_options.create_edit"])) |
| 28 | + self.assertTrue(bool(options["web_m2x_options.create"])) |
| 29 | + self.assertEqual(options["web_m2x_options.search_more"], "False") |
| 30 | + self.assertTrue(bool(options["web_m2x_options.m2o_dialog"])) |
0 commit comments