mirror of
https://github.com/bkryza/clang-uml.git
synced 2025-05-25 08:18:48 +08:00
79 lines
3.4 KiB
Python
Executable File
79 lines
3.4 KiB
Python
Executable File
#!/usr/bin/python3
|
|
|
|
##
|
|
## util/generate_test_cases_docs.py
|
|
##
|
|
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
|
##
|
|
## 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 os
|
|
import yaml
|
|
from shutil import copyfile
|
|
|
|
|
|
with open(r'tests/test_cases.yaml') as f:
|
|
test_groups = yaml.full_load(f)['test_cases']
|
|
|
|
# Generate test_cases.md index
|
|
with open(r'docs/test_cases.md', 'w') as tc_index:
|
|
tc_index.write('# Test cases index\n')
|
|
for test_group, test_cases in test_groups.items():
|
|
tc_index.write(f'## {test_group}\n')
|
|
for test_case in test_cases:
|
|
tc_index.write(f' * [{test_case["name"]}](./test_cases/{test_case["name"]}.md) - {test_case["title"]}\n')
|
|
|
|
# Generate invididual documentation docs
|
|
for test_group, test_cases in test_groups.items():
|
|
for test_case in test_cases:
|
|
name = test_case['name']
|
|
with open(f'docs/test_cases/{name}.md', 'w') as tc:
|
|
tc.write(f'# {name} - {test_case["title"]}\n')
|
|
|
|
# Write out test description
|
|
if test_case['description']:
|
|
tc.write(f'{test_case["description"]}\n')
|
|
|
|
# Write test config file
|
|
config = open(f'tests/{name}/.clang-uml', 'r').read()
|
|
tc.write("## Config\n")
|
|
tc.write("```yaml\n")
|
|
tc.write(config)
|
|
tc.write("\n```\n")
|
|
tc.write("## Source code\n")
|
|
for source_file in os.listdir(f'tests/{name}/'):
|
|
if source_file.endswith(".h") or source_file.endswith(".cc") or source_file.endswith(".c"):
|
|
if source_file == "test_case.h":
|
|
continue
|
|
tc.write(f'File {source_file}\n')
|
|
tc.write("```cpp\n")
|
|
tc.write(open(f'tests/{name}/{source_file}', 'r').read())
|
|
tc.write("\n```\n")
|
|
|
|
# Copy and link the diagram image
|
|
config_dict = yaml.full_load(config)
|
|
tc.write("## Generated UML diagrams\n")
|
|
for diagram_name, _ in config_dict['diagrams'].items():
|
|
copyfile(f'debug/tests/puml/{diagram_name}.svg',
|
|
f'docs/test_cases/{diagram_name}.svg')
|
|
tc.write(f'\n')
|
|
|
|
tc.write("## Generated JSON models\n")
|
|
for diagram_name, _ in config_dict['diagrams'].items():
|
|
if os.path.exists(f'debug/tests/puml/{diagram_name}.json'):
|
|
with open(f'debug/tests/puml/{diagram_name}.json') as f:
|
|
contents = f.read()
|
|
tc.write("```json\n")
|
|
tc.write(contents)
|
|
tc.write("\n```\n") |