Ejemplo n.º 1
0
 def get_publish_properties(target):
   publish_properties = props_by_repo.get(target.provides.repo)
   if not publish_properties:
     publish_properties = Properties()
     with open(target.provides.repo.push_db) as props:
       publish_properties.load(props)
     props_by_repo[target.provides.repo] = publish_properties
   return publish_properties
Ejemplo n.º 2
0
 def get_publish_properties(target):
     publish_properties = props_by_repo.get(target.provides.repo)
     if not publish_properties:
         publish_properties = Properties()
         with open(target.provides.repo.push_db) as props:
             publish_properties.load(props)
         props_by_repo[target.provides.repo] = publish_properties
     return publish_properties
Ejemplo n.º 3
0
  def _find_checkstyle_suppressions(props, root_dir):
    props = Properties.load(props)

    # Magic - we know the root.dir property is defined elsewhere, so we seed it.
    props['root.dir'] = root_dir

    def resolve_props(value):
      def replace_symbols(matchobj):
        return props[matchobj.group(1)]

      symbol_parser = re.compile("\${([^}]+)\}")
      while symbol_parser.match(value):
        value = symbol_parser.sub(replace_symbols, value)
      return value

    files = resolve_props(props['checkstyle.suppression.files'])
    return files.split(',')
Ejemplo n.º 4
0
 def load(path):
   """Loads a pushdb maintained in a properties file at the given path."""
   with open(path, 'r') as props:
     properties = Properties.load(props)
     return PushDb(properties)
Ejemplo n.º 5
0
 def load(path):
     """Loads a pushdb maintained in a properties file at the given path."""
     with open(path, 'r') as props:
         properties = Properties.load(props)
         return PushDb(properties)
Ejemplo n.º 6
0
 def assertLoaded(self, contents, expected):
     self.assertEquals(expected, Properties.load(contents))
Ejemplo n.º 7
0
 def get_publish_properties(target):
   if target.provides.repo not in props_by_repo:
     with open(target.provides.repo.push_db) as props:
       props_by_repo[target.provides.repo] = Properties.load(props)
   return props_by_repo.get(target.provides.repo)
Ejemplo n.º 8
0
 def assertLoaded(self, contents, expected):
   self.assertEquals(expected, Properties.load(contents))