2019-03-06 17:07:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright 2019 The Kubernetes Authors.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import fnmatch
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
import yaml
|
|
|
|
|
|
|
|
|
2019-03-04 05:27:03 +00:00
|
|
|
def get_godeps_dependencies(rootdir, components):
|
2019-03-06 17:07:08 +00:00
|
|
|
all_dependencies = {}
|
2019-03-04 05:27:03 +00:00
|
|
|
for component in components:
|
|
|
|
with open(os.path.join(rootdir, component, "go.mod")) as f:
|
|
|
|
print(component + " dependencies")
|
|
|
|
all_dependencies[component] = []
|
|
|
|
lines = list(set(f))
|
|
|
|
lines.sort()
|
|
|
|
for line in lines:
|
|
|
|
for dep in components:
|
|
|
|
if dep == component:
|
|
|
|
continue
|
|
|
|
if ("k8s.io/" + dep + " v0.0.0") not in line:
|
|
|
|
continue
|
|
|
|
print("\t"+dep)
|
|
|
|
if dep not in all_dependencies[component]:
|
|
|
|
all_dependencies[component].append(dep)
|
2019-03-06 17:07:08 +00:00
|
|
|
return all_dependencies
|
|
|
|
|
|
|
|
|
|
|
|
def get_rules_dependencies(rules_file):
|
|
|
|
with open(rules_file) as f:
|
|
|
|
data = yaml.load(f)
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
rootdir = os.path.dirname(__file__) + "/../"
|
|
|
|
rootdir = os.path.abspath(rootdir)
|
|
|
|
|
2019-03-04 05:27:03 +00:00
|
|
|
components = []
|
|
|
|
for component in os.listdir(rootdir + '/staging/src/k8s.io/'):
|
|
|
|
components.append(component)
|
|
|
|
components.sort()
|
2019-03-06 17:07:08 +00:00
|
|
|
|
2019-03-04 05:27:03 +00:00
|
|
|
godep_dependencies = get_godeps_dependencies(rootdir + '/staging/src/k8s.io/', components)
|
2019-03-06 17:07:08 +00:00
|
|
|
rules_dependencies = get_rules_dependencies(rootdir + "/staging/publishing/rules.yaml")
|
|
|
|
|
|
|
|
processed_repos = []
|
|
|
|
for rule in rules_dependencies["rules"]:
|
|
|
|
branch = rule["branches"][0]
|
|
|
|
if branch["name"] != "master":
|
|
|
|
raise Exception("cannot find master branch for destination %s" % rule["destination"])
|
|
|
|
if branch["source"]["branch"] != "master":
|
|
|
|
raise Exception("cannot find master source branch for destination %s" % rule["destination"])
|
|
|
|
|
|
|
|
print("processing : %s" % rule["destination"])
|
|
|
|
if rule["destination"] not in godep_dependencies:
|
|
|
|
raise Exception("missing Godeps.json for %s" % rule["destination"])
|
|
|
|
processed_repos.append(rule["destination"])
|
|
|
|
for dep in set(godep_dependencies[rule["destination"]]):
|
|
|
|
found = False
|
|
|
|
if "dependencies" in branch:
|
|
|
|
for dep2 in branch["dependencies"]:
|
|
|
|
if dep2["branch"] != "master":
|
|
|
|
raise Exception("Looking for master branch and found : %s for destination", dep2,
|
|
|
|
rule["destination"])
|
|
|
|
if dep2["repository"] == dep:
|
|
|
|
found = True
|
|
|
|
else:
|
|
|
|
raise Exception(
|
|
|
|
"destination %s does not have any dependencies (looking for %s)" % (rule["destination"], dep))
|
|
|
|
if not found:
|
|
|
|
raise Exception("destination %s does not have dependency %s" % (rule["destination"], dep))
|
|
|
|
else:
|
|
|
|
print(" found dependency %s" % dep)
|
|
|
|
items = set(godep_dependencies.keys()) - set(processed_repos)
|
|
|
|
if len(items) > 0:
|
|
|
|
raise Exception("missing rules for %s" % ','.join(str(s) for s in items))
|
|
|
|
print("Done.")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.exit(main())
|