From f2c6295f25d709f39ebccf5f01ba6d1a1e72749f Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 27 Sep 2016 21:45:39 +0200 Subject: [PATCH] Check changed track-upstreams in gerrit/projects.yaml Check changes to the upstream URL for a repo that has option track-upstream. The check currently is just cloning of the repository. Since we currently have over 580 repos with track upstream, this check compares the previous version of the file with the current one and only tests for changed entries. Change-Id: Ic716c685512ebe660876388d663314bf3b008b66 --- tools/check_gerrit_projects_changed.py | 94 ++++++++++++++++++++++++++ tools/check_gerrit_projects_changed.sh | 16 +++++ tox.ini | 1 + 3 files changed, 111 insertions(+) create mode 100644 tools/check_gerrit_projects_changed.py create mode 100755 tools/check_gerrit_projects_changed.sh diff --git a/tools/check_gerrit_projects_changed.py b/tools/check_gerrit_projects_changed.py new file mode 100644 index 0000000000..8380766944 --- /dev/null +++ b/tools/check_gerrit_projects_changed.py @@ -0,0 +1,94 @@ +#!/usr/bin/env python +# +# Check that gerrit/projects.yaml changes are valid. +# +# 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 argparse +import contextlib +import git +import os +import shutil +import sys +import tempfile +import yaml + + +@contextlib.contextmanager +def tempdir(): + try: + reqroot = tempfile.mkdtemp() + yield reqroot + finally: + shutil.rmtree(reqroot, ignore_errors=True) + + +def check_repo(repo_path): + found_errors = 0 + + print("Checking git repo '%s':" % repo_path) + try: + with tempdir() as repopath: + repo = git.Repo.clone_from(repo_path, repopath) + print("Can be cloned") + except Exception as e: + print("Failure: %s" % e) + found_errors += 1 + return found_errors + +def main(): + found_errors = 0 + + parser = argparse.ArgumentParser() + parser.add_argument('-v', '--verbose', + dest='verbose', + default=False, + action='store_true') + parser.add_argument( + 'oldfile', + help='Path to old gerrit/projects.yaml', + ) + parser.add_argument( + 'newfile', + help='Path to new gerrit/projects.yaml', + ) + args = parser.parse_args() + + projects_old = yaml.load(open(args.oldfile, 'r')) + projects_new = yaml.load(open(args.newfile, 'r')) + + ps_old={} + for p in projects_old: + name = p.get('project') + ps_old[name] = p + + for p in projects_new: + name = p.get('project') + upstream = p.get('upstream') + if name in ps_old: + p_old = ps_old[name] + upstream_old = p_old.get('upstream') + else: + upstream_old = "" + if (upstream != upstream_old and + 'track-upstream' in p.get('options', [])): + print("%s has changed" % name) + found_errors += check_repo(upstream) + + if found_errors: + print("Found %d error(s)" % found_errors) + sys.exit(1) + + +if __name__ == '__main__': + main() diff --git a/tools/check_gerrit_projects_changed.sh b/tools/check_gerrit_projects_changed.sh new file mode 100755 index 0000000000..e1ca7c20f1 --- /dev/null +++ b/tools/check_gerrit_projects_changed.sh @@ -0,0 +1,16 @@ +#!/bin/bash -xe + + +GITHEAD=$(git rev-parse HEAD) + +# Check out previous version +git checkout HEAD~1 + +cp gerrit/projects.yaml gerrit/projects-old.yaml + +# Back to current version. Otherwise the +# check_gerrit_projects_changed.py invocation might be an old version. +git checkout $GITHEAD + +python tools/check_gerrit_projects_changed.py gerrit/projects-old.yaml \ + gerrit/projects.yaml diff --git a/tox.ini b/tox.ini index 57771d057c..e0f1415de1 100644 --- a/tox.ini +++ b/tox.ini @@ -18,6 +18,7 @@ commands = {toxinidir}/tools/check_valid_gerrit_projects.py gerrit/projects.yaml gerrit/acls {toxinidir}/tools/check_projects_yaml_alphabetized.sh gerrit/projects.yaml {toxinidir}/tools/check_valid_gerrit_config.sh gerrit/acls/ + {toxinidir}/tools/check_gerrit_projects_changed.sh [testenv:venv] commands = {posargs}