Пример #1
0
 def __load_one_combo(self, dconf, econf):
     conf = EditableConfig.empty_conf()
     conf.update(self.__default_ref_config)
     conf.update(dconf)
     conf.update(econf)
     self.__update_config(conf)
     return conf
Пример #2
0
 def __init__(self, *, base_config: Configuration, auto_name_gen=True, _conf_stage=ConfigStage.CODED):
     from arjuna.configure.options import EditableConfig
     vars(self)['_test_session'] = base_config.test_session
     vars(self)['_config_container'] = EditableConfig.empty_conf()
     vars(self)['_base_config'] = base_config
     vars(self)['_auto_gen_name'] = auto_name_gen
     vars(self)['_conf_stage'] = _conf_stage
Пример #3
0
 def register_new_config(self,
                         arjuna_options,
                         user_options,
                         parent_config=None):
     # Registering a config is post project conf registration. If no project conf, set it to true.
     self.__project_config_loaded = True
     reference = parent_config and parent_config._wrapped_config or self.__default_ref_config._wrapped_config
     conf = EditableConfig.from_maps(ref_config=reference,
                                     arjuna_options=arjuna_options,
                                     user_options=user_options)
     self.__update_config(conf)
     return conf
Пример #4
0
 def load_options_from_file(self, fpath):
     if file_utils.is_absolute_path(fpath):
         if not file_utils.is_file(fpath):
             if file_utils.is_dir(fpath):
                 raise Exception("Not a file: {}".format(fpath))
             else:
                 raise Exception("File does not exist: {}".format(fpath))
     else:
         from arjuna import Arjuna, ArjunaOption
         conf_dir = self.__default_ref_config.arjuna_options.value(
             ArjunaOption.CONF_DIR)
         fpath = os.path.abspath(os.path.join(conf_dir, fpath))
         if not file_utils.is_file(fpath):
             if file_utils.is_dir(fpath):
                 raise Exception("Not a file: {}".format(fpath))
             else:
                 raise Exception("File does not exist: {}".format(fpath))
     return EditableConfig.from_file(
         file_path=fpath,
         creation_context=f"Ad-hoc configuration file at {fpath}")
Пример #5
0
 def __load_cli_dicts(self):
     self.__cli_config = EditableConfig.from_maps(
         ref_config=None,
         arjuna_options=self.__cli_config.arjuna_options,
         user_options=self.__cli_config.user_options,
         conf_stage=ConfigStage.CLI)
Пример #6
0
 def __load_env_confs(self):
     self.__env_confs = EditableConfig.env_confs(
         arjuna_conf=self.__default_ref_config)
     if "env" not in self.__env_confs:
         self.__env_confs["env"] = self._EMPTY_CONF
Пример #7
0
 def __load_data_confs(self):
     self.__data_confs = EditableConfig.data_confs(
         arjuna_conf=self.__default_ref_config)
     if "data" not in self.__data_confs:
         self.__data_confs["data"] = self._EMPTY_CONF
Пример #8
0
 def __load_project_conf(self):
     self.__default_ref_config = EditableConfig.project_conf(
         arjuna_conf=self.__default_ref_config)
Пример #9
0
 def __load_central_conf(self):
     self.__default_ref_config = EditableConfig.arjuna_conf(
         project_root_dir=self.__root_dir, run_id=self.__run_id)
