summaryrefslogtreecommitdiff
path: root/addons/project/tests/test_project_config.py
blob: e84c648aa2207e9f18ac7f16ec41c37e06f68057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-

import logging

from .test_project_base import TestProjectCommon

_logger = logging.getLogger(__name__)


class TestProjectConfig(TestProjectCommon):
    """Test module configuration and its effects on projects."""

    @classmethod
    def setUpClass(cls):
        super(TestProjectConfig, cls).setUpClass()
        cls.Project = cls.env["project.project"]
        cls.Settings = cls.env["res.config.settings"]
        cls.features = (
            # Pairs of associated (config_flag, project_flag)
            ("group_subtask_project", "allow_subtasks"),
            ("group_project_recurring_tasks", "allow_recurring_tasks"),
            ("group_project_rating", "rating_active"),
            )

        # Start with a known value on feature flags to ensure validity of tests
        cls._set_feature_status(is_enabled=False)

    @classmethod
    def _set_feature_status(cls, is_enabled):
        """Set enabled/disabled status of all optional features in the
        project app config to is_enabled (boolean).
        """
        features_config = cls.Settings.create(
            {feature[0]: is_enabled for feature in cls.features})
        features_config.execute()

    def test_existing_projects_enable_features(self):
        """Check that *existing* projects have features enabled when
        the user enables them in the module configuration.
        """
        self._set_feature_status(is_enabled=True)
        for config_flag, project_flag in self.features:
            self.assertTrue(
                self.project_pigs[project_flag],
                "Existing project failed to adopt activation of "
                f"{config_flag}/{project_flag} feature")

    def test_new_projects_enable_features(self):
        """Check that after the user enables features in the module
        configuration, *newly created* projects have those features
        enabled as well.
        """
        self._set_feature_status(is_enabled=True)
        project_cows = self.Project.create({
            "name": "Cows",
            "partner_id": self.partner_1.id})
        for config_flag, project_flag in self.features:
            self.assertTrue(
                project_cows[project_flag],
                f"Newly created project failed to adopt activation of "
                f"{config_flag}/{project_flag} feature")