Add check job for upstream URLs on imported repos
Add a check job to require upstream URLs to use a scheme that we are confident won't cause connection errors during the import. Add a tox configuration for this new job, as well as the existing alphabetical check script, to make it easier for developers to run those tests locally just by running "tox". Change-Id: I894ac0f8afb234404bb6e80e64b90aa25e052f10
This commit is contained in:
parent
2ebfb66e72
commit
d854287ae9
@ -87,7 +87,26 @@
|
|||||||
builders:
|
builders:
|
||||||
- revoke-sudo
|
- revoke-sudo
|
||||||
- gerrit-git-prep
|
- gerrit-git-prep
|
||||||
- shell: "tools/check_projects_yaml_alphabetized.sh"
|
- tox:
|
||||||
|
envlist: projects_alphabetized
|
||||||
|
github-org: openstack-infra
|
||||||
|
project: config
|
||||||
|
|
||||||
|
publishers:
|
||||||
|
- console-log
|
||||||
|
|
||||||
|
|
||||||
|
- job:
|
||||||
|
name: check-projects-yaml-upstream
|
||||||
|
node: bare-precise
|
||||||
|
|
||||||
|
builders:
|
||||||
|
- revoke-sudo
|
||||||
|
- gerrit-git-prep
|
||||||
|
- tox:
|
||||||
|
envlist: upstream
|
||||||
|
github-org: openstack-infra
|
||||||
|
project: config
|
||||||
|
|
||||||
publishers:
|
publishers:
|
||||||
- console-log
|
- console-log
|
||||||
|
@ -2660,6 +2660,7 @@ projects:
|
|||||||
- gate-config-irc-access
|
- gate-config-irc-access
|
||||||
- gate-ci-docs
|
- gate-ci-docs
|
||||||
- check-projects-yaml-alphabetized
|
- check-projects-yaml-alphabetized
|
||||||
|
- check-projects-yaml-upstream
|
||||||
gate:
|
gate:
|
||||||
- gate-config-layout
|
- gate-config-layout
|
||||||
- gate-config-pep8
|
- gate-config-pep8
|
||||||
@ -2667,6 +2668,7 @@ projects:
|
|||||||
- gate-config-puppet-syntax
|
- gate-config-puppet-syntax
|
||||||
- gate-config-irc-access
|
- gate-config-irc-access
|
||||||
- check-projects-yaml-alphabetized
|
- check-projects-yaml-alphabetized
|
||||||
|
- check-projects-yaml-upstream
|
||||||
post:
|
post:
|
||||||
- ci-docs
|
- ci-docs
|
||||||
|
|
||||||
|
45
tools/check_upstream_url_scheme.py
Executable file
45
tools/check_upstream_url_scheme.py
Executable file
@ -0,0 +1,45 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
"""
|
||||||
|
Allow git:// and https:// URLs for importing upstream repositories,
|
||||||
|
but not git@
|
||||||
|
"""
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
|
||||||
|
import yaml
|
||||||
|
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument('-v', '--verbose',
|
||||||
|
dest='verbose',
|
||||||
|
default=False,
|
||||||
|
action='store_true',
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'infile',
|
||||||
|
help='path to review.projects.yaml',
|
||||||
|
)
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
projects = yaml.load(open(args.infile, 'r'))
|
||||||
|
|
||||||
|
VALID_SCHEMES = ['https://', 'http://', 'git://']
|
||||||
|
|
||||||
|
for p in projects:
|
||||||
|
name = p.get('project')
|
||||||
|
if not name:
|
||||||
|
# not a project
|
||||||
|
continue
|
||||||
|
upstream = p.get('upstream')
|
||||||
|
if args.verbose:
|
||||||
|
print 'Checking %s: %r' % (name, upstream)
|
||||||
|
if not upstream:
|
||||||
|
continue
|
||||||
|
for prefix in VALID_SCHEMES:
|
||||||
|
if upstream.startswith(prefix):
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
raise ValueError(
|
||||||
|
'Upstream URLs should use a scheme in %s, found %s' %
|
||||||
|
(VALID_SCHEMES, p['project'])
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user