Пример #10
0
class TestConfigurator:
    _EMPTY_CONF = EditableConfig.empty_conf()

    def __init__(self, root_dir, cli_config, run_id):
        self.__root_dir = root_dir
        self.__cli_config = cli_config
        self.__run_id = run_id
        self.__default_ref_config = None
        self.__data_confs = None
        self.__env_confs = None
        self.__dataconf_enconf_confs = dict()
        self.__project_config_loaded = False

        self.__load()

    def __load(self):
        self.__load_central_conf()
        self.__load_project_conf()
        self.__load_cli_dicts()
        self.__load_data_confs()
        self.__load_env_confs()

        self.__default_ref_config.update(self.__data_confs["data"])
        self.__default_ref_config.update(self.__env_confs["env"])
        self.__update_config(self.__default_ref_config)
        # self.__process_data_configs()

        self.__load_combinations()

    def __load_central_conf(self):
        self.__default_ref_config = EditableConfig.arjuna_conf(
            project_root_dir=self.__root_dir, run_id=self.__run_id)

    def __load_project_conf(self):
        self.__default_ref_config = EditableConfig.project_conf(
            arjuna_conf=self.__default_ref_config)

    def __load_data_confs(self):
        self.__data_confs = EditableConfig.data_confs(
            arjuna_conf=self.__default_ref_config)
        if "data" not in self.__data_confs:
            self.__data_confs["data"] = self._EMPTY_CONF

    def __load_env_confs(self):
        self.__env_confs = EditableConfig.env_confs(
            arjuna_conf=self.__default_ref_config)
        if "env" not in self.__env_confs:
            self.__env_confs["env"] = self._EMPTY_CONF

    def load_options_from_file(self, fpath, *, conf_stage):
        if file_utils.is_absolute_path(fpath):
            if not file_utils.is_file(fpath):
                if file_utils.is_dir(fpath):
                    raise Exception("Not a file: {}".format(fpath))
                else:
                    raise Exception("File does not exist: {}".format(fpath))
        else:
            from arjuna import Arjuna, ArjunaOption
            conf_dir = self.__default_ref_config.arjuna_options.value(
                ArjunaOption.CONF_DIR)
            fpath = os.path.abspath(os.path.join(conf_dir, fpath))
            if not file_utils.is_file(fpath):
                if file_utils.is_dir(fpath):
                    raise Exception("Not a file: {}".format(fpath))
                else:
                    raise Exception("File does not exist: {}".format(fpath))
        return EditableConfig.from_file(
            file_path=fpath,
            creation_context=f"Ad-hoc configuration file at {fpath}",
            conf_stage=conf_stage)

    def __load_cli_dicts(self):
        self.__cli_config = EditableConfig.from_maps(
            ref_config=None,
            arjuna_options=self.__cli_config.arjuna_options,
            user_options=self.__cli_config.user_options,
            conf_stage=ConfigStage.CLI)

    def __update_config_for_env(self, config):
        if self.__chosen_env_conf:
            config.update(self.__chosen_env_conf)

    def __update_config_for_data_conf(self, config):
        if self.__data_conf:
            config.update(self.__data_conf)

    def __update_config_for_cli(self, config):
        config.update(self.__cli_config)

    def __update_config(self, config):
        self.__update_config_for_cli(config)
        config.process_arjuna_options()

    def __update_ref_config(self):
        self.__update_config(self.__default_ref_config,
                             update_from_chosen_env=True)

    def __load_one_combo(self, dconf, econf):
        conf = EditableConfig.empty_conf()
        conf.update(self.__default_ref_config)
        conf.update(dconf)
        conf.update(econf)
        self.__update_config(conf)
        return conf

    def __load_combinations(self):
        for dname, dconf in self.__data_confs.items():
            conf = self.__load_one_combo(dconf, self._EMPTY_CONF)
            self.__dataconf_enconf_confs[dname] = conf

        for ename, econf in self.__env_confs.items():
            conf = self.__load_one_combo(self._EMPTY_CONF, econf)
            self.__dataconf_enconf_confs[ename] = conf

        for dname, dconf in self.__data_confs.items():
            for ename, econf in self.__env_confs.items():
                cname = "{}_{}".format(dname, ename)
                conf = self.__load_one_combo(dconf, econf)
                self.__dataconf_enconf_confs[cname] = conf

    @property
    def ref_config(self):
        return self.__default_ref_config

    @property
    def file_confs(self):
        return self.__dataconf_enconf_confs

    def register_new_config(self,
                            arjuna_options,
                            user_options,
                            *,
                            conf_stage,
                            parent_config=None):
        # Registering a config is post project conf registration. If no project conf, set it to true.
        self.__project_config_loaded = True
        reference = parent_config and parent_config._wrapped_config or self.__default_ref_config._wrapped_config
        conf = EditableConfig.from_maps(ref_config=reference,
                                        conf_stage=conf_stage,
                                        arjuna_options=arjuna_options,
                                        user_options=user_options)
        self.__update_config(conf)
        return conf
Пример #11
0
 def __add(name, conf):
     if name not in self.__dataconf_enconf_confs:
         self.__dataconf_enconf_confs[name] = EditableConfig.empty_conf(
         )
     self.__dataconf_enconf_confs[name].update(conf)