moto/scripts/implementation_coverage.py

128 lines
4.3 KiB
Python
Raw Normal View History

2017-08-14 21:51:50 +00:00
#!/usr/bin/env python
import moto
2018-05-09 07:21:15 +00:00
import os
from botocore import xform_name
from botocore.session import Session
import boto3
script_dir = os.path.dirname(os.path.abspath(__file__))
2020-10-06 06:46:05 +00:00
alternative_service_names = {"lambda": "awslambda", "dynamodb": "dynamodb2"}
def get_moto_implementation(service_name):
2020-10-06 06:46:05 +00:00
service_name = (
service_name.replace("-", "") if "-" in service_name else service_name
)
alt_service_name = (
alternative_service_names[service_name]
if service_name in alternative_service_names
else service_name
)
if hasattr(moto, "mock_{}".format(alt_service_name)):
mock = getattr(moto, "mock_{}".format(alt_service_name))
elif hasattr(moto, "mock_{}".format(service_name)):
mock = getattr(moto, "mock_{}".format(service_name))
else:
mock = None
if mock is None:
return None
backends = list(mock().backends.values())
if backends:
return backends[0]
def calculate_implementation_coverage():
service_names = Session().get_available_services()
coverage = {}
for service_name in service_names:
moto_client = get_moto_implementation(service_name)
2020-10-06 06:46:05 +00:00
real_client = boto3.client(service_name, region_name="us-east-1")
implemented = []
not_implemented = []
2020-10-06 06:46:05 +00:00
operation_names = [
xform_name(op) for op in real_client.meta.service_model.operation_names
]
for op in operation_names:
if moto_client and op in dir(moto_client):
implemented.append(op)
else:
not_implemented.append(op)
coverage[service_name] = {
2020-10-06 06:46:05 +00:00
"implemented": implemented,
"not_implemented": not_implemented,
}
return coverage
2018-05-09 07:21:15 +00:00
def print_implementation_coverage(coverage):
2017-11-20 18:34:40 +00:00
for service_name in sorted(coverage):
2020-10-06 06:46:05 +00:00
implemented = coverage.get(service_name)["implemented"]
not_implemented = coverage.get(service_name)["not_implemented"]
operations = sorted(implemented + not_implemented)
if implemented and not_implemented:
2020-10-06 06:46:05 +00:00
percentage_implemented = int(
100.0 * len(implemented) / (len(implemented) + len(not_implemented))
)
elif implemented:
percentage_implemented = 100
else:
percentage_implemented = 0
print("")
print("## {}\n".format(service_name))
print("{}% implemented\n".format(percentage_implemented))
for op in operations:
if op in implemented:
print("- [X] {}".format(op))
else:
print("- [ ] {}".format(op))
2018-05-09 07:21:15 +00:00
def write_implementation_coverage_to_file(coverage):
implementation_coverage_file = "{}/../IMPLEMENTATION_COVERAGE.md".format(script_dir)
# rewrite the implementation coverage file with updated values
2018-05-09 07:21:15 +00:00
# try deleting the implementation coverage file
try:
os.remove(implementation_coverage_file)
2018-05-09 07:21:15 +00:00
except OSError:
pass
print("Writing to {}".format(implementation_coverage_file))
with open(implementation_coverage_file, "w+") as file:
for service_name in sorted(coverage):
2020-10-06 06:46:05 +00:00
implemented = coverage.get(service_name)["implemented"]
not_implemented = coverage.get(service_name)["not_implemented"]
operations = sorted(implemented + not_implemented)
if implemented and not_implemented:
2020-10-06 06:46:05 +00:00
percentage_implemented = int(
100.0 * len(implemented) / (len(implemented) + len(not_implemented))
)
elif implemented:
percentage_implemented = 100
else:
percentage_implemented = 0
2018-05-09 07:21:15 +00:00
file.write("\n")
file.write("## {}\n".format(service_name))
file.write("<details>\n")
2020-10-06 06:46:05 +00:00
file.write(
"<summary>{}% implemented</summary>\n\n".format(percentage_implemented)
)
2018-05-09 07:21:15 +00:00
for op in operations:
if op in implemented:
file.write("- [X] {}\n".format(op))
else:
file.write("- [ ] {}\n".format(op))
file.write("</details>\n")
2018-05-09 07:21:15 +00:00
2020-10-06 06:46:05 +00:00
if __name__ == "__main__":
2018-05-09 07:21:15 +00:00
cov = calculate_implementation_coverage()
write_implementation_coverage_to_file(cov)
print_implementation_coverage(cov)