Source code for robot.variables.finders

#  Copyright 2008-2015 Nokia Networks
#  Copyright 2016-     Robot Framework Foundation
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

import re

try:
    from java.lang.System import (getProperties as get_java_properties,
                                  getProperty)
    get_java_property = lambda name: getProperty(name) if name else None
except ImportError:
    get_java_property = lambda name: None
    get_java_properties = lambda: {}

from robot.errors import DataError, VariableError
from robot.utils import (get_env_var, get_env_vars, get_error_message,
                         is_dict_like, is_list_like, normalize, DotDict,
                         NormalizedDict)

from .evaluation import evaluate_expression
from .notfound import variable_not_found
from .search import search_variable, VariableMatch


[docs]class VariableFinder(object): def __init__(self, variable_store): self._finders = (StoredFinder(variable_store), NumberFinder(), EmptyFinder(), InlinePythonFinder(variable_store), EnvironmentFinder(), ExtendedFinder(self)) self._store = variable_store
[docs] def find(self, variable): match = self._get_match(variable) identifier = match.identifier name = match.name for finder in self._finders: if identifier in finder.identifiers: try: value = finder.find(name) except (KeyError, ValueError): continue try: return self._validate_value(value, identifier, name) except VariableError: raise except: raise VariableError("Resolving variable '%s' failed: %s" % (name, get_error_message())) variable_not_found(name, self._store.data)
def _get_match(self, variable): if isinstance(variable, VariableMatch): return variable match = search_variable(variable) if match.start != 0 or match.end != len(variable) or match.items: raise DataError("Invalid variable name '%s'." % variable) return match def _validate_value(self, value, identifier, name): if identifier == '@': if not is_list_like(value): raise VariableError("Value of variable '%s' is not list or " "list-like." % name) return list(value) if identifier == '&': if not is_dict_like(value): raise VariableError("Value of variable '%s' is not dictionary " "or dictionary-like." % name) return DotDict(value) return value
[docs]class StoredFinder(object): identifiers = '$@&' def __init__(self, store): self._store = store
[docs] def find(self, name): return self._store[name[2:-1]]
[docs]class NumberFinder(object): identifiers = '$'
[docs] def find(self, name): number = normalize(name)[2:-1] try: return self._get_int(number) except ValueError: return float(number)
def _get_int(self, number): bases = {'0b': 2, '0o': 8, '0x': 16} if number.startswith(tuple(bases)): return int(number[2:], bases[number[:2]]) return int(number)
[docs]class EmptyFinder(object): identifiers = '$@&' find = NormalizedDict({'${EMPTY}': u'', '@{EMPTY}': (), '&{EMPTY}': {}}, ignore='_').__getitem__
[docs]class InlinePythonFinder(object): identifiers = '$@&' def __init__(self, variables): self._variables = variables
[docs] def find(self, name): base = name[2:-1] if not base or base[0] != '{' or base[-1] != '}': raise ValueError try: return evaluate_expression(base[1:-1].strip(), self._variables) except DataError as err: raise VariableError("Resolving variable '%s' failed: %s" % (name, err))
[docs]class ExtendedFinder(object): identifiers = '$@&' _match_extended = re.compile(r''' (.+?) # base name (group 1) ([^\s\w].+) # extended part (group 2) ''', re.UNICODE|re.VERBOSE).match def __init__(self, finder): self._find_variable = finder.find
[docs] def find(self, name): match = self._match_extended(name[2:-1]) if match is None: raise ValueError base_name, extended = match.groups() try: variable = self._find_variable('${%s}' % base_name) except DataError as err: raise VariableError("Resolving variable '%s' failed: %s" % (name, err.message)) try: return eval('_BASE_VAR_' + extended, {'_BASE_VAR_': variable}) except: raise VariableError("Resolving variable '%s' failed: %s" % (name, get_error_message()))
[docs]class EnvironmentFinder(object): identifiers = '%'
[docs] def find(self, name): var_name, has_default, default_value = name[2:-1].partition('=') for getter in get_env_var, get_java_property: value = getter(var_name) if value is not None: return value if has_default: # in case if '' is desired default value return default_value variable_not_found(name, self._get_candidates(), "Environment variable '%s' not found." % name)
def _get_candidates(self): candidates = dict(get_java_properties()) candidates.update(get_env_vars()) return candidates